Aug 19th, 2011, 6:34 AM
Hi Hammour,
Sorry you're having trouble! Did the installation script create the config.php itself, or did you manually create it? I just noticed that the $g_root_url and $g_root_dir vars both have trailing slashes (they shouldn't!)
Also, on Windows systems, the backslashes are escaped - the installation script should have generated file contents with those already escaped. So try changing the first lines to this:
Let me know if you still have problems!
- Ben
Sorry you're having trouble! Did the installation script create the config.php itself, or did you manually create it? I just noticed that the $g_root_url and $g_root_dir vars both have trailing slashes (they shouldn't!)
Also, on Windows systems, the backslashes are escaped - the installation script should have generated file contents with those already escaped. So try changing the first lines to this:
PHP Code:
// main program paths - no trailing slashes!
$g_root_url = "http://artdell.com/formtools";
$g_root_dir = "D:\\Hosting\\3126654\\html\\formtools";
Let me know if you still have problems!
- Ben