0
votes
11answers
135 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 …
0
votes
4answers
33 views
PHP simplexml_load_file - catch file errors
Hi,
Is it possible to catch simplexml file errors? I'm connecting to a webservice that sometimes fails, and I need to make the system skip a file if it returns some http error or something similar.
…
0
votes
1answer
16 views
WPF WebBrowser Silent mode through IWebBrowser2 interface not working?
I'm trying to silence Javascript errors in the WPF webbrowser control. According to the "Getting to the native IWebBrowser2" comment on this page, one can access the IWebBrowser2 interface. From there …
0
votes
3answers
44 views
How to trap a PHP script error which dies (Perl has eval)?
Hi
I've got a script which works fine on our development server but dies on the clients server.
error_reporting(E_ALL);
if (function_exists('simplexml_load_file')) echo "function exists";
if …
0
votes
2answers
29 views
How to find if thee are javascipt errors in the page using selenium rc
I am using selenium rc and I would like to know if there are any javascript errors occured in the page. Is there any Selenium API to check if there are any javascript errors? Thanks very much.
0
votes
0answers
17 views
“Not Well-Formed” Errors in XML file after FTP
Using WS_FTP Professional, I have a backup process that runs every night.
WS_FTP basically sets up the process to FTP to a remote server through windows scheduler.
Specifically, It sends an XML …
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 …
0
votes
1answer
48 views
(ruby) Broken pipe (Errno::EPIPE)
i have a Broken pipe (Errno::EPIPE) error popping up and i don't understand what it is or how to fix it. the full error is:
example.rb:19:in `write': Broken pipe (Errno::EPIPE)
from …
0
votes
0answers
40 views
Strange isolated jquery errors
After launching a major redesign for a client, we've received a handful of emails from users who are experiencing a script that is slowing down, and eventually crashing their browsers. The errors that …
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 …
0
votes
1answer
45 views
fun error logging / reporting idea for small website
I want to write (or implement) a quick and easy logging solution for our website. I figure rss is fine for the format.
I was thinking of piping apache's error log to a simple script that, if the url …
1
vote
3answers
174 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
…
0
votes
1answer
70 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 "datamanagement".
but …
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 …
