0
votes
0answers
43 views

How do I enable PHP FastCGI for apache on debian squeeze?

I would like to enable FastCGI on my server to enable PHP slow logging. I installed it so far after this tutorial: How To Set Up Apache2 With mod_fcgid And PHP5 On Debian Squeeze. But since I have ...
0
votes
0answers
41 views

How can I enable error logging and where are the errors logs for IIS 8?

I would like to capture php errors and http errors. I've enabled error logging in PHP, but I do not see where in IIS 8 I can enable errors. Is this possible to do? Thank you for your guidance.
0
votes
1answer
21 views

aegir nginx logging

I'm a developer rather than a sysadmin by trade. I'm working on a drupal site that's been installed with aegir which is clearly dying part-way through loading several drupal pages. I reckon there's a ...
-1
votes
1answer
157 views

WAMP fails to start after setting error_log [closed]

I had WAMP running with PHP 5.2. PHP errors where written to it's own log file. I then swapped to PHP 5.3 and the errors where written to the Apache log. I found that php.ini had not set an error_log ...
-1
votes
1answer
28 views

error_log getting huge

Recently updated PHP from 5.3 to 5.4 and my error_log is getting really huge growing up about 100MB/minute. I can see that it contains all types of errors including E_NOTICE and E_STRICT. What do I ...
0
votes
1answer
128 views

Apache Virtualhosts with PHP and custom logs - how to isolate PHP errors?

I'm trying to setup a simple hosting enviroment for my application on an Ubuntu server. I created a virtualhost like this: <VirtualHost *:80> ServerAdmin info@example.org ...
0
votes
3answers
57 views

Preventing error_log flooding

Is there a way to have httpd/php stop logging errors if they are repeating over and over again to prevent flooding? Currently the /usr/local/apache/logs/error_log file is getting flooded and would ...
1
vote
2answers
495 views

Apache error log: Unable to create ~/.gnome2 directory: Permission denied

I'm seeing a few of these messages in the Apache error log (/var/log/httpd/error_log) at the rate of about one per half hour, often in small batches: (process:23210): libgnomevfs-WARNING **: Unable ...
1
vote
0answers
86 views

IIS7.5 PHP not logging errors in subdirectories

I'm working with win7, IIS7.5, php 5.2.17 now, and I have a problem with the php error logging: Error logging works well as long as the entry point (called php file) is not in a subdirectory of the ...
0
votes
1answer
249 views

how to stop DEPRECATED errors showing in the server log

Below is some configurations in my php.ini error_reporting = E_ALL & ~E_DEPRECATED display_errors = Off log_errors = On I get a lot of Deprecated errors, in my error log, which I wanted to ...
0
votes
0answers
364 views

Where is my PHP log for default PHP installation in Mac 10.6.8?

I can't seem to get my PHP log working, despite having error_log set in php.ini, ln. 636. Here's my php.ini file: https://gist.github.com/1057384 And my http.conf file: ...
0
votes
1answer
71 views

Messages in PHP log missing normal information

I have PHP configured to use a log file directly (i.e. not using syslog). I'm noticing that I occasionally get very strange messages that lack the normal PHP logging information. Normally a PHP log ...
7
votes
2answers
7k views

Apache error log with PHP errors

I just set up PHP and Apache and would like to find where the errors are going. What is the default path of the error logs in apache for PHP?
2
votes
1answer
613 views

PHP 5.3 Not Logging

I have set error_log = "/var/log/apache2/php_errors.log" and made sure errors were being logged. I have set the file to be owned by the www-data owner and group and even set the permissions to 777. I ...
1
vote
1answer
2k views

How Do I rotate the PHP Error Log?

This is actually a two part question. I've got a LAMP configuration and a web site that relies heavily on the error_log functionality built into PHP. The error log is growing rather large in size. ...
0
votes
1answer
63 views

Apache configuration to accept all data

I have apache running on port 7979 to talk with a device that sends data to webserver and later will run php scripts to process and send reply xml. The problem now is that it sends data like POST ...