On Friday 13 February 2004 03:19, [EMAIL PROTECTED] wrote: > I just know how to reconfigure php installation with --ftp-enable. I > already did a ./configure --ftp-enable command but when echo the > phpinfo() hust to see if its been updated, its still showing > ./configure' '--with-mysql' '--with-apxs=/www/bin/apxs' on the configure > command.
Everytime you use ./configure it 'reconfigures' php from scratch. Meaning you have to specify every option you need/don't need. Thus in your case you would probably want to do: ./configure --with-mysql --with-apxs=/www/bin/apxs --enable-ftp Then you need to compile: make Then stop your webserver and install the newly compiled php: make install Then start your webserver. -- Jason Wong -> Gremlins Associates -> www.gremlins.biz Open Source Software Systems Integrators * Web Design & Hosting * Internet & Intranet Applications Development * ------------------------------------------ Search the list archives before you post http://marc.theaimsgroup.com/?l=php-general ------------------------------------------ /* Rebellion lay in his way, and he found it. -- William Shakespeare, "Henry IV" */ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php