26
Sorry bout that, got too excited...
Here's the link to the sourceforge site with the patch info.
SourceforgeHere's the code:
the fix is really small:
Replace:
$url_arr = explode('/',
str_replace(str_replace('https://', 'http://',
XOOPS_URL.'/modules/'), '',
'http://'.$HTTP_SERVER_VARS['HTTP_HOST'].$xoopsRequestUri));
$module_handler =& xoops_gethandler('module');
$xoopsModule =& $module_handler->getByDirname($url_arr[0]);
with:
preg_match("/modules\/(\w*)/",$xoopsRequestUri,$url_arr);
$module_handler =& xoops_gethandler('module');
$xoopsModule =& $module_handler->getByDirname($url_arr[1]);
The above takes place in the common.php file located in the includes folder. Then I simply added the www in my mainfile.php and I am off and running
Remember to save backup files in case something goes wrong