• Resolved razorianfly

    (@razorianfly)


    Hello everyone,

    I’m Arron and I own and run the iPhone-focused blog https://RazorianFly.com.

    Yesterday I started to notice feedburner wasn’t updating my RSS feeds with the latest items. Then, later that day my WordPress permalinks simply stopped working.

    As you can see from the site, the homepage looks fine, and pages work. But clicking through to any post on the site currently results on the post title, publish date, comments count and author being displayed, but no actual content.

    Things I’ve Tried So Far:

    [Update] Switching to default theme – Everything works.

    – Backed up both the server’s database and WordPress contents from WP Dashboard

    – Upgraded successfully to WordPress version 2.9.2

    – Set permalinks to ‘Default’ under Settings > Permalinks, results in a ‘Not Found’ error.

    – Changed .htaccess CHMOD to 666 and changed permalinks back to custom:
    /%year%/%monthnum%/%day%/%postname%/ – results in post pages being blank

    – Deleted, changed and uploaded a modified version of .htaccess in /httpdocs/ to read:

    # BEGIN WordPress

    <IfModule mod_rewrite.c>
    ErrorDocument 404 /index.php?error=404
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    </IfModule>

    # END WordPress

    If anyone can provide any advice on what may be causing this issue, I would be eternally grateful.

    Cheers,
    Arron

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter razorianfly

    (@razorianfly)

    Fixed – Turns out Single.php was looking for a plugin. Reactivated after I’d deactivated this morning to update WordPress, eveything working again.

    ERROR: %s’), $error); ?>

    />

    ‘.__(‘Already Installed’).’

    ‘.__(‘You appear to have already installed WordPress. To reinstall please clear your old database tables first.’).’
    ‘);} $php_version = phpversion(); $mysql_version = $wpdb->db_version(); $php_compat = version_compare( $php_version, $required_php_version, ‘>=’ ); $mysql_compat = version_compare( $mysql_version, $required_mysql_version, ‘>=’ ) || file_exists( WP_CONTENT_DIR . ‘/db.php’ ); if ( !$mysql_compat && !$php_compat ) $compat = sprintf( __(‘You cannot install because WordPress %1$s requires PHP version %2$s or higher and MySQL version %3$s or higher. You are running PHP version %4$s and MySQL version %5$s.’), $wp_version, $required_php_version, $required_mysql_version, $php_version, $mysql_version ); elseif ( !$php_compat ) $compat = sprintf( __(‘You cannot install because WordPress %1$s requires PHP version %2$s or higher. You are running version %3$s.’), $wp_version, $required_php_version, $php_version ); elseif ( !$mysql_compat ) $compat = sprintf( __(‘You cannot install because WordPress %1$s requires MySQL version %2$s or higher. You are running version %3$s.’), $wp_version, $required_mysql_version, $mysql_version ); if ( !$mysql_compat || !$php_compat ) { display_header(); die(‘
    ‘ . __(‘Insufficient Requirements’) . ‘

    ‘ . $compat . ‘
    ‘); } switch($step) { case 0: case 1: // in case people are directly linking to this display_header(); ?>

    ReadMe documentation at your leisure. Otherwise, just fill in the information below and you’ll be on your way to using the most extendable and powerful personal publishing platform in the world.’), ‘../readme.html’); ?>

    error) ) wp_die($wpdb->error->get_error_message()); display_header(); // Fill in the data we gathered $weblog_title = isset($_POST[‘weblog_title’]) ? stripslashes($_POST[‘weblog_title’]) : ”; $admin_email = isset($_POST[‘admin_email’]) ? stripslashes($_POST[‘admin_email’]) : ”; $public = isset($_POST[‘blog_public’]) ? (int) $_POST[‘blog_public’] : 0; // check e-mail address $error = false; if (empty($admin_email)) { // TODO: poka-yoke display_setup_form( __(‘you must provide an e-mail address.’) ); $error = true; } else if (!is_email($admin_email)) { // TODO: poka-yoke display_setup_form( __(‘that isn’t a valid e-mail address. E-mail addresses look like: [email protected]’) ); $error = true; } if ( $error === false ) { $wpdb->show_errors(); $result = wp_install($weblog_title, ‘admin’, $admin_email, $public); extract($result, EXTR_SKIP); ?>
    admin
    ‘. $password .’
    ‘; } echo ‘

    ‘. $password_message .’
    ‘; ?>

    CAN ANYONE HELP ME WHAT TO DO WITH THIS.. I AM USING PLESK SERVER.. AND UPLOAD THE WP IN HTTPDOCS AND MAKE A DIRECTORY WITH NAME BLOG. I NEED YOUR HELP GUYS… WHAT’S GOING ON WITH MY SITE… PLEASE HELP..
    VIDEOS ARE HIGHLY APPRECIATED TNX….

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Permalinks broken, .htaccess modified, pages work, posts don’t.’ is closed to new replies.