I wrote earlier and got an answer to question, but I just seem to be stumped. I'm installing PHP 4.3.0 on a FreeBSD server running Apache 2.44 as a module.
I've gone through all of the installation steps verbatim at the PHP site and a few of the recommended installation sites. I've done the following: 1. Apache is installed correctly with mod_so 2. I've correctly done the following configure commands with no errors: ./configure \ --with-apxs2=/usr/local/apache/bin/apxs \ --with-mysql \ --prefix=/usr/local/apache/php \ --with-config-file-path=/usr/local/apache/php \ --enable-track-vars \ --enable-force-cgi-redirect \ --disable-cgi \ --with-zlib \ makemake install3. I copied the libphp4.so to the modules directory in Apache4. Copied the php.ini file to /usr/local/apache/php5. Added the following lines to my httpd.conf file. LoadModule php4_module modules/libphp4.so AddType application/x-httpd-php php <Files *.php> SetOutputFilter PHP SetInputFilter PHP </Files> # PHP Syntax Coloring (recommended): AddType application/x-httpd-php-source phps <Files *.phps> SetOutputFilter PHP SetInputFilter PHP </Files>6. Completely stopped and restarted Apache7. Tried rebooting the serverAfter all of this with no errors, I still can't get a simple php file to display the phpinfo() function. Anybody have any ideas what I'm doing wrong or forgetting to do? It's ok to not assume the obvious. I'm still sort of a newbie. Thanks!Jacob Bolton -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php