summaryrefslogtreecommitdiffstats
path: root/apps/files_external/ajax
diff options
context:
space:
mode:
authorBjörn Schießle <schiessle@owncloud.com>2013-06-12 10:37:09 +0200
committerBjörn Schießle <schiessle@owncloud.com>2013-06-12 10:37:09 +0200
commit519508736d03efd765e7985207f35195dd97e7ca (patch)
treea8021d2cc68279526909be9f11b329aebc05ad01 /apps/files_external/ajax
parentde5eed4fb0363855da47b93fa94ad03e13bd7159 (diff)
downloadnextcloud-server-519508736d03efd765e7985207f35195dd97e7ca.tar.gz
nextcloud-server-519508736d03efd765e7985207f35195dd97e7ca.zip
disable proxys during ssl root cert upload to avoid encryption
Diffstat (limited to 'apps/files_external/ajax')
-rw-r--r--apps/files_external/ajax/addRootCertificate.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files_external/ajax/addRootCertificate.php b/apps/files_external/ajax/addRootCertificate.php
index 43fd6752c4a..ae349bfcd3a 100644
--- a/apps/files_external/ajax/addRootCertificate.php
+++ b/apps/files_external/ajax/addRootCertificate.php
@@ -29,8 +29,12 @@ if ($isValid == false) {
// add the certificate if it could be verified
if ( $isValid ) {
+ // disable proxy to prevent multiple fopen calls
+ $proxyStatus = \OC_FileProxy::$enabled;
+ \OC_FileProxy::$enabled = false;
$view->file_put_contents($filename, $data);
OC_Mount_Config::createCertificateBundle();
+ \OC_FileProxy::$enabled = $proxyStatus;
} else {
OCP\Util::writeLog('files_external',
'Couldn\'t import SSL root certificate ('.$filename.'), allowed formats: PEM and DER',