Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
FirePHP and Zend Framework 1.6
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  12 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Christoph Dorn  
View profile  
 More options Sep 3 2008, 12:18 am
From: Christoph Dorn <christ...@christophdorn.com>
Date: Tue, 2 Sep 2008 21:18:08 -0700 (PDT)
Local: Wed, Sep 3 2008 12:18 am
Subject: FirePHP and Zend Framework 1.6
Zend Framework 1.6 was released today and with it full native FirePHP
support.

Read more here: http://www.christophdorn.com/Blog/2008/09/02/firephp-and-zend-framewo...

This is a great milestone for the FirePHP project.

If you are involved with a framework that could benefit from FirePHP
and we don't already have a library/plugin for it (http://
www.firephp.org/Wiki/Libraries/BuildYourOwn) why not take the
initiative to write one.

If you can assist in making a tighter integration with a framework
beyond what a plugin can do by contributing code to the core of a
framework let me know. I am compiling a shortlist of frameworks that
will guide the next version of FirePHP which will bring many new
exciting features many of which have never been seen before.
Zend Framework will be one. Maybe symfony the second. It would be
great to have some people available to bounce ideas off and make
recommendations.

Thanks for your continued support and interest.

Christoph


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
tangfucius  
View profile  
 More options Sep 3 2008, 3:47 pm
From: tangfucius <tangfuc...@gmail.com>
Date: Wed, 3 Sep 2008 12:47:27 -0700 (PDT)
Local: Wed, Sep 3 2008 3:47 pm
Subject: Re: FirePHP and Zend Framework 1.6
Hi, I was very excited and interested when first heard about this.  I
tried following the instructions and use the components.
Unfortunately it does not work.  I stepped through the zend code, and
it's calling JsonStream recordMessage just fine.  the messages are
recorded but not sent in the headers.

On Sep 2, 11:18 pm, Christoph Dorn <christ...@christophdorn.com>
wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christoph Dorn  
View profile  
 More options Sep 3 2008, 4:41 pm
From: Christoph Dorn <christ...@christophdorn.com>
Date: Wed, 3 Sep 2008 13:41:34 -0700 (PDT)
Local: Wed, Sep 3 2008 4:41 pm
Subject: Re: FirePHP and Zend Framework 1.6
Are you using Zend_Controller_Front?

You need to have Zend_Controller_Front initialized with your request
and response objects before logging or log from your controllers after
the front controller is dispatched (which initializes the request and
response objects automatically).

If this does not solve it can you send me your bootstrap file.

Christoph

On Sep 3, 12:47 pm, tangfucius <tangfuc...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
tangfucius  
View profile  
 More options Sep 3 2008, 5:04 pm
From: tangfucius <tangfuc...@gmail.com>
Date: Wed, 3 Sep 2008 14:04:06 -0700 (PDT)
Local: Wed, Sep 3 2008 5:04 pm
Subject: Re: FirePHP and Zend Framework 1.6
There it is.  It appears that firephp, at least the zend framework
implementation, does not support logging after the dispatch process is
complete.  I was doing some logging after the $frontController-

>dispatch() line.  This is the reason why it didn't work.

On Sep 3, 3:41 pm, Christoph Dorn <christ...@christophdorn.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
tangfucius  
View profile  
 More options Sep 3 2008, 5:13 pm
From: tangfucius <tangfuc...@gmail.com>
Date: Wed, 3 Sep 2008 14:13:42 -0700 (PDT)
Local: Wed, Sep 3 2008 5:13 pm
Subject: Re: FirePHP and Zend Framework 1.6
Big thumbs up for the database profiling feature!

On Sep 3, 4:04 pm, tangfucius <tangfuc...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christoph Dorn  
View profile  
 More options Sep 3 2008, 5:47 pm
From: Christoph Dorn <christ...@christophdorn.com>
Date: Wed, 3 Sep 2008 14:47:56 -0700 (PDT)
Local: Wed, Sep 3 2008 5:47 pm
Subject: Re: FirePHP and Zend Framework 1.6
Right. It needs to send the headers before the response object is
flushed.

I have not tested this, but if you need to send logging after the
front controller has dispatched try the following:

1) Place ob_start() at the beginning of your bootstrap file
2) Log as usual after the front controller has completed dispatching
3) Flush the headers again with:

Zend_Wildfire_Channel_HttpHeaders::getInstance()->flush();
Zend_Controller_Front::getInstance()->getResponse()->sendHeaders();

Let me know how that works out.

Christoph

On Sep 3, 2:04 pm, tangfucius <tangfuc...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
tangfucius  
View profile  
 More options Sep 3 2008, 5:55 pm
From: tangfucius <tangfuc...@gmail.com>
Date: Wed, 3 Sep 2008 14:55:59 -0700 (PDT)
Local: Wed, Sep 3 2008 5:55 pm
Subject: Re: FirePHP and Zend Framework 1.6
any plans to enable logging after the frontController dispatch loop
exits?  I really like FirePHP, but would like to log after the
dispatch loop as well, eg. page execution time, application shutdown
process, etc.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
tangfucius  
View profile  
 More options Sep 3 2008, 6:02 pm
From: tangfucius <tangfuc...@gmail.com>
Date: Wed, 3 Sep 2008 15:02:28 -0700 (PDT)
Local: Wed, Sep 3 2008 6:02 pm
Subject: Re: FirePHP and Zend Framework 1.6
tried that.  now it shows in the headers, but not in the console
window...

X-Wf-1-1-1-2    |[{"Type":"INFO"},"Page run time: 0.064071 seconds"]|


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
tangfucius  
View profile  
 More options Sep 3 2008, 6:30 pm
From: tangfucius <tangfuc...@gmail.com>
Date: Wed, 3 Sep 2008 15:30:16 -0700 (PDT)
Local: Wed, Sep 3 2008 6:30 pm
Subject: Re: FirePHP and Zend Framework 1.6
some more information: it shows in the console when it's the only log
recorded, if there was anything else recorded before that, then it
doesn't show in the console although it's in the headers.

On Sep 3, 5:02 pm, tangfucius <tangfuc...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jamie H  
View profile  
 More options Sep 3 2008, 7:34 pm
From: Jamie H <jamiejh...@gmail.com>
Date: Wed, 3 Sep 2008 16:34:42 -0700 (PDT)
Local: Wed, Sep 3 2008 7:34 pm
Subject: Re: FirePHP and Zend Framework 1.6
This is a great addition to Zend!

I have just been testing it out with one of my projects and came
across a problem when profiling database queries that have parameters
containing non-standard chars (gzip data for a blob field).
I am getting the error “There was a problem writing your data from the
Wildfire Plugin”.

It doesn't appear like you can disable the sending of parameters in
the firebug headers with the Zend components. However, I modified
Zend_Db_Profiler_Firebug in my library to include a "sendParams" var
and function, and updated some of the methods to use this and it's now
working. It would be even better if I could still send these param
headers but have it ignore certain fields though, like BLOB data.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christoph Dorn  
View profile  
 More options Sep 4 2008, 1:57 am
From: Christoph Dorn <christ...@christophdorn.com>
Date: Wed, 3 Sep 2008 22:57:18 -0700 (PDT)
Local: Thurs, Sep 4 2008 1:57 am
Subject: Re: FirePHP and Zend Framework 1.6
Thanks for trouble-shooting this. I have added a ticket for it:
http://framework.zend.com/issues/browse/ZF-4181

Christoph

On Sep 3, 3:30 pm, tangfucius <tangfuc...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Christoph Dorn  
View profile  
 More options Sep 4 2008, 2:05 am
From: Christoph Dorn <christ...@christophdorn.com>
Date: Wed, 3 Sep 2008 23:05:02 -0700 (PDT)
Local: Thurs, Sep 4 2008 2:05 am
Subject: Re: FirePHP and Zend Framework 1.6
Thanks for reporting this. I have filed an issue:
http://framework.zend.com/issues/browse/ZF-4182

Christoph

On Sep 3, 4:34 pm, Jamie H <jamiejh...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »