Tagged Questions
The error-log tag has no wiki summary.
8
votes
5answers
6k views
How can I parse Apache's error log in PHP?
I want to create a script that parses or makes sense of apache's error log to see what the most recent error was. I was wondering if anyone out there has something that does this or has any ideas ...
6
votes
3answers
5k views
How can I see the error log (logcat) for Android in Eclipse?
How / where can I see what happened when my Android application crashes in Eclipse (using Run, not Debug)?
4
votes
4answers
303 views
Is it possible for $_SERVER['HTTP_USER_AGENT'] to not be set?
I've just been looking through a website's error_log and one of the error's that has been logged a few times is:
[21-Jun-2011 12:24:03] PHP Notice: Undefined index: HTTP_USER_AGENT in ...
4
votes
5answers
249 views
Best Practices for Live Website Error Management
I am just about to launch a fairly large website for the first time. I have turned off all error messages in my php.ini and error messages are now logged to an "error_log" file on my server.
My ...
3
votes
12answers
5k views
Windows command line tool analagous to UN*X “tail” command?
The tail command on the DOS does not seem to be recognized on my XP. Any suggestions on printing last few lines on a very big log file on DOS.
Thanks
Arun
2
votes
2answers
67 views
Deadlock: property mode in keylock resource-list differs from owner-list mode
I have been working with some deadlocks situations in our application recently and have a new case which seems odd to me. The error log displays this (without execution stacks which doesn't matter at ...
2
votes
1answer
101 views
Why does error_log() always send exactly 3 emails?
I'm using the error_log() function like so:
error_log($errorstring, 1, 'myemail@gmail.com');
And it works fine, but every single time it is executed I get exactly 3 copies of the same email spaced ...
2
votes
2answers
213 views
possible for PHP to read/parse the current vhosts' Apache VirtualHost config block, to retrieve ErrorLog and CustomLog settings?
Is it possible for PHP to read/parse the current vhosts' Apache VirtualHost config block, in particular, to retrieve ErrorLog and CustomLog settings?
To be clear we do not need the PHP error log ...
2
votes
3answers
155 views
PHP - Log stacktrace for warnings?
Is it possible to log stacktraces for php warnings? Or catch a warning and error_log() it?
There's some code causing warnings in my error log, but it's impossible to know what's causing these ...
2
votes
3answers
2k views
Disable E_DEPRECATED in php error log
I have a production server running commercial software that utilizes deprecated functionality. We already disabled error outputs in php.ini -- display_errors = Off -- so users are not seeing these ...
2
votes
1answer
795 views
MySQLi error handling
Is it possible to specify that MySQLi sends any errors and warnings to the PHP default 'error_log' directive? I can't seem to find any error options for the class specification, and I don't wish to ...
2
votes
2answers
245 views
Why does my Apache2::Log output replace newlines with \n?
I've set up multiple vhosts under apache2 / mod_perl. I used the ErrorLog directive to get a separate error log for each vhost. This only worked as expected when I used Apache2::Log. 'warn' would only ...
2
votes
2answers
4k views
SQL Server Timeout Logging
Hello
Hopefully this a simple yes/no question..
Are SQL Server timeouts (SELECT queries, in particular) logged in the ERRORLOG file?
Background is a customer with a web site having occasional Request ...
1
vote
0answers
43 views
symfony unlink warning in Apache error log
I have a symfony 1.4 project that is continually putting the following warning in the Apache error log:
[Wed Sep 26 06:18:22 2011] [error] [client 192.168.100.12] PHP Warning: ...
1
vote
1answer
29 views
Voiceglue Logger says Maximum loop count exceeded. There is probably an infinite loop of in your VXML document
Can Any please explain why this is happening. what are the possibilities of errors that are been counted as I have set maxerrorcount = 3
EROR OPEN_VXI luke---- callid=[68] ...
1
vote
1answer
50 views
Voiceglue Expecting '=' after cookie attribute's name
I am getting following Voiceglue error while executing in /var/log/dynlog/dynlog
15:35:54:525 EROR OPEN_VXI luke---- callid=[58] |1098905920|58|SEVERE|swi:SBinet|257|SBinet: Expecting '=' after ...
1
vote
1answer
54 views
Can the size of the error log in Eclipse be increased?
I use the error log view in Eclipse quite often to track behaviour during debug, but when I log a large amount of things (the limit is currently 50), they fall off the edge and I have to dive into the ...
1
vote
1answer
96 views
log_error method in rails 3
I'm switching my application to Rails 3 and for the moment I discover some problems with the log_error method. In the doc ( http://apidock.com/rails/ActionController/Rescue/log_error ) they say that ...
1
vote
3answers
52 views
Is it possible to create an error log in java that extends to all classes?
Is it possible to create an error log in java that extends/works to all classes in a package?
So when I handle exceptions in various classes, I can simply log that error into one single file.
1
vote
1answer
970 views
PHP Error log file format (php.ini error_log directive) on Windows
For an example:
php.ini file
...
; Log errors to specified file.
error_log = c:/php/php.log
...
Error log file (c:/php/php.log) contains every entry in this format:
[12-Jun-2011 12:58:55] PHP ...
1
vote
2answers
530 views
Php error log not working
It's been working for ages and stopped. I must be missing something obvious so figured stack overflow might be able to help.
/etc/php5/apache2/php.ini relevant settings are:
display_errors = On ...
1
vote
2answers
517 views
Writing to Apache access_log file with php
I need to write statistical data to the live Apache access_log file (I have another process counting specific lines in the access_log file that reports periodically back to another process).
...
1
vote
1answer
136 views
PHP error_log not respecting the timezone setting?
Timezone problem in error_log?
If I explicitly set the error_log directive to a file in php, and then use the error_log statement with a timezone, then why does it not respect my timezone? See ...
1
vote
3answers
57 views
Unexpected htaccess behaviour (mod_rewrite and apache)
Yeah, mod_rewrite is driving me crazy.
Here is the problem:
my htaccess
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php?url=$1 [L,QSA]
when i try to access the page advantix ...
1
vote
2answers
374 views
Outputting all PHP errors to database not error_log
Is it possible to make all PHP errors be written to MySQL instead of to the standard error_log file. I guess this would be possible if i wrote my own error handler from scratch but i have a lot of ...
1
vote
1answer
388 views
PHP error_log() not writing to disk in cron job
When running PHP scripts as cron jobs, the error handler works but the error_log() function doesn't write to disk. I included these lines in the script run through cron in case it was because the ...
1
vote
1answer
2k views
PHP error_log: Won't write to specified file
Running PHP under IIS on my Win XP Pro system. I cannot debug my scripts easily because get PHP to write to the error log I specify. Here are the relevant (I think) php.ini entries:
...
0
votes
0answers
35 views
where is my log from streaming in pig
I'm running a script
DEFINE myproc `python myscrpt.py` stderr('MYLOG' limit 100) SHIP('./myscript.py';
A = LOAD 'my_data_file' USING PigStorage(',');
B = STREAM A THROUGH myproc;
In the python ...
0
votes
1answer
57 views
Magento: How to change email address for sending error logs?
I receive error logs over email, but i change my email account, now i need to change the email also in magento.
Does somebody know where I can find option to change email in magento admin pages to ...
0
votes
1answer
117 views
Customizing apache nginx backend errorlog to include x-forwarded-for / x-real-ip? How?
We run your default apache behind nginx setup.
This means that as far as the ip that shows up in the apache error logs is the nginx lan ip (eg: 192.168.0.X).
This means that the standard error log ...
0
votes
3answers
198 views
How to view PHP or Apache error log online in a browser?
Is there a way to view the PHP error logs or Apache error logs in a web browser?
I find it inconvenient to ssh into multiple servers and run a "tail" command to follow the error logs. Is there some ...
0
votes
1answer
31 views
Getting Error in Apache web server log file : called too early to check prototype
I am new to this stuff so I am not able to identify where exactly the problem lies.
I am calling update.cgi from the form action of an html page named update.html. The cgi is responsible to update the ...
0
votes
3answers
109 views
PHP mysql_num_rows() Returns error
I have a PHP login script. This is the part where the person can create a new user. My issue is I want to check if the user exists, and if the username does not exist the the table, than create the ...
0
votes
2answers
98 views
Odd .Net Runtime Error: system.servicemodel.fault
We've been seeing this error crop up in our system event logs an alarming amount. It relates to a very simple command-line app (literally four or five lines of actual processing code) that consumes a ...
0
votes
1answer
51 views
Apache is logging failed calls to 'rm' using PHP's exec()
In order to clear cached versions of a page when they are edited, our CMS, written in PHP, uses exec() to get rid of all the relevant cache files. These files are always named so as to include the ...
0
votes
1answer
164 views
iPhone SDK - duplicate symbol error? How do I fix this?
Error log
Build test of project test with configuration Debug
Ld build/Debug-iphonesimulator/test.app/test normal i386 cd
"/Users/justine/Desktop/test - iPhone/test" setenv
...
0
votes
2answers
131 views
IIS PHP doesn't log errors to log file
My local windows webserver (IIS) doesn't log php errors to log file.The php53_errors.log file is always empty. http://prntscr.com/2aels How to fix it? I think something goes wrong with permission ...
0
votes
1answer
38 views
how to parse database error log?
I want to parse a database (MySQL, SQLite, Oracle, anyone is ok) error log to see which errors have occurred. Is there any tool available to do the job or does anyone have any idea how the job can be ...
0
votes
1answer
38 views
Apache error log showing very strange problems
I was wondering if anyone could point out what is causing the problem in the screenshot attached. It has happened a couple of times with different images. I can't see what is causing it.
The machine ...
0
votes
1answer
129 views
PHP error log problem 'Unable to load dynamic library'
My PHP error logs are filling up extremely rapidly with the following line:
[28-Apr-2011 13:03:00] PHP Warning:
PHP Startup: Unable to load dynamic
library
...
0
votes
1answer
178 views
Is it possible to log the IP address in php error_log?
I have been working with PHP for years and have never really thought about this until now. Obviously there are custom formats for display apache logs, but is there anything that can be done with php's ...
0
votes
2answers
243 views
Send errors message via email using error_log()
The php function error_log() let you send logs to email setting the second param to 1. I do that, but i want to dispay message in html. The code looks like this:
error_log($this->_errorMsg, 1, ...
0
votes
1answer
94 views
“Unable to load dynamic library” on WordPress blogs error log?
I am getting the following massage in the error log files of my WordPress blogs:
[10-Oct-2010 04:37:43] PHP Warning: PHP Startup: Unable to load dynamic library ...
0
votes
1answer
556 views
Unable to make tomcat log basic 404 type error messages
I need the log where tomcat puts 404 type errors.
I am using: tomcat 6 on Centos 5.2
I have been getting 404 errors in applications deployed on tomcat. I was unable to find the logs where tomcat puts ...
0
votes
1answer
47 views
Is there a web browser that automatically looks for an /images directory? [closed]
In my error log there are a bunch of lines like this (line breaks added for legibility):
[Thu Jul 15 22:20:14 2010] [error] [client 76.199.65.55]
File does not exist: ...
0
votes
2answers
190 views
My domain is returning a 500 error, where can I find an error log, or how can I resolve the problem?
I'm currently getting a 500 error (apparently) on ballpointhosting.com, even though I'm sure I've configured it correctly. Where can I find my error log on Linux?
Willing to provide more details if ...
0
votes
4answers
685 views
PHP create huge errors file on my server feof() fread()
I have a script that allows users to 'save as' a pdf, this is the script -
<?php
header("Content-Type: application/octet-stream");
$file = $_GET["file"] .".pdf";
header("Content-Disposition: ...
0
votes
1answer
465 views
How can I stop the Apache server creating error_log files?
Is there a way to stop Apache creating error_log files using .htaccess ?
0
votes
1answer
651 views
PHP error_log & includes not working
So, my problem is as follows. This code works fine when I load the page via the web browser. But when I run the script from the command line like so: "php script.php" it bombs.
script.php is:
...
-1
votes
2answers
248 views
Creating Error log in wpf application
I am creating a wpf application and in which i have to create a error log file for my application.
How can i create automatically error log file in specific folder in date wise in wpf?
In web we ...