Browse Source
Add support for custom values in integrity checker
remotes/origin/files-consistentpermsformountpoint
Add support for custom values in integrity checker
remotes/origin/files-consistentpermsformountpoint
5 changed files with 123 additions and 7 deletions
-
3lib/private/Server.php
-
43lib/private/integritycheck/checker.php
-
24tests/data/integritycheck/htaccessWithValidModifiedContent/.htaccess
-
7tests/data/integritycheck/htaccessWithValidModifiedContent/.user.ini
-
53tests/lib/integritycheck/checkertest.php
@ -1,4 +1,28 @@ |
|||
# Start of valid file |
|||
<IfModule mod_php5.c> |
|||
php_value upload_max_filesize 519M |
|||
php_value post_max_size 519M |
|||
php_value memory_limit 512M |
|||
php_value mbstring.func_overload 0 |
|||
php_value always_populate_raw_post_data -1 |
|||
php_value default_charset 'UTF-8' |
|||
php_value output_buffering 0 |
|||
<IfModule mod_env.c> |
|||
SetEnv htaccessWorking true |
|||
</IfModule> |
|||
</IfModule> |
|||
<IfModule mod_php7.c> |
|||
php_value upload_max_filesize 519M |
|||
php_value post_max_size 519M |
|||
php_value memory_limit 512M |
|||
php_value mbstring.func_overload 0 |
|||
php_value always_populate_raw_post_data -1 |
|||
php_value default_charset 'UTF-8' |
|||
php_value output_buffering 0 |
|||
<IfModule mod_env.c> |
|||
SetEnv htaccessWorking true |
|||
</IfModule> |
|||
</IfModule> |
|||
#### DO NOT CHANGE ANYTHING ABOVE THIS LINE #### |
|||
|
|||
# Content that should change the hash in the root folder |
|||
@ -0,0 +1,7 @@ |
|||
upload_max_filesize=519M |
|||
post_max_size=519M |
|||
memory_limit=512M |
|||
mbstring.func_overload=0 |
|||
always_populate_raw_post_data=-1 |
|||
default_charset='UTF-8' |
|||
output_buffering=0 |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue