2
The settings are in 'mainfile.php'.
E.g if you are building a site on a PC running IIS with XOOPS installed in a subdirectory, the settings might be:
define('XOOPS_ROOT_PATH', 'C:/Inetpub/wwwroot/mysite');
define('XOOPS_URL', 'http://localhost/mysite');
To test the site across the LAN, you would need to use the DHCP IP address allocated to your PC by the router for xoops_url, e.g.
define('XOOPS_URL', 'http://192.168.***.***/mysite');
When you upload the site to a Unix/Linux server, these settings would change to something like, e.g.
define('XOOPS_ROOT_PATH', '/var/www/vhosts/mysite.co.uk/httpdocs');
define('XOOPS_URL', 'http://www.mysite.com');
HTH
A thread is for life. Not just for Christmas.