0
votes
2answers
29 views
php error reporting level per IP
I understand that it is possible to alter the PHP error reporting level site-wide, but can I report a different error level to a particular client (IP address)?
5
votes
10answers
463 views
Why is exception handling bad?
I've heard this on the Internet. For instance, Google's Go language has no exceptions as a design choice, and Linus of Linux fame has called exceptions crap. I am just wondering wh …
0
votes
4answers
191 views
PHP error reporting on specific folders
is there a way to set *error_reporting(E_ALL);* for a specific directory rather than including it in each file?
I'd like to turn on error reporting for my beta.mysite.com
6
votes
6answers
317 views
WinQual: Why would WER not accept code-signing certificates?
In 2005 i tried to establish a WinQual account with Microsoft, so i could pick up our (if any) crash dump files submitted automatically through Windows Error Reporting (WER). i was …
0
votes
2answers
57 views
What are differences between error_reporting(E_ALL) and error_reporting(E_ALL & ~E_NOTICE)
I am using PHP.
Could anyone explain differences between error_reporting(E_ALL) and error_reporting(E_ALL & ~E_NOTICE)?
I noticed that when I change from E_ALL to E_ALL &am …
0
votes
2answers
65 views
Why is the result of E_ALL | E_STRICT the same as only E_ALL?
In PHP error reporting,
E_ALL equals 8191 (1111111111111)
E_STRICT equals 2048 (100000000000)
Using bitwise OR to combine them:
1111111111111
100000000000
we still get:
11 …
2
votes
2answers
38 views
PHP error display removing all other content
On a development server here, a setting has been changed which makes any PHP error (of any level) only output the error message and nothing else. To demonstrate what I mean, here's …
0
votes
2answers
55 views
Php not reporting any errors on IIS7
Hi,
I am developing a PHP application using our XAMPP setup as a test server.
Once the app is ready to deploy, I have to upload it to the client's server,
The problem is the clie …
0
votes
2answers
52 views
How to use external variables (e.g. POST/GET) in PHP with error level E_NOTICE
Dear all,
I'm looking for the best way how to use external variables in PHP with error level including E_NOTICE.
I have three possible ways, I would be happy, if you can give som …
0
votes
2answers
40 views
How to build Debug AND Release and still get appropriate error messages?
I'm using Visual Studio 2008 Team System 2008 Team Edition.
I want to be able to build my project and actually be told about all errors in the build. So far I have not found a way …
2
votes
6answers
116 views
Is it considered standard practice to turn off notices in the error log for PHP development
I coming from a J2EE background and it seems that it is very common for PHP developers to turn off and ignore notices with the statement:
error_reporting(E_ALL & ~E_NOTICE);
T …
1
vote
6answers
174 views
.NET “Send error report to [me]”
If an exception propagates all the way up to the top of my application (which, of course, will never happen), I would like to offer the option of sending an error report to me befo …
1
vote
0answers
74 views
What is your favorite funny debug message? [closed]
We all use funny debug messages some time or the other. What is it?
9
votes
13answers
4k views
Error logging in C#
I am making my switch from coding in C++ to C#. I need to replace my C++ error logging/reporting macro system with something similar in C#.
In my C++ source I can write
LOGERR(" …
4
votes
11answers
281 views
PHP’s white screen of death
Now that I'm starting to get back into PHP, I'm starting to remember why I gave it up in the first place. The most annoying thing on my plate at the moment is what I've come to ter …
