• Willkommen im Linux Club - dem deutschsprachigen Supportforum für GNU/Linux. Registriere dich kostenlos, um alle Inhalte zu sehen und Fragen zu stellen.

mediawiki: index.php funzt nicht

Hallo Leute,

ich habe mir apache, mysql und mediawiki installiert.
Unter /srv/www/htdocs liegt ein Test-html, das auch mit http://localhost
angezeigt wird.
Unter /srv/www/htdocs/mediawiki/config liegt eine index.php zum
Einrichten des Wiki. Dies wird nicht angezeigt (Error 403).
Ich habe auf dem htdocs rekursiv lese und Schreibrechte.

Nur warum kann ich die index.php nicht ausführen?
Hat jemand eine Idee?
 
Der Zugriff wird auf das Verzeichnis verweigert. Lege in deiner Konfiguration mit der "Directory" Direktive eine Konfiguration für das Mediawiki an. Dabei kannst du dich an der Direktiven für das htdocs Verzeichnis orientieren.

Wichtig:

Der
Code:
OrderDeny
Eintrag muss den Wert
Code:
denyy,allow
haben sonst bekommst du die selbe Meldung wieder.
 
Habs gefunden. Momentan steht in der Config:


DocumentRoot "/srv/www/htdocs"

#
# Configure the DocumentRoot
#
<Directory "/srv/www/htdocs">
# Possible values for the Options directive are "None", "All",
# or any combination of:
# Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
#
# Note that "MultiViews" must be named *explicitly* --- "Options All"
# doesn't give it to you.
#
# The Options directive is both complicated and important. Please see
# http://httpd.apache.org/docs-2.2/mod/core.html#options
# for more information.
Options None
# AllowOverride controls what directives may be placed in .htaccess files.
# It can be "All", "None", or any combination of the keywords:
# Options FileInfo AuthConfig Limit
AllowOverride None
# Controls who can get stuff from this server.
Order allow,deny
Allow from all
</Directory>
 
Hallo,

das Problem ist gelöst. Ich vergaß ein "chmod a+w config" zu machen. Jetzt läuft alles sauber durch.
 
Oben