Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
4answers
3k views

How to register Zend_Log in the bootstrap of a ZF 1.8+ application?

So I want to start logging in my Zend Framework application. I want to register the logger somewhere in my bootstrap so that I can easily access it from any controller action. I think this should be a ...
3
votes
1answer
346 views

Is UML Class Diagram of Zend_Log correct?

Background of question Analysis of Zend_Log reveals following Class Diagram Zend_Log: uses ReflectionClass & Zend_Log_Exception maintains reference to array of Zend_Log_Writer_Abstract ...
2
votes
1answer
466 views

FirePHP doesn't always write log messages

I set my loggers up in my Bootstrap.php like so: $logger = new Zend_Log(); if($environment->debug == '1') { $stream = @fopen('/var/www/html/rta/rta.log','a',false); ...
2
votes
1answer
486 views

Zend Framework default log level

Is it possible to set default log level for entire applicaton? I would like to set it from application.ini. I would like to set loggers to log to database and firephp.
1
vote
2answers
48 views

How to use Zend Log as a seperated component?

I want to use Zend Framwork's Log mechanism as a seperated component,that means all I want from ZF is just the Log, How can I do this?
1
vote
1answer
415 views

Zend_Log with multiple writers in application.ini

i have a logger in my config like this: resources.log.stream.writerName = "Stream" resources.log.stream.writerParams.stream = APPLICATION_PATH "/../logs/err.log" ...
1
vote
1answer
150 views

FirePHP does not show extras when used with Zend_Log_Writer_Firebug

I've been developing with Zend Framework for ages (since 0.9) and this problem is nagging at my nerves ever since. I want to output messages on the FireBug Console with the help of FirePHP and from a ...
1
vote
1answer
129 views

Storing data in Zend_Registry vs Zend_Cache

So far i have been using Bootstrap.php to load my application.ini config into Zend_Registry as well as an instance of logger. I was wondering if storing these inside Zend_Cache would be a better ...
1
vote
2answers
425 views

Relative path for Zend_Log in Zend Framework

I am trying to work out the best way to configure my Zend_Log_Writer_Stream instance to write to a filename relative to my APPLICATION_PATH. For example, with the following config: ...
1
vote
1answer
148 views

Log translated strings when using Zend_Translate

With Zend Framework it's easy to log strings that haven't got a translation. My question: how do you log the strings that do have a translation? Thanks!!
1
vote
2answers
2k views

Zend Framework -> Zend_Log via application.ini => insert() on a non-object error

I am trying to get logging via the application.ini file going and I am getting stuck with an error. resources.log.db.writerName = "Db" resources.log.db.writerParams.db.adapter = "PDO_SQLITE" ...
0
votes
0answers
41 views

“key doesn't exists” error in Zend View

If you try to access to an unassigned variable in the view, php gives the following warning PHP Notice: Key "messages" does not exist in ...
0
votes
1answer
88 views

Is there a way to disable xdebug's var_dump temporarily?

I want to use Zend_Debug::dump, to keep some variables in the log, but since I have xdebug installed, and xdebug replaces php's var_dump, my values in log are html values produced by xdebug. I was ...
0
votes
1answer
70 views

How to keep Zend_Debug HTML tags out of Zend_Log

I use Zend_Debug::dump to dump variables into a Zend_Log file. How can I get it to stop wrapping the output in HTML tags? The documentaion says "If the output stream is detected as a web ...
0
votes
2answers
380 views

Zend Log - Bad Log Priority

When I try to add a registerErrorHandler() to my log config in my bootstrap it gives the following error: <b>Fatal error</b>: Uncaught exception 'Zend_Log_Exception' with message 'Bad ...
0
votes
1answer
77 views

Zend Framework Log Errors and Others to File

I need to log errors, access attempts, etc, to file by creating a plugin or adding in application.ini, in the error staying default to not show to final users thanks in advance.
0
votes
1answer
206 views

Storing an instance of Zend_Log in Zend_Cache/Zend_Registry with/without custom helper

I am trying to store an instance of Zend_Log (with Zend_Log_Writer_Stream) to Zend_Cache(preferably) or Zend_Registry(fallback) but with the custom helper as an abstraction layer instead of direct ...
0
votes
2answers
155 views

Hooking into the Error processing cycle

I'm building a monitoring solution for logging PHP errors, uncaught exceptions and anything else the user wants to log to a database table. Kind of a replacement for the Monitoring solution in the ...
0
votes
1answer
161 views

Using Zend_Log in custom classes

I am using Zend_Log, and other required classes, without the MVC framework. I want to add Zend's logging capabilities (and other modules in the future) to my custom classes and I am wondering what ...
0
votes
2answers
199 views

Zend_Session and Zend_Log _Db are both writing to the database twice for every page load

There are plenty of examples of similar problems littered around the web but none of their solutions seem to fix this particular variation. Any suggestions would be appreciated. Usually this problem ...
0
votes
2answers
292 views

Why Zend_Log_Writer_Firebug can't log messages from dispatchLoopShutdown plugin?

Why logs can be sent from dispatchLoopShutdown plugin as it occurs before Zend_Controller_Response_Abstract->sendResponse() and any headers haven't been sent yet ? I init logger resource in my ...
0
votes
1answer
555 views

error logging in zend

i am using zend for 1st time..i am facing problems in finding errors. when a setter and getter function name mismatch i get a an error...but the error is show sometimes and not all the time...how do i ...
0
votes
1answer
406 views

How to make a global Zend_Log with Zend_Application_Bootstrap

I would like to make a global Zend_Log object that I can reach from my Controllers and my Models. What should I add to my Bootstrap? (My bootstrap extends Zend_Application_Bootstrap) How then can I ...