10
votes
17answers
425 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.. …
1
vote
3answers
50 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 v …
1
vote
2answers
40 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, eve …
0
votes
1answer
20 views
what you mean by Unable to resolve resource bundle “datamanagement” error occured in flex?
when will i add Advanced data grid in my project then it shows eror like
everity and Description Path Resource Location Creation Time Id
Unable to resolve resource bundle "datama …
1
vote
5answers
48 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 …
0
votes
2answers
34 views
Rails: Modify Validation error reporting?
The standard Rails validation wraps my error-filled fields in a div of class fieldWithErrors.
How can I change it so that the erroneous element's parent gets assigned that class i …
0
votes
4answers
65 views
‘Undefined’ Notice while populating arrays
While populating an array with data from a SimpleXML call, PHP throws exception to what it believes as 'Undefined' keys, however, the output is actually correct.
$doc = new Simple …
0
votes
1answer
30 views
What is the way to manage errors and return JSON?
I have a php application, that, when it encounters an error, will run a function that uses trigger_error() as well as uses the following function to return the error as JSON.
$th …
1
vote
1answer
60 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 possi …
0
votes
5answers
90 views
Why won’t my site load from one computer, but it will another?
Pretty vague title, but basically I can only get "my site" to load from one computer. I've purchased hosting and a domain name, set it all up, and there's nothing there yet, but th …
0
votes
1answer
39 views
Capture contents of Firefox/IE error console through code?
Is it possible to capture the contents of either the Firefox or IE javascript error console? I'm thinking adding a feature where when a user clicks the 'Report A Bug' link on my si …
2
votes
11answers
373 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:
L …
0
votes
3answers
46 views
include and require problem when I use it with file out of the folder
hi
I usually use this line to import file from out of the current folder and it's work fine on my local host server
require("../DataBase.class.php");
but when I upload the scri …
1
vote
3answers
82 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 com …
3
votes
3answers
206 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. …
