twomix Posted April 12, 2006 Share Posted April 12, 2006 Hi all,This is my first post. I am having trouble getting php to work with apache. I am currently running FC3. Originally, I was using the built-in apache and php packages installed. I decided to learn how to compile from source, so I uninstalled apache, php and mysql rpm packages. I first downloaded and installed the latest mysql (5, I believe), and tested that it worked by connecting to the database.Then I installed the latest apache (2) with these settings - ./configure --prefix=/usr/local/apache --enable-rule=EAPI --enable-module=most --enable-module=so --enable-ssl --enable-rewriteThen I installed the latest php (5) with these settings - ./configure --with-mysql=/usr/local/mysql --with-xml --enable-track-vars --with-apxs2=/usr/local/apache/bin/apxs --with-mysql-sock=/var/lib/mysqlI then copied php.ini-dist from the source directory to /etc/php.ini, Added in ServerRoot, Document Root, Directory, DirectoryIndex directives, LoadModule php5_module /usr/local/apache/modules/libphp5.so, LoadModule perl_module /usr/local/apache/modules/libperl.so, AddType application/x-httpd-php .php .phtml into my httpd.conf file.I restarted apache using apachectl, and proceeded to the website, but all I see is code. I also created a test.php file, which displayed the code as well. Here is my test.php file:<?echo("<h1>PHP and Apache Works!</h1>");?>Please tell me what I am doing wrong. Thanks in advance!twomix Quote Link to comment Share on other sites More sharing options...
twomix Posted April 12, 2006 Author Share Posted April 12, 2006 Figured out what was wrong. Apache was pointing to the wrong conf file, so the changes I made had no effect. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.