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

Originally Posted by Gizmo
Try this:
In libs/ubbthreads.inc.php
Replace This:
Code
	if (isset($_SERVER['PATH_INFO']) && !$PATH_INFO) {
		$PATH_INFO = $_SERVER['PATH_INFO'];
	} // end if

With This:
Code
	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 if

Then enable spider urls.

Last edited by teamzr1; 07/17/2007 4:36 PM. Reason: Not working

JR
Team ZR-1 Corvette Racer's