hello,
I'v installed php4 on win2000 by php installer.
I want to run php using apache server.to configure apache i know
to edit in hhtpd for
LoadModule php4_module "c:/Program Files/php/sapi/php4apache.dll"
AddType application/x-httpd-php .php
AddType application/x-httpd-php .php3
AddType application/x-httpd-php .phtml

but i'm not finding the file "sapi/php4apache.dll" bcz i'v installed php by installer.

Can anybody help me how to configre php?

    Try this instead of what you have

    ScriptAlias /php/ "c:/php/"
    AddType application/x-httpd-php .php
    Action application/x-httpd-php "/php/php.exe"

    You may need to change the location of PHP depending on where it is.

      Write a Reply...