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
ändern in
Gefunden 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
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);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, TRUE);
curl_setopt($ch, CURLOPT_CERTINFO, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
https://forum.owncloud.org/viewtopic.php?t=9943&p=24665#p24670