Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi I ran into this problem too and I’m on Brinkster Windows hosting. The permalink I’m using is:
    /index.php/archive/%postname%/

    After upgrading from v2.2 to v2.5, none of the links to either posts, pages, categories or calendars work. However, when I change permalinks back to the default setting, everything goes back to normal. Now I’m pretty sure it’s got nothing to do with my hosting provider as custom permalinks were working on the older version.

    Anyone have any idea on what else I can try? I tried using the modified rewrite.php by dlo but had no joy with it. ??

    If you’re using Brinkster Windows hosting, this will work:

    // Some IIS + PHP configurations puts the script-name in the path-info (No need to append it twice)
    if ( isset($_SERVER['ORIG_PATH_INFO']) ) {
    	if ( $_SERVER['ORIG_PATH_INFO'] == $_SERVER['SCRIPT_NAME'] )
    		$_SERVER['REQUEST_URI'] = $_SERVER['ORIG_PATH_INFO'];
    	else
    		$_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'] . $_SERVER['ORIG_PATH_INFO'];
    }
Viewing 2 replies - 1 through 2 (of 2 total)