Loading...
 
Skip to main content

Architecture / Installation


Directories Issue

posts: 101

Hi folks,

I just finished installing Tiki and all seemed to go well. However, upon attempting to open tiki-admin.php, I get the following error messages:

TikiWiki is not properly set up:
The directory 'E:\websites\qthruz\webhost/backups/' does not exist.
The directory 'E:\websites\qthruz\webhost/dump/' does not exist.
The directory 'E:\websites\qthruz\webhost/img/wiki/' does not exist.
The directory 'E:\websites\qthruz\webhost/img/wiki_up/' does not exist.
The directory 'E:\websites\qthruz\webhost/modules/cache/' does not exist.
The directory 'E:\websites\qthruz\webhost/temp/' does not exist.
The directory 'E:\websites\qthruz\webhost/templates_c/' does not exist.

The actual physical path to the site on my ISP is E:\websites\qthruz\webhost\public\corby. How can I configure Tiki to access the proper directories???

Zero

posts: 101

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????