Skip to content
Snippets Groups Projects
Commit 11c2aff8 authored by Jan-Christoph Borchardt's avatar Jan-Christoph Borchardt
Browse files

fixed installer failing due to htaccess. Thanks to Elias Probst

parent 9b674d26
No related branches found
No related tags found
No related merge requests found
...@@ -275,12 +275,12 @@ class OC_Setup { ...@@ -275,12 +275,12 @@ class OC_Setup {
private static function createHtaccess() { private static function createHtaccess() {
$SERVERROOT=OC::$SERVERROOT; $SERVERROOT=OC::$SERVERROOT;
$WEBROOT=OC::$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.= '<IfModule mod_php5.c>'; $content.= "<IfModule mod_php5.c>\n";
$content.= 'php_value upload_max_filesize 512M';//upload limit $content.= "php_value upload_max_filesize 512M\n";//upload limit
$content.= 'php_value post_max_size 512M'; $content.= "php_value post_max_size 512M\n";
$content.= 'SetEnv htaccessWorking true'; $content.= "SetEnv htaccessWorking true\n";
$content.= '</IfModule>'; $content.= "</IfModule>\n";
$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