FIX:
Ich habe es behoben, indem ich .htaccess im Verzeichnis / var / www / owncloud editierte
Einfach hinzufügen
RewriteBase /owncloud
über
RewriteRule .* - [env=HTTP_AUTHORIZATION:%]
das hat es für mich behoben
Ich habe folgendes Problem:
Nachdem ich meine OwnCloud von 8.2.2 auf 9 aktualisiert habe, ist mein Apache2 Config möglicherweise abgestürzt. Wenn ich also versuche, myserver.com/owncloud zu öffnen, heißt es:
Nicht gefunden
Die angeforderte URL /var/www/owncloud/index.php wurde auf diesem Server nicht gefunden.
Apache / 2.4.10 (Debian) Server unter Port 80 von myserver.com
Es ist verwirrend, weil in Apache confs-available / confs-enabled eine Datei für owncloud vorhanden ist:
Alias /owncloud "/var/www/owncloud/" <Directory /var/www/owncloud> Options +FollowSymLinks AllowOverride All <IfModule mod_dav.c> Dav off </IfModule> SetEnv HOME /var/www/owncloud SetEnv HTTP_HOME /var/www/owncloud </Directory>
hat jemand eine Lösung?
FIX:
Ich habe es behoben, indem ich .htaccess im Verzeichnis / var / www / owncloud editierte
Einfach hinzufügen
RewriteBase /owncloud
über
RewriteRule .* - [env=HTTP_AUTHORIZATION:%]
das hat es für mich behoben
Ich bestätige, dass dies auch bei Neuinstallationen von OwnCloud 9 unter Ubuntu & Debian der Fall ist. Ich hatte diese Woche keine Zeit, dieses Problem zu beheben, aber ich vermute, dass in der .htaccess-Datei im Verzeichnis / var / www / owncloud ein Fehler vorliegt.
Hoffentlich kann jemand das Problem lokalisieren und hier posten.
The above fix worked for me. However my upgrade was still in maintenance mode from the upgrade that probably caused this. I had to go edit the config.php to turn off maintenance mode.
$ sudo nano /var/www/owncloud/config/config.php
I also then restarted apache2
$ sudo service apache2 restart
then I could finish the upgrade and all looks well now. Thanks again for the tip!