Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Installing php 4 on winxp with apache

Status
Not open for further replies.

Stovio

Programmer
Mar 20, 2002
30
SE
I have some problem installing php 4.3.1 on winxp with an apache 1.3.27 web server. Apache seems to work fine (i installed it just now as well), i can see the default index.html file from htdocs by the url When i try accessing (a file located in C:\Apache\htdocs containing only &quot;<? phpinfo() ?>&quot; i fail however. The apache error message is &quot;Not Found. The requested URL /php4/php.exe/phpinfo.php was not found on this server.&quot;

php.exe, php4ts.dll and php4apache.dll is located at C:\php4\php-4.3.1-Win32. The tutorial im following suggested moving php4ts.dll and a file named Msvcrt.dll to the windows\system directory. I couldn't find Msvcrt.dll and the install.txt file included in the php package did not mention it. It also suggested that i let php4ts.dll stay in the /PHP4/ directory and copied php4apache.dll there from the sapi directory, so i did.

I renamed the php.ini-dist file to php.ini, moved it to c:\windows made these changes:
extension_dir = &quot;C:\php4\php-4.3.1-Win32&quot;

I have added these changes to the apache\conf\httpd.conf file:

ScriptAlias /php4/ &quot;C:/php4/php-4.3.1-Win32&quot;

AddType application/x-httpd-php .php .phtml
AddType application/x-httpd-php-source .phps

Action application/x-httpd-php /php4/php.exe

All changes has been made acording to a tutorial i'm following. What might be wrong? The url submitted by apache in its error message looks a bit odd i think. /php4/php.exe/phpinfo.php is of course not a correct path or is it written like that to indicate that phpinfo.php is interpreted by php.exe?

I'm thankfull for any help.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top