Re: Directories Issue
Hi everyone, in the file "tiki-setup.php" I replaced the following block of code:
if (array_key_exists('PATH_TRANSLATED', $_SERVER)) {
$docroot = dirname($_SERVER'PATH_TRANSLATED');
$docroot = 'E:\websites\qthruz\webhost\corby\public';
} else {
$docroot = getcwd();
}
With simply
$docroot = getcwd();
And this seems to cause Tiki to function properly (so far). Is anything wrong with doing this????