Skip to content
Snippets Groups Projects
Commit dd9f4a3e authored by Michael Gapczynski's avatar Michael Gapczynski
Browse files

Merge branch 'master' of git://anongit.kde.org/owncloud

parents 1b64b739 d851bdac
No related branches found
No related tags found
No related merge requests found
ErrorDocument 404 //owncloud/core/templates/404.php ErrorDocument 404 //owncloud/core/templates/404.php
php_value upload_max_filesize 512M <IfModule mod_php5.c>
php_value post_max_size 512M php_value upload_max_filesize 512M
SetEnv htaccessWorking true php_value post_max_size 512M
SetEnv htaccessWorking true
</IfModule>
Options -Indexes Options -Indexes
...@@ -273,12 +273,14 @@ class OC_Setup { ...@@ -273,12 +273,14 @@ class OC_Setup {
* create .htaccess files for apache hosts * create .htaccess files for apache hosts
*/ */
private static function createHtaccess() { private static function createHtaccess() {
global $SERVERROOT; $SERVERROOT=OC::$SERVERROOT;
global $WEBROOT; $WEBROOT=OC::$WEBROOT;
$content = "ErrorDocument 404 /$WEBROOT/core/templates/404.php\n";//custom 404 error page $content = "ErrorDocument 404 /$WEBROOT/core/templates/404.php\n";//custom 404 error page
$content.= "php_value upload_max_filesize 20M\n";//upload limit $content.= '<IfModule mod_php5.c>';
$content.= "php_value post_max_size 20M\n"; $content.= 'php_value upload_max_filesize 512M';//upload limit
$content.= "SetEnv htaccessWorking true\n"; $content.= 'php_value post_max_size 512M';
$content.= 'SetEnv htaccessWorking true';
$content.= '</IfModule>';
$content.= "Options -Indexes\n"; $content.= "Options -Indexes\n";
@file_put_contents($SERVERROOT.'/.htaccess', $content); //supress errors in case we don't have permissions for it @file_put_contents($SERVERROOT.'/.htaccess', $content); //supress errors in case we don't have permissions for it
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment