Skip to content
Snippets Groups Projects
Commit 4c7ecf15 authored by Guy Brand's avatar Guy Brand
Browse files

Verify conf/ directory is writable in the do=check action

parent f11b7d1b
No related branches found
No related tags found
No related merge requests found
......@@ -175,6 +175,12 @@ function check(){
msg('Lockdir is not writable',-1);
}
if(is_writable(DOKU_CONF)){
msg('conf directory is writable',1);
}else{
msg('conf directory is not writable',-1);
}
if($conf['authtype'] == 'plain'){
global $config_cascade;
if(is_writable($config_cascade['plainauth.users']['default'])){
......
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