How to deploy php applications in apache2

Ye' old general discussion board. Basically, for everything that isn't covered elsewhere. Come here to shoot the breeze, shoot your mouth off, or whatever suits your fancy.
This forum is not for asking programming related questions.

Moderator: General Moderators

Post Reply
kranthi
Forum Newbie
Posts: 1
Joined: Tue Aug 19, 2008 5:08 am

How to deploy php applications in apache2

Post 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
User avatar
shiznatix
DevNet Master
Posts: 2745
Joined: Tue Dec 28, 2004 5:57 pm
Location: Tallinn, Estonia
Contact:

Re: How to deploy php applications in apache2

Post 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!
Post Reply