C:\php4
C:\windows
php.ini
php4ts.dll
Here are the entries that I have in my php.ini file
; Directory in which the loadable extensions (modules) reside.
extension_dir = "c:\php4\windows"
; The root of the PHP pages, used only if nonempty.
; if PHP was not compiled with FORCE_REDIRECT, you SHOULD set doc_root
; if you are running php as a CGI under any web server (other than IIS)
; see documentation for security issues. The alternate is to use the
; cgi.force_redirect configuration below
doc_root = "C:/Program Files/Apache Group/Apache/htdocs"
Here is the httpd config file
#
# DocumentRoot: The directory out of which you will serve your
# documents. By default, all requests are taken from this directory, but
# symbolic links and aliases may be used to point to other locations.
#
DocumentRoot "C:/Program Files/Apache Group/Apache/htdocs"
# AddType allows you to tweak mime.types without actually editing it, or to
# make certain files to be certain types.
#
AddType application/x-tar .tgz
ScriptAlias /php4/ "C:/php4win/"
AddType application/x-httpd-php .php
AddType application/x-httpd-php .php3
AddType application/x-httpd-php .php4
Action application/x-httpd-php "/php4/php.exe"
# ServerRoot: The top of the directory tree under which the server's
# configuration, error, and log files are kept.
#
ServerRoot "C:/Program Files/Apache Group/Apache"
LoadModule php4_module c:/php/sapi/php4apache.dll
AddModule mod_setenvif.c
AddModule mod_php4.c
The reason I put this AddModule mod_setenvif.c in my post is to show you where I placed the line it said to place in this file. The directions that I was using said to place AddModule mod_php4.c under it so that is where I placed it. I hope this isn’t to confusing this is the best way I could be as detailed as possible.
Any help will be greatly appreciated. TIA