Howdy, Redhat is notorious for leaving out things, such as apxs. To get php working, you will most likely have to download apache, build it, and install it. Make sure you configure apache with --enable-so. After apache builds, do make install. And then, when configuring php, do ./configure --with-apxs2=/usr/local/apache2/bin/apxs That should work just fine. You can still have your old apache installed at the same time, just don't use it. Copy the config files from the old apache, and do /etc/init.d/httpd stop, then startup the other apache (probably /usr/local/apache2/bin/httpd), and php should be working perfectly -- Regards, Matthew Fonda On Sat, 2004-10-02 at 21:27, Robert Cummings wrote: > On Sun, 2004-10-03 at 00:05, Teng Wang wrote: > > I met with a problem when installing php5.0.0 on my Federo Core 2.0 system. > > > > I use the default settings: > > ./configure > > make > > make install > > > > Everything is ok, but when I test my phpinfo(),it always shows the > > 4.3.8 version. Yet, when I type the following command > > php -v > > to show the version of php, it's 5.0.0 > > > > What's the problem? Any kindly help would be appreciated. > > Where are you loading phpinfo()? If it is in browser then there's a good > chance you've only built the cgi/cli version and not the module. The > module version needs the --with-apxs flage enabled. > > Cheers, > Rob. > -- > .------------------------------------------------------------. > | InterJinn Application Framework - http://www.interjinn.com | > :------------------------------------------------------------: > | An application and templating framework for PHP. Boasting | > | a powerful, scalable system for accessing system services | > | such as forms, properties, sessions, and caches. InterJinn | > | also provides an extremely flexible architecture for | > | creating re-usable components quickly and easily. | > `------------------------------------------------------------' -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php