Anyone knows of one? Preferred open source?
Basically some framework that I can hook up that collects error information, forwards it to a central location via web service including collecting crash dump information (exception stak trace, but possibly some other files on the machine per my extension) and does some statistical analysis + ...
Currently we have many applications, where each application has its own error notification and reporting mechanism, so we clearly have many problems:
Lack of consistent error monitoring across different systems/applications: different GUIs, interfaces, different messages, etc.
Different approaches for error notification per application...
I am learning PHP and I am at this point learning how to validate forms and client inputs.
Clearly I have misspelled, written something not related to PHP or anything like that, because I get nothing but a white screen, but I just can't find out where the error is generated.
A weird thing is, that even though I have turned on error rep...
Hi,
I'm currently working on an exception-based error reporting system for Windows MSVC++ (9.0) apps (i.e. exception structures & types / inheritance, call stack, error reporting & logging and so on).
My question now is: how to correctly report & log an out-of-memory error?
When this error occurs, e.g. as an bad_alloc thrown by the ne...
Hello all,
I made a huge mistake by mixing result with results and it took me around 4 hours to finally find the bug.
So here is the question, in PHP, is it possible that I can enforce PHP to report errors if I use an undefined/uninitialized variable.
thank you
...
Very frequently I see error reporting GUIs in commercial software. This includes the whole gamut of commercial software: games, enterprise apps, office apps, etc.
For some of my company's software I would like to provide exception reporting GUIs if (and ultimately when) my application fails unexpectedly. Building the GUI is not hard. It...
I can't see any PHP errors. I have tried every trick I can find to turn error reporting on, but nothing works.
display_errors is on and error_logging is on, but when I view any page with an error, I get a blank page.
/var/log/php.log does not exist.
if I set a local logfile, Nothing gets created.
The file I have been testing with is...
I am about to start implementing error handling into my framework and looking for some advice on how to build it.
Firstly let me explain how my framework is currently built up:
Im separating the framework startup from the application startup, so any errors caused within the application startup should be handled specifically by a class ...
thanks for your help....
...
Here is my code:
echo 'foo';
error_reporting(E_ALL);
echo 'this line doesnt end in a semi colon'
echo 'i should get an error here';
When I run this I get no error.
Not sure how this can be?
...
Does python have some undefined variable / debug mode which will output a notice/warning?
PHP allows you to modify the error_reporting to turn on notice warnings which mean doing
<?php
echo $foo;
will throw an "Undefined variable foo on line 2.......
does python have something similar?
I had a bug where I was doing
db.connect
in...
hi there!
i have a problem with my server which is running ubuntu (debian) linux and apache 2.2/php 5.2
as this is mainly a productive server, display_errors is turned OFF in the php.ini
for development purposes, i want to enable these error reporting stuff for certain domains. but when i set
php_flag display_errors on
in the .htacc...
I have a fresh install of Magento 1.4.1.1 using MAMP 1.8.4 on OS X Snow Leopard 10.6.4.
I'm unable to load magento/downloader (the Magento Connect Manager) successfully. My browser displays a blank white page. Safari's Activity window tells me it's an Internal Server Error, which tells me my permissions may be incorrect. I have changed ...