Imark Posted July 11, 2006 Share Posted July 11, 2006 I installed the PHPDev5 package with PHP, Apache, MySQL and what not.I put a "Hello world!" in the www directory like this:[code]<html> <head> <title>PHP Test</title> </head> <body> <?php echo '<p>Hello World</p>'; ?></body></html>[/code]Now, when I go to this file, "hello.php", it doesn't get parsed. In Firefox, I get the whole source like above, displayed back on the page. In IE, I just get an empty page, though the page title does get changed to "PHP Test."I can't figure oput what the problem is. Can anyone help? Quote Link to comment Share on other sites More sharing options...
effigy Posted July 11, 2006 Share Posted July 11, 2006 Apache needs to be instructed to parse php. Below are common additions to Apache's configuration file:[code]LoadModule php5_module modules/libphp5.so # Windows uses a dll.AddType application/x-httpd-php .phpAddType application/x-httpd-php-source .phpsDirectoryIndex index.php index.html[/code] Quote Link to comment Share on other sites More sharing options...
Imark Posted July 11, 2006 Author Share Posted July 11, 2006 What exactly do I have to do?Which files in the Apache directory do I need to edit, and how should I edit them?The package I installed should have had everything pre-configured -- it would be very strange if I had to instruct Apache to parse PHP. Quote Link to comment Share on other sites More sharing options...
effigy Posted July 11, 2006 Share Posted July 11, 2006 I can't speak for packages--I don't use them. You may want to try reading its documentation or contacting someone associated with it. The manual way, if everything was installed properly, is to edit httpd.conf in the conf directory of Apache. You can use notepad to add these directives to it, then restart the server. Quote Link to comment Share on other sites More sharing options...
Imark Posted July 11, 2006 Author Share Posted July 11, 2006 httpd.conf is a binary file -- you cant just paste a few lines into it.Is it easy to set everything up, if I'd be installing it manually?And will it be easy to configure the same Apache server to use with Java? Quote Link to comment Share on other sites More sharing options...
effigy Posted July 11, 2006 Share Posted July 11, 2006 Every httpd.conf I've worked with has been ASCII, and this is how they are delivered with Apache. A basic setup is fairly easy; you can find a slew of tutorials on the web. I assume you're on Windows? I've never used Java with Apache--I think this is called Apache Tomcat. Quote Link to comment Share on other sites More sharing options...
Imark Posted July 11, 2006 Author Share Posted July 11, 2006 I am on Windows. My httpd.conf is a binary file, and I can't even touch it.I heard the name Tomcat, and I'm wondering if it's an Apache version that can be used both for PHP and Java? [/wild guess] Quote Link to comment Share on other sites More sharing options...
effigy Posted July 11, 2006 Share Posted July 11, 2006 I haven't done as many Windows installs as Unix, but they have been very easy. You might want to try it. As for the configuration file, perhaps your package did something to it. You can research Tomcat further at http://www.apache.org. Quote Link to comment Share on other sites More sharing options...
kenrbnsn Posted July 11, 2006 Share Posted July 11, 2006 How are you invoking the script? Are you double clicking the file or typing URL http://localhost/hello.phpIf you're double clicking, that is your problem. PHP needs to be processed by the web server, when you double click, the script is interpreted by the browser directly and the server is not invoked.Ken Quote Link to comment Share on other sites More sharing options...
Imark Posted July 19, 2006 Author Share Posted July 19, 2006 Thanks, guys.I figured out what the problem was. It has nothing to do with php or apache, and it's embarassing :-[My Windows, by default, didn't show the extentions for known file types. When I saved my hello.php in Notepad, Windows saved it as hello.php.txt, without letting me know. That's how Apache didn't get to parse it -- because it didn't see it as a PHP file. 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.