vote up 1 vote down star

This has been asked 1000 times and I have browsed through the different posts before posting this but have not found an answer. As long as I have been prgramming with PHP, this have always been a nightmare to get working. Can someone please tell me what I am doing wrong here?

I have error_log set in the ini file along with error_reporting = E_ALL | E_STRICT

What else am I missing? This usually gave it to me. I want this set in the ini file and not in my scripts.

Another interesting thing that is happening is that when I purposfully try and throw an error in one of my scripts, Apache restarts over and over again.


This is my event log after one error. Loot at the timestamp

Wed Nov 04 19:34:23 2009] [notice] Apache/2.2.14 (Win32) PHP/5.3.0 configured -- resuming normal operations
[Wed Nov 04 19:34:23 2009] [notice] Server built: Sep 28 2009 22:41:08
[Wed Nov 04 19:34:23 2009] [notice] Parent: Created child process 1700
[Wed Nov 04 19:34:23 2009] [notice] Child 1700: Child process is running
[Wed Nov 04 19:34:23 2009] [notice] Child 3008: Released the start mutex
[Wed Nov 04 19:34:23 2009] [notice] Child 1700: Acquired the start mutex.
[Wed Nov 04 19:34:23 2009] [notice] Child 1700: Starting 64 worker threads.
[Wed Nov 04 19:34:23 2009] [notice] Child 1700: Starting thread to listen on port 80.
[Wed Nov 04 19:34:24 2009] [notice] Child 3008: All worker threads have exited.
[Wed Nov 04 19:34:24 2009] [notice] Child 3008: Child process is exiting
[Wed Nov 04 19:34:53 2009] [notice] Parent: child process exited with status 128 -- Restarting.
[Wed Nov 04 19:34:53 2009] [notice] Apache/2.2.14 (Win32) PHP/5.3.0 configured -- resuming normal operations
[Wed Nov 04 19:34:53 2009] [notice] Server built: Sep 28 2009 22:41:08
[Wed Nov 04 19:34:53 2009] [notice] Parent: Created child process 3656
[Wed Nov 04 19:34:53 2009] [notice] Child 3656: Child process is running
[Wed Nov 04 19:34:53 2009] [notice] Child 3656: Acquired the start mutex.
[Wed Nov 04 19:34:53 2009] [notice] Child 3656: Starting 64 worker threads.
[Wed Nov 04 19:34:53 2009] [notice] Child 3656: Starting thread to listen on port 80.
[Wed Nov 04 19:34:53 2009] [notice] Parent: child process exited with status 128 -- Restarting.
[Wed Nov 04 19:34:54 2009] [notice] Apache/2.2.14 (Win32) PHP/5.3.0 configured -- resuming normal operations
[Wed Nov 04 19:34:54 2009] [notice] Server built: Sep 28 2009 22:41:08
[Wed Nov 04 19:34:54 2009] [notice] Parent: Created child process 3980
[Wed Nov 04 19:34:54 2009] [notice] Child 3980: Child process is running
[Wed Nov 04 19:34:54 2009] [notice] Child 3980: Acquired the start mutex.
[Wed Nov 04 19:34:54 2009] [notice] Child 3980: Starting 64 worker threads.
[Wed Nov 04 19:34:54 2009] [notice] Child 3980: Starting thread to listen on port 80.
[Wed Nov 04 19:34:54 2009] [notice] Parent: child process exited with status 128 -- Restarting.
[Wed Nov 04 19:34:54 2009] [notice] Apache/2.2.14 (Win32) PHP/5.3.0 configured -- resuming normal operations
[Wed Nov 04 19:34:54 2009] [notice] Server built: Sep 28 2009 22:41:08
[Wed Nov 04 19:34:54 2009] [notice] Parent: Created child process 1600
[Wed Nov 04 19:34:54 2009] [notice] Child 1600: Child process is running
[Wed Nov 04 19:34:54 2009] [notice] Child 1600: Acquired the start mutex.
[Wed Nov 04 19:34:54 2009] [notice] Child 1600: Starting 64 worker threads.
[Wed Nov 04 19:34:54 2009] [notice] Child 1600: Starting thread to listen on port 80.
[Wed Nov 04 19:34:55 2009] [notice] Parent: child process exited with status 128 -- Restarting.
[Wed Nov 04 19:34:55 2009] [notice] Apache/2.2.14 (Win32) PHP/5.3.0 configured -- resuming normal operations
[Wed Nov 04 19:34:55 2009] [notice] Server built: Sep 28 2009 22:41:08
[Wed Nov 04 19:34:55 2009] [notice] Parent: Created child process 1068
[Wed Nov 04 19:34:55 2009] [notice] Child 1068: Child process is running
[Wed Nov 04 19:34:55 2009] [notice] Child 1068: Acquired the start mutex.
[Wed Nov 04 19:34:55 2009] [notice] Child 1068: Starting 64 worker threads.
[Wed Nov 04 19:34:55 2009] [notice] Child 1068: Starting thread to listen on port 80.
[Wed Nov 04 19:34:55 2009] [notice] Parent: child process exited with status 128 -- Restarting.
[Wed Nov 04 19:34:55 2009] [notice] Apache/2.2.14 (Win32) PHP/5.3.0 configured -- resuming normal operations
[Wed Nov 04 19:34:55 2009] [notice] Server built: Sep 28 2009 22:41:08
[Wed Nov 04 19:34:55 2009] [notice] Parent: Created child process 3220
[Wed Nov 04 19:34:56 2009] [notice] Child 3220: Child process is running
[Wed Nov 04 19:34:56 2009] [notice] Child 3220: Acquired the start mutex.
[Wed Nov 04 19:34:56 2009] [notice] Child 3220: Starting 64 worker threads.
[Wed Nov 04 19:34:56 2009] [notice] Child 3220: Starting thread to listen on port 80.
flag
Why the heck is everything down voted in this thread? – Justin Johnson Nov 5 at 3:51

5 Answers

vote up 0 vote down

If the error_log directive is set, the file will be used for recording php errors, when it is not set errors will be logged to the Apache log. Take a look at http://us3.php.net/manual/en/errorfunc.configuration.php#ini.error-log.

The error_log file and the directory it's in must be writable by the user that Apache is running under. If the file isn't being created, it's probably due to a permissions issue.

I don't know for sure why Apache would be crashing on you, but I'm guessing it's a permissions issue of some sort.

link|flag
PHP will create the file if it doesn't exist. – Álvaro G. Vicario Nov 19 at 8:57
I stand corrected, thanks. I've edited my answer. – bradym Nov 19 at 16:05
vote up 0 vote down

I don't understand why, but the error log is now working. Here is what I did. I gave up and commented back out the error_log directive and closed the ini file. I ran the script with the parse error to see of Apache would still crash and I got the PHP error in the log file. This is freaky because the ini file no longer has error_log enabled and my script is not using ini_set().

Does anyone have an explanation for this madness? Also, Apache no longer crashes.

link|flag
"Madness" is a pretty good explanation. – Justin Johnson Nov 5 at 5:12
vote up -1 vote down

Make sure that you set error_log to 'error_log' or 'error.log'.

In php.ini:

error_log = 'error_log'

In code:

ini_set('error_log','error_log'); // this defines the log file is output at the current directory

Since Apache crashes and if you're using Windows, you might want to check the event log to see why Apache crashed. Sometimes it might also be due to a simple fact like you did not give folder permissions to PHP to write log files.

Usual rule: comment before voting.

link|flag
1  
Hi Mauris. Are you saying that the name of the error log file must be called "error_log"? I don't think that's accurate because I am using on my host, a file called php and it is logging just fine. Besides, this way that you are suggecting would require me to add this to my script and I have stated already that I want this in my ini file. – Jim Nov 5 at 3:01
1  
Just to clarify, the issue I'm having is not with my host's php but my development machine here at home – Jim Nov 5 at 3:03
i meant if your php.ini on your home development machine is not set to this you will need to do so. – thephpdeveloper Nov 5 at 3:05
1  
because the default maybe pointing to a different file. e.g. in XAMPP, it is pointing to C:\xampp\....\error.log – thephpdeveloper Nov 5 at 3:06
1  
Mauris, this is the actual line from the ini file. error_log = 'C:/logs/error.log' – Jim Nov 5 at 3:07
show 17 more comments
vote up -1 vote down

Make sure and also set

display_errors = On

And try

 error_reporting(E_ALL);

In your code. Often times I include a runtime error config script that turns errors on when I'm developing, and turns them back off when I'm not. It looks something roughly like this:

if ($debugmode == 'on') {
    error_reporting(E_ALL); 
    ini_set("display_errors", 1);
}else { 
    error_reporting(0); 
    ini_set("display_errors", 0);
}

Hope this helps.

** I didn't read that correctly, you want to log errors instead of display, in that case Chaos' answer is what you're looking for.

link|flag
then please delete this post. – thephpdeveloper Nov 5 at 2:58
Hi Jeremy, thanks for the help. :) – Jim Nov 5 at 3:03
vote up 1 vote down

You also need to set log_errors = On.

link|flag
Hi Chaos, thanks. I already have that set to On. Am I missing anything else? – Jim Nov 5 at 2:55

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.