Lines Matching refs:chdir
8 test_open_basedir_before("chdir");
10 var_dump(chdir("../bad"));
11 var_dump(chdir(".."));
12 var_dump(chdir("../"));
13 var_dump(chdir("/"));
14 var_dump(chdir("../bad/."));
15 var_dump(chdir("./../."));
17 test_open_basedir_after("chdir");
25 *** Testing open_basedir configuration [chdir] ***
32 Warning: chdir(): open_basedir restriction in effect. File(../bad) is not within the allowed path(s…
35 Warning: chdir(): open_basedir restriction in effect. File(..) is not within the allowed path(s): (…
38 Warning: chdir(): open_basedir restriction in effect. File(../) is not within the allowed path(s): …
41 Warning: chdir(): open_basedir restriction in effect. File(/) is not within the allowed path(s): (.…
44 Warning: chdir(): open_basedir restriction in effect. File(../bad/.) is not within the allowed path…
47 Warning: chdir(): open_basedir restriction in effect. File(./../.) is not within the allowed path(s…
49 *** Finished testing open_basedir configuration [chdir] ***