Page 1 of 1

error 403 Access forbidden!

PostPosted: 12. June 2007 20:43
by dotti
I keep recieving this error
Access forbidden!

You don't have permission to access the requested object. It is either read-protected or not readable by the server.

If you think this is a server error, please contact the webmaster.
Error 403
localhost
06/12/07 20:42:21
Apache/2.2.4 (Win32) DAV/2 mod_ssl/2.2.4 OpenSSL/0.9.8e mod_autoindex_color PHP/5.2.2


I just installed Xampp and mediawiki

PostPosted: 28. August 2008 16:17
by ninostar
I see that there are a few others that have same problem as I... can anyone help to solve this problem?

PostPosted: 28. August 2008 23:01
by glitzi85
Where did you install Mediawiki? Looks like you forgot to make a Directory-Entry in your httpd.conf with a Order-Directive.

Example:

If you installed XAMPP to C:\xampp, and put your Mediawiki installation to C:\mediawiki, you have to set it up like this in your httpd.conf:

Code: Select all
DocumentRoot C:/mediawiki

<Directory "C:/mediawiki">
   Order allow,deny
   allow from all
</Directory>


glitzi