Hello
I am totaly green on this matter, I just wantet to learn moore about php-programming and I therefore have sat up an apache server on my laptop.
The machine runs on W2k, and I have been able to make the apace to run, i am able to reach the startpage from the command line by using " so i am on the right track.
But now I am trying to make me an userlibrary, and i have created the directory:
C:\DATA\My Website
The "my documents" folder also is redirected to c:\data.
In that i have put a folder called "gunnien" that contains my wevside. This one I want to reach by using this address in my browser:
but now I just gets this errormessage:
Not Found
The requested URL /~gunnien was not found on this server.
Apache/2.0.43 Server at localhost Port 80
And here is my configurationfile:
# UserDir: The name of the directory that is appended onto a user's home
# directory if a ~user request is received. Be especially careful to use
# proper, forward slashes here.
#
UserDir "My Documents/My Website"
UserDir "My Website"
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
# You must correct the path for the root to match your system's configured
# user directory location, e.g. "C:/WinNT/profiles/*/My Documents/My Website"
# or whichever, as appropriate.
#
#<Directory "C:/Documents and Settings/*/My Documents/My Website">
# AllowOverride FileInfo AuthConfig Limit
# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
# <Limit GET POST OPTIONS PROPFIND>
# Order allow,deny
# Allow from all
# </Limit>
# <LimitExcept GET POST OPTIONS PROPFIND>
# Order deny,allow
# Deny from all
# </LimitExcept>
#</Directory>
<Directory "C:/DATA/My Website">
AllowOverride FileInfo AuthConfig Limit
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
I have tryed to use both C:/documents and setting.... and C:/data.... but the result was the same with both.
Anyone out there who can give me a step by step description of how to configure the server to let me access my userdirectory?
Gunnien
I am totaly green on this matter, I just wantet to learn moore about php-programming and I therefore have sat up an apache server on my laptop.
The machine runs on W2k, and I have been able to make the apace to run, i am able to reach the startpage from the command line by using " so i am on the right track.
But now I am trying to make me an userlibrary, and i have created the directory:
C:\DATA\My Website
The "my documents" folder also is redirected to c:\data.
In that i have put a folder called "gunnien" that contains my wevside. This one I want to reach by using this address in my browser:
but now I just gets this errormessage:
Not Found
The requested URL /~gunnien was not found on this server.
Apache/2.0.43 Server at localhost Port 80
And here is my configurationfile:
# UserDir: The name of the directory that is appended onto a user's home
# directory if a ~user request is received. Be especially careful to use
# proper, forward slashes here.
#
UserDir "My Documents/My Website"
UserDir "My Website"
#
# Control access to UserDir directories. The following is an example
# for a site where these directories are restricted to read-only.
#
# You must correct the path for the root to match your system's configured
# user directory location, e.g. "C:/WinNT/profiles/*/My Documents/My Website"
# or whichever, as appropriate.
#
#<Directory "C:/Documents and Settings/*/My Documents/My Website">
# AllowOverride FileInfo AuthConfig Limit
# Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
# <Limit GET POST OPTIONS PROPFIND>
# Order allow,deny
# Allow from all
# </Limit>
# <LimitExcept GET POST OPTIONS PROPFIND>
# Order deny,allow
# Deny from all
# </LimitExcept>
#</Directory>
<Directory "C:/DATA/My Website">
AllowOverride FileInfo AuthConfig Limit
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
I have tryed to use both C:/documents and setting.... and C:/data.... but the result was the same with both.
Anyone out there who can give me a step by step description of how to configure the server to let me access my userdirectory?
Gunnien