I am getting an error some times when uploading themes

From the looks of things, it’s a server issue. The WordPress theme uploader uses fopen() to transfer files from one location to the server. It looks like there’s a timeout or access error because a) fopen can’t find the file that it’s supposed to be transferring and b) the fread and fclose functions can’t find … Read more

is_wp_error() and handling errors

WordPress can be inconsistent as to when is returns a WP_Error object and when it just returns false or string(0) when actually there was an error. I am not sure exactly what feedburner is returning that is not triggering a WP_Error from wp_remote_get() – but if you know wp_remote_get() will return an WP_Error, I would … Read more

Fatal error with a theme

First thing i ran across was this conversation about the same issue. I couldn’t find it in the theme repo, but found it accessible via svn @repo. Now please answer some basic questions: Which version (wp & quality control) are you running? Could you share a link to your install? Which modifications have you made? … Read more

How to redirect a URL with parameters?

Your problem ain’t the parameters…it’s that your parametrized URL points to the wrong target…it has a .html where it should have a slash. …/windows-restarts-at-ec2.html?action=backlinks&wid… Change it to …./windows-restarts-at-ec2/?action=backlinks&wid… and you’ll see it works.