Donnerstag, 7. November 2013

Fehler bei der Instalation Hilfe dess Webinstallers von Owncloud auf einem Mittwald Server - Lösung

Folgende Fehler traten bei mir bei Schritt 2 des Webinstallers von Owncloud auf:
Warning: rename(tmp-owncloud1383827342/owncloud,./owncloud) [function.rename]: No such file or directory in /html/fileadmin/owncloud/setup-owncloud.php on line 108


Error

ownCloud is NOT installed
download of ownCloud source file failed.
error setting certificate verify locations: CAfile: /etc/ssl/certs/ca-bundle.crt CApath: none error setting certificate verify locations: CAfile: /etc/ssl/certs/ca-bundle.crt CApath: none




Das Problem ließ sich durch folgende Einträge in der setup-owncloud.php beheben:

curl_setopt($ch, CURLOPT_CERTINFO, TRUE);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, TRUE);

ändern in
curl_setopt($ch, CURLOPT_CERTINFO, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);


Gefunden auf:
https://forum.owncloud.org/viewtopic.php?t=9943&p=24665#p24670

Keine Kommentare:

Kommentar veröffentlichen