Mar 5th, 2009, 10:41 AM
Hey Ben,
I've got no problem performing brain surgery. :-)
Change made to the trailing slash on the 'cache' path in the themes.php but with the same result (or lack thereof). Also, I did make sure there were no trailing slashes in the config.php file. Just for kicks I tried switch the forward to backslashes on the line below with equally ugly results..
One thing I did notice is in the error page it does show the standard PHP warning (with the correct path structure) and the PHP code errors (with the wrong path structure).. if it helps..
I'll keep strolling through the code to see if anything pops out at me... but let me know if you find anything. Thanks Ben!
I've got no problem performing brain surgery. :-)
Change made to the trailing slash on the 'cache' path in the themes.php but with the same result (or lack thereof). Also, I did make sure there were no trailing slashes in the config.php file. Just for kicks I tried switch the forward to backslashes on the line below with equally ugly results..
One thing I did notice is in the error page it does show the standard PHP warning (with the correct path structure) and the PHP code errors (with the wrong path structure).. if it helps..
I'll keep strolling through the code to see if anything pops out at me... but let me know if you find anything. Thanks Ben!
(Mar 4th, 2009, 3:37 PM)admin Wrote: Edit the /global/code/themes.php page and go to line 178. There, you'll find this line:
PHP Code:$g_smarty->compile_dir = "$g_root_dir/themes/$theme/cache/";
Remove the trailing slash, to make it this:
PHP Code:$g_smarty->compile_dir = "$g_root_dir/themes/$theme/cache";