12
Quote:
ttremeth wrote:
// XOOPS Physical Path
// Physical path to your main XOOPS directory WITHOUT trailing slash
define('XOOPS_ROOT_PATH', '/home/myfolder/public_html/cms');
define('XOOPS_TRUST_PATH', '/home/myfolder/XOOPS_TRUST_PATH');
etc etc
Just a small point.......
Your trust path
must be exactly "parallel" with your main website folder... assuming that the directory /cms hast your XOOPS site in it then your "trust path" should be defined:
define('XOOPS_TRUST_PATH', '/home/myfolder/public_html/trust_folder_name');
where "trust_folder_name" is a unique name that you choose - it can be anything you like.
HTH