Hi folks, I wonder can anyone out there help me with my problem....
I'm trying to install PHP3 on a linux system (v5.0, I think) with Apache 1.3.9.
copied php-3.0.16.tar.gz to /usr/local/src/ gunzip and untarred here.
editted /usr/sbin/apxs with the following changes:
my $CFG_LDFLAGS_SHLIB = q(-shared); # substituted via Makefile.tmpl
my $CFG_LIBEXECDIR = '/usr/lib/apache'; #substituted via APACI install
ran ./configure --with-apxs=/usr/sbin/apxs --with-mysql --with-xml
did make, then make install
all looked okay until here.
ran /etc/rc.d/init.d/httpd start (server was already stopped)
did ps -aef | grep httpd and got:
..... tail -f /var/log/httpd/error_log
..... grep httpd
ie, the server wasn't running.
the error_log had the following contents:
PHP Warning: Function registration failed - duplicate name - define in Unknown on line 0
PHP Warning: Function registration failed - duplicate name - defined in Unknown on line 0
PHP Warning: Function registration failed - duplicate name - each in Unknown on line 0
PHP Warning: Function registration failed - duplicate name - strlen in Unknown on line 0
PHP Warning: Function registration failed - duplicate name - strcmp in Unknown on line 0
PHP Warning: Function registration failed - duplicate name - strcasecmp in Unknown on line 0
PHP Warning: Function registration failed - duplicate name - error_reporting in Unknown on line 0
PHP Warning: Function registration failed - duplicate name - leak in Unknown on line 0
PHP Warning: Function registration failed - duplicate name - function_exists in Unknown on line 0
PHP Warning: Basic Functions: Unable to register functions, unable to load in Unknown on line 0
...... which doesn't really tell me much.
Anyone have any idea what I've done wrong?
TIA,
Colin