I want to configure PHP5 on apache2.2 server.

I added

LoadModule php5_module "c:/php/php5apache2_2.dll"
AddHandler application/x-httpd-php.php
# configure the path to php.ini
#PHPIniDir "c:/php"

these lines on my apache httpd.conf file. But it is not restarting apache server.

What is the problem? Can anybody help me?

link|improve this question
What do you mean by "is not restarting" - does it crash when you try to restart it? If yes, there should be an error in error.log telling you more – Pekka Jul 1 '11 at 7:14
feedback

migrated from stackoverflow.com Jul 1 '11 at 9:30

This question came from our site for professional and enthusiast programmers.

2 Answers

up vote 3 down vote accepted

You are missing the space after application/x-httpd-php

AddHandler application/x-httpd-php .php
link|improve this answer
Yes you are right. thanks a lot :) – learner Jul 1 '11 at 7:15
Hi how can we change htdoc folder out side of apache folder? – learner Jul 1 '11 at 7:23
feedback

Replace

application/x-httpd-php.php

by

application/x-httpd-php .php
link|improve this answer
thanks now its working fine ;) – learner Jul 1 '11 at 7:22
May I know how to change htdoc folder from apahce? – learner Jul 1 '11 at 7:22
What do you mean "from Apache"? Web interface? Using web-based file manager like PHPfileNavigator or by hosting administration system (webmin, cPanel...). – sorx00 Jul 1 '11 at 14:58
feedback

Your Answer

 
or
required, but never shown