11
btw just for historical accuracy of the lists
you need to remove the last slash entirely, in other words you end up with ' '
I originally thought it would look like this
define('XOOPS_URL', '/apache2-default');
To
define('XOOPS_URL', '/');
but in actuality what you actually need to have it changed from & to is
define('XOOPS_URL', '/apache2-default');
To
define('XOOPS_URL', ' ');
I'm not sure why no one else here told me that but I guess for the next person it will be easier.
Cheers,
Dean