Mar 4th, 2009, 3:37 PM
Here's something else you could try, but it involves a bit of brain surgery.
Edit the /global/code/themes.php page and go to line 178. There, you'll find this line:
Remove the trailing slash, to make it this:
Then try going to Form Tools again in your browser. I'm wondering if that final slash is confusing your system - I noticed your error messages contained an extra (incorrect) slash, so that may prevent Smarty from finding the temporary files.
Let me know!
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";
Then try going to Form Tools again in your browser. I'm wondering if that final slash is confusing your system - I noticed your error messages contained an extra (incorrect) slash, so that may prevent Smarty from finding the temporary files.
Let me know!