10
ok so if I understand this correctly, I need to
1/ copy all files currently in the
www/apache2-default/ folder
to
www/
and then modify the two lines below (and reboot I assume)
// XOOPS Physical Path
// Physical path to your main XOOPS directory WITHOUT trailing slash
// Example: define('XOOPS_ROOT_PATH', '/var/www/apache2-default');
define('XOOPS_ROOT_PATH', '/var/www/apache2-default');
To
define('XOOPS_ROOT_PATH', '/var/www/');
// XOOPS Virtual Path (URL)
// Virtual path to your main XOOPS directory WITHOUT trailing slash
// Example: define('XOOPS_URL', '/apache2-default');
define('XOOPS_URL', '/apache2-default');
To
define('XOOPS_URL', '/');
is there anything else I need to do?
TIA,
Dean