You need to set the correct path to the tracmor directory in the includes/configuration.inc.php.
Example one is correct
1define ('__DOCROOT__', ' /your/document/root/path');
2define ('__VIRTUAL_DIRECTORY__', '');
3define ('__SUBDIRECTORY__', ' /tracmordirectory');
Example two is not
1define ('__DOCROOT__', ' /your/document/root/path/tracmordirectory');
2define ('__VIRTUAL_DIRECTORY__', '');
3define ('__SUBDIRECTORY__', ' ');
Line one is where you define your document root ( Define your document root /your/document/root/path )
If you have tracmor in a sub directory make sure you use line three to define.
Line two is where you define your virtual directory (in most cases you don't use this)
Line three is where you define your sub directory. (if your tracmor directory resides in a sub directory like www.yoursite.com/tracmordirectory you would put....... /tracmordirectory in the sub directory line)
if your using windows server just start the document root line with c:/ don't use c:/ under the sub directory.
Example
define ('__DOCROOT__', ' c:/your/document/root/path');
define ('__VIRTUAL_DIRECTORY__', '');
define ('__SUBDIRECTORY__', '/tracmordirectory'); (only use this line if tracmor is under a sub directory and don't us an end slash at the end of each path defined.)
If your path is correct it should look like this
define ('__DOCROOT__', 'C:\xampp\htdocs ');
define ('__VIRTUAL_DIRECTORY__', '');
define ('__SUBDIRECTORY__', '/tracmor');
I hope this helps
Last edited by pkeeney (2011-02-22 05:17:10)