7
really if ur only moving the folder below a level then all you should have to remove from the paths is the last folder..
take for example:
// Physical path to your main XOOPS directory WITHOUT trailing slash
define('XOOPS_ROOT_PATH', 'var/www/public_html/xoops');
// XOOPS Virtual Path (URL)
// Virtual path to your main XOOPS directory WITHOUT trailing slash
define('XOOPS_URL', 'http://www.yourdomain.com/xoops');
the example above presumes your site was installed in a folder called 'xoops' located in the root folder of your site (note the paths will differ)
so if you want to move your site down a level and have your site in the root folder, then you simply copy all the files out of 'xoops' and into your root folder..
then you would edit the code above and just remove 'xoops'
like below:
// XOOPS Physical Path
// Physical path to your main XOOPS directory WITHOUT trailing slash
define('XOOPS_ROOT_PATH', 'var/www/public_html');
// XOOPS Virtual Path (URL)
// Virtual path to your main XOOPS directory WITHOUT trailing slash
define('XOOPS_URL', 'http://www.yourdomain.com');
i'm presuming your root folder is public_html, but it could also be called htdocs aswell depending on your server setup.. either way if you have installed XOOPS anyway, the only bit u would need to edit is to remove the 'xoops' from the paths in your case.. :)
hope i explained that clearly for you..
oh and remember to remove the last / from the paths.. they should not end with a '/' :)