10
votes
17answers
483 views
Besides “treat warnings as errors” and fixing memory leaks, what other ideas should we implement as part of our coding standards?
First let me say, I am not a coder but I help manage a coding team. No one on the team has more than about 5 years experience, and most of them have only worked for this company.. So we are flying a …
3
votes
3answers
280 views
How to get rid of hundreds of PHP undefined index notices?
I just enabled error reporting and wow what a shocker I have probably thousands if not hundreds of notices like this
Notice: Undefined index: action in C:\webserver\htdocs\header.inc.php on line 18
…
2
votes
2answers
118 views
stack overflow error
i just got my first ever stack overflow when I ran this script:
var hlat = 0.00;
var hlong = 0.00;
var mapdiv = document.getElementById('map');
var map_url = base_url + 'ajax/getPropMap';
var id_url …
2
votes
11answers
401 views
Common C++ mistakes [closed]
Possible Duplicate:
What C++ pitfalls should I avoid ?
While reviewing code from an inexperienced programmer, we often came across common mistakes in C++ code such as:
Logical errors such …
1
vote
3answers
173 views
Turn off warnings and errors on php/mysql
I am getting expected notices and warnings, and would like to turn them off on my php file. errors are:
Warning: fsockopen()
and notices are:
Notice: A non well formed numeric value encountered in
…
1
vote
2answers
41 views
How are files validated when opened?
Suppose a user selects a file in a dialogue box, and the app then opens the file for reading, etc. Users can open "incorrect" files--they can select a binary file, for example, even if the file …
1
vote
5answers
52 views
PHP Always run function
I am trying to get some errors returned in JSON format. So, I made a class level var:
public $errors = Array();
So, lower down in the script, different functions might return an error, and add …
1
vote
1answer
91 views
Trying to use Loader class inside of package, getting Error 1046: Type was not found or was not a compile-time constant
This is driving me nuts, I can run this fine with code on the main timeline, but when I put this inside of my sub Class I'm getting the Compile time error and 1180: Call to a possibly undefined …
1
vote
0answers
57 views
Visual C++: Where can I get a list of all errors & warnings?
Is there some place where I can get a list of all Visual C++ compiler/linker errors/warnings? I am looking for both the error/warning number and the error/warning text that is displayed by the …
1
vote
3answers
40 views
How to See Errors In IE 7
I am using javascript and ajax the most in my project source. All functions are working well in firefox. But some of them are not working in ie 6 and 7 browsers. Mainly Delete is not working for any …
1
vote
3answers
101 views
PHP - Do something if no errors/warnings occur in set of expressions
I have a page that will basically be used to concatenate a bunch of xml files, it will act as glue that binds them together. There's a small chance the xml files that are being combined might not be …
1
vote
3answers
104 views
How to prevent “fat finger syndrome” in absence of req. predeclearation?
For example:
on rising edge (reset):
sync = defaultValue;
...
... various processing constructs ...
...
if (event == someEvent) // Back at the Batcave
// The vilianous Fat finger Syndrome
…
1
vote
2answers
42 views
PDO Catch result
How does one catch/echo the insert results? I have a insertion statement that say that no errors occured but nothing is actually placed in the database.
1
vote
5answers
449 views
PHP Fatal error: Uncaught exception ‘Exception’ problem
I have a php script that connects to an api and posts our information to their systems, but when its trying to connect it throws an exception error, and I cant for the life of me work out why.
Whats …
0
votes
7answers
53 views
PHP produces a completly white page, no errors, logs, or headers.
While running some PHP code on my private WAMP PC I'm suddenly getting a blank response from the server - no response actually. No headers, no data, nothing in the PHP error logs, nada. I restarted …
