wardrox
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Resetting password – invalid keyI assume nobody has fixed this or found a work around?
Right now, most of the time users of my blog try to reset their passwords, they’re getting an error. It’s frustrating something so important is so unreliable 🙁
It seems to simply be that WP is generating keys that have invalid characters in. Perhaps there’s a bug with the validation code?
Forum: Fixing WordPress
In reply to: Experiencing random “Internal server Errors” (Update WP 2.9)I just upgraded to the newest version of YARPP (Yet Another Related Posts Plugin) and I think it’s solved the problem for me.
According to the YARPP twitter, there was a time-out bug that’s been fixed with the new version (3.1.2)
Forum: Fixing WordPress
In reply to: Experiencing random “Internal server Errors” (Update WP 2.9)Looks like everything saves fine, it just doesn’t update the writer informing them and just hangs. I suggest to people struggling with slow saves simply refreshing the page and seeing if the edits, counter to what WP is saying, has been saved.
Forum: Fixing WordPress
In reply to: Experiencing random “Internal server Errors” (Update WP 2.9)I’m also finding similar problems. Often getting 500 Internal Server Errors as well as very, very long save times.
Forum: Fixing WordPress
In reply to: get_the_content() within second loop doesn’t work correctlyFix:
Not sure which part of this fixes the problem but it seems to be working now. I changed the following;
Added the line:
global $id, $post, $more, $page, $pages, $multipage, $preview, $pagenow;Replaces
get_the_content()with$post->post_content;And moved where I call
$my_query->the_post();The original bug, whilst now circumvented, still exists.