I added :
elseif (isset($_SERVER['ORIG_PATH_INFO']) && !$PATH_INFO) {
$PATH_INFO = $_SERVER['ORIG_PATH_INFO'];
} // end if
after the first line and turned on the friendly spider function
Is there a way you can test to see if that makes it work now ?
I checked logs which says
PRIMARY_SETTINGS SEARCH_FRIENDLY_URLS changed from '0' to '1'
but no idea if the function works or not
Update with that function turned on main forum page would not show and would instead go right to portal page and clicking on "forum list" only refreshed showing portal page
Thanks
Try this:
In libs/ubbthreads.inc.php
Replace This:
if (isset($_SERVER['PATH_INFO']) && !$PATH_INFO) {
$PATH_INFO = $_SERVER['PATH_INFO'];
} // end ifWith This:
if (isset($_SERVER['PATH_INFO']) && !$PATH_INFO) {
$PATH_INFO = $_SERVER['PATH_INFO'];
} // end if
elseif (isset($_SERVER['ORIG_PATH_INFO']) && !$PATH_INFO) {
$PATH_INFO = $_SERVER['ORIG_PATH_INFO'];
} // end ifThen enable spider urls.