Hi folks
I've got a LAPPP (Linux Apache Postgresql PHP Perl) app running on a FC4 system which has been running fine.
Yesterday I ran a 'yum update' which included httpd and now I'm having problems.
In my php.ini I have
error_reporting = E_ALL | E_STRICT | E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE log_errors = 1 error_log = /var/log/httpd/php
which had the effect of logging all errors and warnings to a single file. How PHP errors are going to each virtualhost's errorlog file.
Also I have a PHP upload script that then calls a perl backend to process the uploaded file:
system("/home/httpd/bin/walon $uploadfile >/var/log/httpd/walon 2>&1 &");
The system call now fails and the program doesn't start. I've checked the file timestamps and none of the config files has been touched. Has anyone got any ideas why this has happened, especially as php wasn't updated.
On Fri, 2006-08-04 at 15:29 +0100, Gary Stainburn wrote:
Hi folks
I've got a LAPPP (Linux Apache Postgresql PHP Perl) app running on a FC4 system which has been running fine.
Yesterday I ran a 'yum update' which included httpd and now I'm having problems.
In my php.ini I have
error_reporting = E_ALL | E_STRICT | E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE log_errors = 1 error_log = /var/log/httpd/php
if you're using apache 2.2.2 with the thread based worker model, then php is broken
erich
I'm using the following rpms:
httpd-2.0.54-10.4 httpd-manual-2.0.54-10.4 system-config-httpd-1.3.2-2 php-pear-5.0.4-10.5 php-mbstring-5.0.4-10.5 php-5.0.4-10.5 php-ldap-5.0.4-10.5 php-pgsql-5.0.4-10.5
Only httpd and httpd-manual were updated yesterday.
Gary
On Friday 04 August 2006 15:41, Erich Carlson wrote:
On Fri, 2006-08-04 at 15:29 +0100, Gary Stainburn wrote:
Hi folks
I've got a LAPPP (Linux Apache Postgresql PHP Perl) app running on a FC4 system which has been running fine.
Yesterday I ran a 'yum update' which included httpd and now I'm having problems.
In my php.ini I have
error_reporting = E_ALL | E_STRICT | E_USER_ERROR | E_USER_WARNING | E_USER_NOTICE log_errors = 1 error_log = /var/log/httpd/php
if you're using apache 2.2.2 with the thread based worker model, then php is broken
erich