jillsays
Forum Replies Created
-
Forum: Plugins
In reply to: W3 Total Cache yielding 404 pagesAdd me to the list of people having this problem. I’m using the newest versions of WordPress and W3.
Random pages on the site are returning 404 errors and not loading. All the content loads on the site (header, sidebar, footer) – but the actual content just returns a 404.
When I clear the cache, the pages return – temporarily, and then it happens again.
I turned off browser caching and minify, but the problem persists.
Can anyone weigh in on what might be causing this?
Forum: Fixing WordPress
In reply to: PLEASE help with category pagination issueI don’t think it is permalink related. The error never happens on single post pages. It’s always just on page 2 (or a random page) of the site after the index.
Forum: Fixing WordPress
In reply to: PLEASE help with category pagination issueI have not tried plain permalinks, because I definitely can’t afford to lose the thousands of links I already have on the site… and have no clue how to redirect them all.
What is strange is that this is a completely intermittent issue. It only happens sometimes – and not others. Sometimes it’s page 2, sometimes it’s page 8. It has no rhyme or reason – and it doesn’t happen to everyone. I still haven’t seen it once.
Could it have something to do with w3 total cache?
Forum: Fixing WordPress
In reply to: PLEASE help with category pagination issueI tried the category pagination fix – it didn’t work!
And the problem is still ongoing!
I just completely removed all my pagination plugins, and hard-coded pagination into functions.php – and it is still happening.
I am really at my wits end!
Duckboy, do you do this professionally? Could I hire you to look into this and fix this issue for me? If so please email me directly from the contact tab on my site.
CheersI just did a bit of research about incorrect limits, and stumbled upon this old comment here in the forums about WP-Paginate:
Due to ceil being used instead of floor in the code, the pages are not being generated correctly.
I tried making this switch in wp-paginate.php, maybe this will have an impact?
Line 118:
$pages = intval(ceil($wp_query->found_posts / $posts_per_page));should be
$pages = intval(floor($wp_query->found_posts / $posts_per_page));Forum: Plugins
In reply to: [WP-Paginate] [Plugin: WP-Paginate] Wrong counting while custom post limitsI am having this exact same problem. All pages after Page 1 are showing up blank. The header, sidebar, and footer load – but the content itself just fails to load and presents a “PAGE NOT FOUND” error.
Ayek, did you ever figure this out?
Thanks for the response and the help Duckboy!
First – I thought it might be WP-Paginate, but I switched to an entirely different plugin (WP-PageNavi) and it was still happening. So I just switched back to WP-Paginate.
I really know very little about PHP and do not have a web designer (I run the site and network all by myself) so I’m sorry if I’m slow… but where exactly do I place the echo query?
And where do the results of that query go?
Forum: Fixing WordPress
In reply to: PLEASE help with category pagination issueThanks for the reply, but nope! Page 2 is still broken with that code, and returns a 404.
Forum: Fixing WordPress
In reply to: Change posts displayed on category index pages?!Hi @vtxyzzy, I made those changes but page 2 is still returning a 404 not found error.
I’m wondering if this is a permalink error or if something else might be going on?
Any insight would be so very appreciated!
Forum: Fixing WordPress
In reply to: Change posts displayed on category index pages?!Sorry, here’s the pastebin. I’m still not able to get this to work. Page 1 shows the post title and no content, and page 2 fails to even load at all.
Forum: Fixing WordPress
In reply to: Change posts displayed on category index pages?!I just re-installed fresh, clean code on the cagegory PHP page, and the error is still happening. I’m not seeing anything in the logs.
This is the code that I’m using; does anything stand out as glaringly wrong?
[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Fixing WordPress
In reply to: Change posts displayed on category index pages?!Thank you for the reply, but it’s still coming up blank on page two!
Forum: Fixing WordPress
In reply to: Change posts displayed on category index pages?!Thank you. I’m using the following code, which works on Page 1:
<?php query_posts( "cat=4&posts_per_page=1" ); ?>But when I go to page 2, everything loads but the actual content. It returns a “page not found” error. Do you know why that is happening?
I’m trying to implement it on DamnYouAutocorrect; here’s the URL:
http://damnyouautocorrect.com/category/submissions/I’m trying to do the same thing and can’t figure it out either.
Anyone?