1
Had to go through some trouble trying to install on a Hosting Service where XOOPS ROOT PHYSICAL PATH is set to
/ During install on Path settings page
XOOPS documents root physical path is requested. I typed "
/" (no quotes) and that is automatically deleted. So I tried "
//" and both get deleted. The only way to get passed issue is typing "
.."
Installation all works but when you get to main page menu links are set to "../something" and one goes no where. I then edited mainfile.php manually and changed
define( 'XOOPS_ROOT_PATH', '..' );
to
define( 'XOOPS_ROOT_PATH', '/' );
cleared the cache and system worked.
Is this a bug or intended???