Re: [PHP-INSTALL] Problems installing PHP 5 with Apache 2

2005-05-17 Thread Petar Nedyalkov
On Monday 16 May 2005 23:53, StÃphane Bruno wrote: > Hello, > > I have apache 2.0.54 running on Fedora Core 1. I installed PHP5 with the > following command: > > ./configure --with-config-file-path=/etc --with-mysql=/usr/lib/mysql Add this: --with-apxs2=/usr/sbin/apxs > make > make install > > Th

Re: [PHP-INSTALL] Problems installing PHP 5 with Apache 2

2005-05-16 Thread Michael W.
I had a similar problem when installing PHP 5. libphp5.so is created by the compilation, but it is not created unless you tell it to. Add the following option to your ./configure command, and it should work: "--with-apxs2=/path/to/apache/bin/apxs" (minus the quotes). StÃphane Bruno wrote: Hell

[PHP-INSTALL] Problems installing PHP 5 with Apache 2

2005-05-16 Thread Stéphane Bruno
Hello, I have apache 2.0.54 running on Fedora Core 1. I installed PHP5 with the following command: ./configure --with-config-file-path=/etc --with-mysql=/usr/lib/mysql make make install The installation went well, and I added the following to httpd.conf: LoadModule php5_module libexec/libphp5.s