@@ -20,7 +20,7 @@ class Paths
2020 * Include the path if the folder is not in the same directory
2121 * as this file.
2222 */
23- public $ systemDirectory = ' system ' ;
23+ public $ systemDirectory = FCPATH . ' ../ system ' ;
2424
2525 /*
2626 *---------------------------------------------------------------
@@ -35,7 +35,7 @@ class Paths
3535 *
3636 * NO TRAILING SLASH!
3737 */
38- public $ applicationDirectory = ' application ' ;
38+ public $ applicationDirectory = FCPATH . ' ../ application ' ;
3939
4040 /*
4141 * ---------------------------------------------------------------
@@ -48,7 +48,7 @@ class Paths
4848 * for maximum security, keeping it out of the application and/or
4949 * system directories.
5050 */
51- public $ writableDirectory = ' writable ' ;
51+ public $ writableDirectory = FCPATH . ' ../ writable ' ;
5252
5353 /*
5454 * ---------------------------------------------------------------
@@ -61,7 +61,7 @@ class Paths
6161 * for maximum security, keeping it out of the application and/or
6262 * system directories.
6363 */
64- public $ testsDirectory = ' tests ' ;
64+ public $ testsDirectory = FCPATH . ' ../ tests ' ;
6565
6666 /*
6767 * ---------------------------------------------------------------
@@ -75,7 +75,7 @@ class Paths
7575 * can change this to `public_html`, for example, to comply
7676 * with your host's needs.
7777 */
78- public $ publicDirectory = ' public ' ;
78+ public $ publicDirectory = FCPATH ;
7979
8080 /*
8181 * ---------------------------------------------------------------
@@ -87,5 +87,5 @@ class Paths
8787 * default this is in `application/Views`. This value
8888 * is used when no value is provided to `Services::renderer()`.
8989 */
90- public $ viewDirectory = ' application/Views ' ;
90+ public $ viewDirectory = FCPATH . ' ../ application/Views ' ;
9191}
0 commit comments