
May 24th, 2000, 03:53 AM
|
|
Contributing User
|
|
Join Date: Sep 1999
Location: Denmark
Posts: 83
Time spent in forums: < 1 sec
Reputation Power: 14
|
|
|
Ok, I have done this a 100 times, but this time.....
Setting up php3 and apache on a win98.
Apache was not a problem, but when I try to access a php3 file I recive this:
Not Found
The requested URL /php/php.exe/no1/view_message.php3 was not found on this server.
Apache/1.3.12 Server at 127.0.0.1 Port 80
-----------------
My configuration is this:
apache is located in:
c:angiesapache
php in:
c:angiesphp
In the httpd.conf I alterd these lines:
ServerRoot "c:/angies/apache"
DocumentRoot "c:/angies/html/"
# This should be changed to whatever you set DocumentRoot to.
#
<Directory "c:/angies/html/">
UserDir "c:/angies/html/"
Alias /icons/ "c:/angies/icons/"
ScriptAlias /php3/ "c:/angies/php/"
<Directory "C:/angies/cgi-bin">
AllowOverride None
Options None
</Directory>
AddType application/x-httpd-php3 .phtml
AddType application/x-httpd-php3-source .phps
AddType application/x-httpd-php3 .php3
Action application/x-httpd-php3 "/php/php.exe"
----------------
In php.ini:
;;;;;;;;;;;;;;;;;;;;;;;;;
; Paths and Directories ;
;;;;;;;;;;;;;;;;;;;;;;;;;
include_path =
doc_root = c:/angies/html/
user_dir = c:/angies/html/
;upload_tmp_dir =
upload_max_filesize = 2097152
extension_dir = c:/angies/php/
--------------------------------------------
I have moved the *.dll files to the windowssystem directory, leaving the ones starting with php_ in the php directory.
I have moved the php.ini to the windows directory.
--------------------------------------------
This shold work, but it dos not.
-anyone?-
------------------
regds..
-ulrik-
|