Page 1 of 1

How to deploy php applications in apache2

Posted: Tue Aug 19, 2008 5:14 am
by kranthi
Hi
I am new to php .I installed php5.2.6 and apache2 in my computer. I configured httpd.conf of apache2 to recognize the php5.2.6 engine. Now i want to know, how to deploy php applications in apache2. I searched for this in google :? but was not able to find a link containing the proper procedure. Please help me.
Thanks

Re: How to deploy php applications in apache2

Posted: Tue Aug 19, 2008 8:19 am
by shiznatix
well if you have your apache server running just create a index.php file in your root directory and do something like:

Code: Select all

<?php echo 'hello world!';
if you see "hello world!" when you go to your server then you are ready to go!