Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • I have a similar problem. My permalink structure uses:
    /%year%/%monthnum%/%day%/%postname%-%post_id%/
    Yet the next tag generated by
    <?php posts_nav_link(' | ','Previous','Next'); ?>
    shows:
    website.com/blog/page/2/
    … which leads to a 404.
    Did you resolve your problem? If so, how?

    I have 88 spam messages caught by akismet, but when I try and delete them I am getting the “Cannot load akismet-admin” error.
    This is with the latest WP 2.5.1 and Akismet 2.1.5.
    As this appears to be platform independent I guess it probably does not matter that I am on Windows.

    Can anyone suggest an alternative way to deleting the spam caught by Akismet?

    hitthosekeys mentioned comparing files between versions and adding in the missing line(s). Well here are the missing lines:
    Change this:

    // Some IIS + PHP configurations puts the script-name in the....
    if ( $_SERVER['PATH_INFO'] == $_SERVER['SCRIPT_NAME'] )
             $_SERVER['REQUEST_URI'] = $_SERVER['PATH_INFO'];
    else
             $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'] . $_SERVER['PATH_INFO'];

    To this:

    // Some IIS + PHP configurations puts the script-name in the
    if (empty($_SERVER['PATH_INFO']))
             $_SERVER['REQUEST_URI'] = substr($_SERVER['SCRIPT_NAME'], 0, strrpos($_SERVER['SCRIPT_NAME'], '/')) . '/';
    elseif ( $_SERVER['PATH_INFO'] == $_SERVER['SCRIPT_NAME'] )
             $_SERVER['REQUEST_URI'] = $_SERVER['PATH_INFO'];
    else
             $_SERVER['REQUEST_URI'] = $_SERVER['SCRIPT_NAME'] . $_SERVER['PATH_INFO'];

Viewing 3 replies - 1 through 3 (of 3 total)