Lines Matching refs:mkdir
9 test_open_basedir_before("mkdir");
11 var_dump(mkdir("../bad/blah"));
12 var_dump(mkdir("../blah"));
13 var_dump(mkdir("../bad/./blah"));
14 var_dump(mkdir("./.././blah"));
16 var_dump(mkdir($initdir."/test/ok/blah"));
18 test_open_basedir_after("mkdir");
26 *** Testing open_basedir configuration [mkdir] ***
33 Warning: mkdir(): open_basedir restriction in effect. File(../bad/blah) is not within the allowed p…
36 Warning: mkdir(): open_basedir restriction in effect. File(../blah) is not within the allowed path(…
39 Warning: mkdir(): open_basedir restriction in effect. File(../bad/./blah) is not within the allowed…
42 Warning: mkdir(): open_basedir restriction in effect. File(./.././blah) is not within the allowed p…
46 *** Finished testing open_basedir configuration [mkdir] ***