Hallo,
ich versuche seit einiger Zeit Pydio auf OpenSuse 13.1 zum laufen zu bringen. Mittlerweile funktioniert es auch, doch es gibt noch ein Fehler.
Immer wenn man die Seite neu lädt (F5) kommt ein 403, 404 oder 405 Error. Komischer Weise funktioniert es mit dem IE 9 nur mit allen anderen Browsern nicht.
Ob ein 403, 404 oder 500 Error kommt hängt davon ab ob ich in der Datei “/etc/apache2/default-server.conf” bei der Option “AllowOverride” “None” “All” oder “Options” angebe.
Nun meine Frage wie bekomme ich es hin das die Seite nach den Neu Laden wieder angezeigt bekomme?
Ich poste mal den Inhalt von “default-server.conf” und der “.htaccess” in “/srv/www/htdocs” wo Pydio liegt.
default-server.conf directory:
<Directory "/srv/www/htdocs">
Options None
AllowOverride All
Order allow,deny
Allow from all
</Directory>
In der default-server.conf steht natürlich noch mehr aber ich habe erstmal das gepostet wo ich etwas geändert hab.
.htaccess:
# You must set the correct values here if you want
# to enable webDAV sharing. The values assume that your
# Pydio installation is at http://yourdomain/
# and that you want the webDAV shares to be accessible via
# http://yourdomain/shares/repository_id/
RewriteEngine on
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^shares ./dav.php [L]
RewriteRule ^api ./rest.php [L]
RewriteRule ^user ./index.php?get_action=user_access_point [L]
RewriteCond %{REQUEST_URI} !^/index
RewriteCond %{REQUEST_URI} !^/plugins
RewriteCond %{REQUEST_URI} ^/dashboard|^/settings|^/welcome|^/ws-
RewriteRule (.*) index.php [L]
#Following lines seem to be necessary if PHP is working
#with apache as CGI or FCGI. Just remove the #
#See http://doc.tiki.org/WebDAV#Note_about_Apache_with_PHP_as_fcgi_or_cgi
#RewriteCond %{HTTP:Authorization} ^(.*)
#RewriteRule ^(.*) - [E=HTTP_AUTHORIZATION:%1]
Vielen Dank schonmal im Vorraus,
jofri