The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
125 views

Standard Java Error Reporting [migrated]

I am currently working on creating a toolkit for work and I've gotten to the point where I'm wondering about error reporting. Basically all of my tools, which consist of a grouping of classes, will ...
0
votes
1answer
20 views

How to change the way PHP writes errors in the error log file?

I have been working on my website for over a year now, and I am very anxious to finally put it out there for people to use. It has gotten quite large however - I almost want to say out of my control - ...
2
votes
2answers
23 views

change error log output format: ini_set('error_append_string', 'string') and ini_set('error_prepend_string', 'string') does nothing

This is what I tell php to do: <?php error_reporting(E_ALL); ini_set('display_errors', '0'); ini_set('log_errors', 1); ini_set('error_log', 'errors.log'); ini_set('error_append_string', 'APP'); ...
0
votes
2answers
35 views

Error reporting tool for SQL Server database

I am looking for an open-source web reporting tool for my tSQLt errors on a SQL Server database. When I run unit tests tSQLt generates the below mentioned information on a table. I want to generate ...
0
votes
0answers
14 views

.NET Application Health/Reporting (Not Necessarily Errors/Exceptions/Performance) and Email Blasting Tool

Our company uses an in-house tool to collect errors in business logic, and setup email workflows/triggers for these errors. I'm looking for a similar tool for .NET, but having a hard time finding ...
2
votes
2answers
22 views

CodeIgniter: Application Doesn't work and wont log errors

My small project with CodeIgniter (wich is only to get familiar with it. It's actually like their tutorial's example) it stoped working, giving me no output or errors even that in the index.php is set ...
1
vote
1answer
26 views

PHP error reporting works ONLY when line is added in code

I have a problem with my PHP error_reporting. I have all the values for error_reporting and display_errors set in php.ini but my code still remains blank page until I add a line in php code : ...
0
votes
0answers
30 views

Collect exception reports in Java application

I'm currently maintaining a Desktop Java application that has a small to medium user base. I often get some pretty useless mails saying that "something went wrong" and I'm left digging through the ...
0
votes
0answers
27 views

Symfony2 - browser shows 324 error instead of stacktrace, even on parse errors

It's quite a common situation in my localhost default-set Symfony2 production environment (OSX with bundled Apache), that I often get default browser's message, ie.: Error 324 ...
1
vote
1answer
19 views

outputting detailed errors in php

Ive gone through my php.ini and turned on error reporting, now my errors get outputted like this But watching tutorials online ive seen peoples error displayed like this How can i enable ...
1
vote
2answers
136 views

need to add crash reporting functionality in wp8 app

I have developed a Windows Phone app in WP7.1 and WP8. I need to implement crash reporting functionality to my app. Whenever a force-close happens, I'd like to get all the details of what happened. ...
0
votes
0answers
36 views

Are background task exceptions reported to Microsoft?

I believe unhandled errors in Windows Store apps are reported to Microsoft and then presented to the application's developers via the store. If I create an app that has a background task, if an ...
2
votes
2answers
76 views

PHP PDO Error Message as a Variable to send in email

Making the switch to PDO from MySQL in PHP. In the past, when a query was ran and wasn't executed for whatever reason, I was able to send myself an email with the mysql_error() message in the body ...
0
votes
1answer
33 views

How to configure my server to display php error instead on HTTP Error 500 (Internal Server Error)

I have a local server set up on Windows server 2008 R2. But whenever I have an error in PHP or MySql code I get a HTTP 500 Inertnal Sever Error insted on displaying what the error is. How can I ...
1
vote
3answers
99 views

how to prevent vulnerability scanning

I have a web site that reports about each non-expected server side error on my email. Quite often (once each 1-2 weeks) somebody launches automated tools that bombard the web site with a ton of ...
0
votes
1answer
39 views

How to prevent website attacks through an error reporting feedback link?

I am developing a website which currently is mostly Intranet only and uses custom authentication. The website needs error reporting functionality. I have everything set up already in the back-end ...
1
vote
1answer
55 views

How to set “URL” for errors reported to New Relic from background tasks

The Events : Errors tab in New Relic displays exceptions (date, time, message and stack trace) reported by my application using NewRelic.noticeError(exception). For those reported from web ...
1
vote
1answer
126 views

PHP error suppression is being ignored

My current php.ini file is set to report all errors other than deprecation and strict standards as follows: error_reporting = E_ALL & ~E_STRICT & ~E_DEPRECATED The reason for using this ...
2
votes
1answer
43 views

Is it possible to pass the name of a subroutine to a string in VBA?

I'm constructing a database in Access with heavy VBA use. It would be useful for error reporting if I could pass the name of an active subsoutine to a string. Is this possible in VBA? Thanks.
1
vote
1answer
141 views

Report AJAX error to php script

I use several jQuery AJAX calls in my application and sometimes encounter errors during those AJAX calls such as 500 internal server error. To get to the bottom of the error, I log into the server and ...
0
votes
1answer
68 views

Mongo will not load in phpinfo with error_reporting enabled

I have been trying to get Mongo to work on PHP 5.3 with Apache2 on Ubuntu Server 12.04 for several hours now. It was giving the error: Fatal error: Class 'MongoClient' not found in ...
3
votes
1answer
61 views

Dojo console error objects empty

All of a sudden the errors that Dojo (1.8.3 from Google CDN) is spitting out empty errors, which makes debugging impossibly hard. For example, if I forget to require a dependent before using it, I ...
1
vote
2answers
110 views

Tried everything and can't turn off errors in CakePHP

I have tried everything I can think of to stop errors from displaying in CakePHP. I have checked the CakePHP instruction manual and have searched the internet and stackoverflow for phrases like "turn ...
1
vote
1answer
48 views

How to write all errors into console in JQuery

I have just started using JQuery but it doesn't write any error when trying to access an unexisting variable, for example: window.alert($.ui.keyCode.someNonExistingName); switch(e.keyCode) { case ...
4
votes
3answers
986 views

How to display errors on laravel 4?

I'm trying to create an app on Laravel 4 beta but I can't debug it because it doesn't show any error, display_errors is on, error_reporting is E_ALL and debug => true (config/app.php). When I try to ...
4
votes
4answers
126 views

Good idea to ignore errors? [closed]

I found out that on my system "error_reporting" was turned off. So I turned it on (E_ALL) and now I have quite a lot errors. if you're interested in my mistakes: Notice: Undefined index: page in ...
1
vote
3answers
97 views

How to check the types contained in a list?

I want to do the following without defining a function: if isinstance(x,(list,tuple)) and every_element_isinstance(x,basestring): foobar ie: implementing type checking Is there a ...
1
vote
3answers
174 views

I want codeigniter to echo php errors instead of 500 internal error

I have currently set my Codeigniter root index.php's environment variable to development. And I haven't also enabled tiny URL mode. I don't like to check /var/log/apache2/error.log every night and ...
2
votes
0answers
159 views

What is the system data used in“Include system data” in android error reports?

Android 2.2 has a new feature,in which when something unexpected happens in an application, the system send a error message asking the user to either "Force close" the app or "Report" the error to the ...
1
vote
1answer
105 views

AJAX called files displaying errors when error_reporting=off

In php.ini, my error display settings are as follows: error_reporting = E_ALL & ~E_NOTICE & ~E_DEPRECATED display_errors = Off which works for any normally called file, however, if a file ...
0
votes
3answers
105 views

Add extra information to uncaught exception

In Google.Play there is a statistic about uncaught exceptions. I would like to know is there any way to add some extra information to exception, so it will be shown in Google.Play (cause third party ...
0
votes
0answers
48 views

Error reporting in Django for 403 errors

Currently I have my production environment set up so that MANAGERS are emailed any time there's a 500 error. I would also like to be emailed anytime someone tries to access something they don't have ...
0
votes
1answer
85 views

Setting php error reporting in the document instead of php.ini

I'd like to turn on error reporting in the document as opposed to the php.ini file on my hosting company's server. According to the manual these functions set the error_reporting directive at runtime ...
-1
votes
2answers
202 views

Why isn't a setting in php.ini not being loaded?

I'm trying to get PHP to display a warning when we call an undefined variable. php.ini has the line error_reporting = E_ALL | E_STRICT. The trouble is, strict warning messages are not being output ...
1
vote
1answer
217 views

Backbone.js error reporting practices

I am in the design process of a fairly robust rich client application which I tend to base the client code on Backbone, and I am curious as to the available/recommended error reporting implementation. ...
0
votes
1answer
279 views

Using multiple datasource on a Reporting Services report?

I have a report that contains two datasets. Each dataset is connected to two different datasources. The databases are on the same server. I can run the report without problems in the preview of ...
3
votes
2answers
66 views

PHP Error Reporting - use of “^” character and the “~” character

I'm try to understand the difference between the use of the "^" character and the "~" character when setting the error_reporting values. For example I have the following in my php script: if ...
2
votes
2answers
53 views

Why am I getting no errors from this? [closed]

I have this code and for some reason it just won't give me any errors when I pass in invalid data. At least I would expect to get either wrong database or the standard 'Access denied for user ...
0
votes
3answers
89 views

header() error not shown in php

I wrote a PHP program, I use session_start() and header() functions, I know I should use this functions before I sending anything to client. it's ok, but for test I send a test message to client with ...
1
vote
2answers
94 views

suppress 2048 errors in php

Ok first, I've been googling for almost 40 minutes and I can't find an answer to my specific issue. I understand that its best to fix errors, but that's not the issue here. what I need to do is make ...
1
vote
3answers
2k views

PHP 5.4: disable warning “Creating default object from empty value”

I want to migrate code from PHP 5.2 to 5.4. This worked fine so far except that all the code I use makes extensive use of just using an object with a member without any initialisation, like: ...
0
votes
0answers
165 views

c library for logging, warnings, error reporting [closed]

I am searching an open source, portable c library capable of dealing with aforementioned tasks. Ideally, it should be able to support various front-ends customizable at run-time: (colored) console ...
4
votes
1answer
61 views

How can I deactivate notices in Apache?

I'm new on a project and after cloning the code, I can see several notices on every http request. I always enable notices on my apache's development environment and of course they are disabled on the ...
6
votes
1answer
1k views

Same mistake but different error report. Why?

Why Python reports about different errors for the same reason, the programs with the 1 and 2 lines of code? I mean: print(1 gives Error: unexpected EOF while parsing but a = 1+1 print(1 ...
0
votes
2answers
88 views

Error reporting is set to 0 but it is still showing errors

In my application I have error_reporting set to 0 and just to make sure i is set when I echo error_reporting() it says it's 0. If I leave out a semicolon on purpose just to trigger an error ...
2
votes
1answer
396 views

How does php ini_set work? [duplicate]

Possible Duplicate: ini_set() scope of effect? I'm working on a site and for development I like to see my errors in the browser, so I have the following code at the top of my site: ...
0
votes
1answer
59 views

Display mod_wsgi error on webpage

I have set up mod_wsgi to serve python files. Indeed it does. However, if i have syntax errors on the .py file (such as indentation errors), i get a Server Error when the page loads, and have to go ...
0
votes
2answers
93 views

PHP error reporting on a per site basis IIS7

I have looked through the various questions on php error reporting on iis7 but have not been able to solve my problem. I have error reporting turned off in my php ini file, (a lot of sites on this ...
1
vote
2answers
130 views

Printing errors at the bottom of the page instead of the top?

While developing my website, I have error reporting enabled. But every time an error is generated, it gets generated on the top of the page, before the opening tag. This breaks the document sometimes ...
0
votes
1answer
96 views

Setting to cause php error on duplicate entry attempt to unique fields?

In our PHP application, currently mysql query errors (syntax errors, duplicate entry errors for unique keys) are not throwing PHP errors, and script execution is continuing, which is fine. I just ...

1 2 3 4 5