Topic: PLEASE HELP..cant install tracmor

hi guys im new here.and i ve been searching here and cant find my answer..my problem is this

Warning: require(/var/htdocs/tracmor/includes/qcodo/_core/qcodo.inc.php) [function.require]: failed to open stream: No such file or directory in C:\xampp\htdocs\tracmor\includes\prepend.inc.php on line 24

Fatal error: require() [function.require]: Failed opening required '/var/htdocs/tracmor/includes/qcodo/_core/qcodo.inc.php' (include_path='.;C:\xampp\php\PEAR') in C:\xampp\htdocs\tracmor\includes\prepend.inc.php on line 24

when i goto localhost/tracmor/login.php

im running XAMPP .

can please help me or point me to full detailed tutorial??


thank you..

Re: PLEASE HELP..cant install tracmor

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)