Sarah Lewis
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Admin Login Keeps RedirectingI ran into this problem on a client’s blog (and she’s using Windows while I use Mac, so that ruled out a few things right there). Tried tracing this in various ways and searching, and eventually found something useful in the Codex.
My problem was exactly as described there: the database options for siteurl and home were wrong. Not sure whether this was the result of something my client did, a bug, solar flares, etc. but fixing those options (through phpMyAdmin) did the trick. Go figure.
Forum: Fixing WordPress
In reply to: About the gallery_style hook filterI used the method described here. You could also use the plugin mentioned on that post, too.
Forum: Plugins
In reply to: Failing to integrate WP with CakePHPJust wanted to reiterate Glowing Face Man’s observation. I started getting this error when I put
require_once('PATH-TO-/wp-blog-header.php');
inside one of my class’s functions, and everything worked again when I moved it out.I’m not working with CakePHP, but it seems that the issue is the same.
Forum: Fixing WordPress
In reply to: http error when upload image on WP 2.7.1cosmictap posted a link that solved the “HTTP error.” problem for me (after all other solutions I tried failed).
Just for the record, I am using WP 2.9 on HostGator.
Forum: Fixing WordPress
In reply to: HTTP Error!cosmictap posted a link that solved the “HTTP error.” problem for me (after all other solutions I tried failed).
Just for the record, I am using WP 2.9 on HostGator.
Forum: Fixing WordPress
In reply to: HTTP Error – This is getting ridiculouscosmictap posted a link that solved the “HTTP error.” problem for me (after all other solutions I tried failed).
Just for the record, I am using WP 2.9 on HostGator.
Forum: Fixing WordPress
In reply to: “http error” when uploaded photos and other strangenesscosmictap posted a link that solved the “HTTP error.” problem for me (after all other solutions I tried failed).
Just for the record, I am using WP 2.9 on HostGator.
Forum: Fixing WordPress
In reply to: HTTP Error on image upload – STILLcosmictap‘s link solved the problem for me (after all other solutions I tried failed).
Forum: Plugins
In reply to: [Error] Plugin All in One SEOI got the same error after upgrading WordPress from 2.6 to 2.8.4.
Deactivating and reactivating All in One SEO fixed the problem (it then asked to update the database, did so, and all is well again).
Forum: Installing WordPress
In reply to: Problem after upgrade to 2.8.4For me, this error was a result of an old version of the Redirection plugin. I deleted it via FTP and all was well (and then I installed the latest version of the plugin, and all was still well ?? ).
Forum: Themes and Templates
In reply to: Child Themes in the DirectoryI am also curious about this question. Any conclusions?
Forum: Fixing WordPress
In reply to: Error updating anything through WordPress 2.7See this thread. It worked for me.
Forum: Plugins
In reply to: [Plugin: Popularity Contest] Patched to work with 2.5.1Thanks! Works for me on 2.7.
Forum: Installing WordPress
In reply to: Upgraded to 2.7, can’t loginI was having this problem and tried all sorts of things, including moving all of the plugin files to a temporary folder, which let me log in (and gave me the clue that a plugin was the problem).
I eventually narrowed it down to an old version of the WordPress Database Backup plugin. When I deleted it and installed the new version, it all worked again.
Forum: Fixing WordPress
In reply to: Tags Drop Down ListHere’s the code I’m using for a basic dropdown list of tags.
<?php if ($tags = get_tags( array('orderby' => 'name') )) { echo '<form action="'.get_bloginfo('url').'" method="get">'; echo '<select name="tag" id="tag" class="postform">'; foreach ($tags as $tag) { echo '<option value="'.$tag->slug.'">'.$tag->name.'</option>'; } echo '</select> '; echo '<input type="submit" name="submit" value="view" />'; echo '</form>'; } ?>