How to resolve 404 errors for wordpress comments/feed when I have disabled comments
I added remove_action( ‘wp_head’, ‘feed_links’, 2 ); in functions.php file. and added in the header.php. This fulfilled my purpose.
I added remove_action( ‘wp_head’, ‘feed_links’, 2 ); in functions.php file. and added in the header.php. This fulfilled my purpose.
What i found was the easiest way to solve this problem – and what i eventually ended up doing – was to build a custom pagination using querystrings.
It turned out to be an .htaccess rule put in by a coworker. It was supposed to target just some .pdf files but the rule wasn’t written strict enough. So that was a fun few hours spent on wild goose chases.
You can still get to your login page: http://wayfaroutadventures.com/blog/wp-login.php You probably haven’t done any serious damage. Login to your site over FTP or using some file manager provided by your host and add: define(‘WP_SITEURL’, ‘http://example.com/wordpress’); define(‘WP_SITEURL’, ‘http://’ . $_SERVER[‘HTTP_HOST’] . ‘/path/to/wordpress’); See: http://codex.wordpress.org/Editing_wp-config.php#WordPress_address_.28URL.29 Of course, the addresses need to match exactly what you had before … Read more
I fixed this in the end. There is a button in the wpsc settings page under presentation to flush the theme cache. Caption: If you have moved your files in some other way i.e FTP, you may need to click the Flush Theme Cache. This will refresh the locations WordPress looks for your templates. Simple, … Read more
I Got it…. I just changed year to year1 and it worked 🙂 Don’t know what was the problem 🙂
You can use this query to generate the RewriteRules that you will need. Once generated the would go into your .htaccess file and need to be prepended with: RewriteEngine On RewriteBase / The following SQL output should setup rewrite rules for /postname/ to /category/postname/ based on what is in your database now. The trailing forward … Read more
404 with Custom Post Type
Posting to most pages throws 404
WordPress shows 404 on pages 11 and above?