summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorMichael Göhler <somebody.here@gmx.de>2012-10-07 00:03:47 +0200
committerMichael Göhler <somebody.here@gmx.de>2012-10-07 00:31:07 +0200
commit7f2208b9a11f608e7d726bf426fe4c2a672e058a (patch)
tree26a5a8d74b2f95488e97fc86220511006f7f3e8a /apps
parent5eaf95eedd842c3978173f75db1db68253dc1bc7 (diff)
downloadnextcloud-server-7f2208b9a11f608e7d726bf426fe4c2a672e058a.tar.gz
nextcloud-server-7f2208b9a11f608e7d726bf426fe4c2a672e058a.zip
fixed max possible upload size for files app in admin screen
used get_cfg_var() to get the real limit from php.ini instead of .ht_access dont know why we used PHP_INT_MAX here...
Diffstat (limited to 'apps')
-rw-r--r--apps/files/admin.php8
1 files changed, 6 insertions, 2 deletions
diff --git a/apps/files/admin.php b/apps/files/admin.php
index a8f2deffc92..547f2bd7ddb 100644
--- a/apps/files/admin.php
+++ b/apps/files/admin.php
@@ -30,8 +30,11 @@ OCP\User::checkAdminUser();
$htaccessWorking=(getenv('htaccessWorking')=='true');
$upload_max_filesize = OCP\Util::computerFileSize(ini_get('upload_max_filesize'));
+$upload_max_filesize_possible = OCP\Util::computerFileSize(get_cfg_var('upload_max_filesize'));
$post_max_size = OCP\Util::computerFileSize(ini_get('post_max_size'));
+$post_max_size_possible = OCP\Util::computerFileSize(get_cfg_var('post_max_size'));
$maxUploadFilesize = OCP\Util::humanFileSize(min($upload_max_filesize, $post_max_size));
+$maxUploadFilesizePossible = OCP\Util::humanFileSize(min($upload_max_filesize_possible, $post_max_size_possible));
if($_POST) {
if(isset($_POST['maxUploadSize'])) {
if(($setMaxSize = OC_Files::setUploadLimit(OCP\Util::computerFileSize($_POST['maxUploadSize']))) !== false) {
@@ -56,7 +59,8 @@ $htaccessWritable=is_writable(OC::$SERVERROOT.'/.htaccess');
$tmpl = new OCP\Template( 'files', 'admin' );
$tmpl->assign( 'uploadChangable', $htaccessWorking and $htaccessWritable );
$tmpl->assign( 'uploadMaxFilesize', $maxUploadFilesize);
-$tmpl->assign( 'maxPossibleUploadSize', OCP\Util::humanFileSize(PHP_INT_MAX));
+$tmpl->assign( 'maxPossibleUploadSize', $maxUploadFilesizePossible);
$tmpl->assign( 'allowZipDownload', $allowZipDownload);
$tmpl->assign( 'maxZipInputSize', $maxZipInputSize);
-return $tmpl->fetchPage(); \ No newline at end of file
+return $tmpl->fetchPage();
+