Helen Hou-Sandi
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: my site is completely goneAlright, now go and delete that empty plugins folder and rename plugins-old back to plugins. Your previous plugins will now reappear in the dashboard but won’t be activated. Be sure to run any updates first, and then carefully re-activate your plugins one by one, keeping track of what you’re doing. If one of them breaks your site, use your GoDaddy file manager to rename that particular plugin’s folder (inside the plugins folder) and it will deactivate itself again. Then also come back here and report any plugins you find that aren’t working π
Forum: Fixing WordPress
In reply to: my site is completely goneIn the wp-content folder, there should be another folder named plugins. Rename that folder to something else, like plugins-old and create a new, empty folder called plugins. That way the plugins won’t be found and they’ll be deactivated. That may not be the source of the problem, but at least we’ll start somewhere.
Forum: Fixing WordPress
In reply to: my site is completely goneDo you know how to use your web host’s file manager? Also, a link to your site might be helpful.
Forum: Fixing WordPress
In reply to: my site is completely goneHave you tried the steps listed in the troubleshooting master list? http://wordpress.org/support/topic/troubleshooting-wordpress-32-master-list?replies=7
Especially:
Have you tried:
– deactivating all plugins (yes, all) to see if this resolves the problem. If this works, re-activate the plugins one by one until you find the problematic plugin(s). Don’t forget the ones in mu-plugins. If you can’t get into your admin dashboard, try resetting the plugins folder by FTP or PhpMyAdmin. Sometimes, an apparently inactive plugin can still cause problems.
– switching to the Twenty Eleven theme to rule out any theme-specific problems.
– manually upgrading. When all else fails, download a fresh copy of the latest.zip file of 3.2 (top right on this page) to your computer, and use that to copy up. You may need to delete the wp-admin and wp-includes folders on your server. Read the Manual Update directions first!
Forum: Fixing WordPress
In reply to: Hoe to Edit the Contact Form Notification MessageIs there a plugin on the site that deals with contact forms?
Forum: Fixing WordPress
In reply to: I tried to upgrade and poof went my blogI think the original poster (qrazy) has to mark it, so don’t worry!
Forum: Themes and Templates
In reply to: Admin LoginYou might try this: http://digwp.com/2011/01/simpler-login-url/
Plugin based on that post, if you’re not comfortable with it: http://wordpress.org/extend/plugins/ozh-simpler-login-url/
Forum: Fixing WordPress
In reply to: I tried to upgrade and poof went my blogBoth of your sites seem just fine. Please mark this as resolved.
Forum: Fixing WordPress
In reply to: No side stuff on post pagesYou might try taking a look at this post: http://futurewebblog.com/add-sidebar-support-posts-twenty-eleven-theme/
Forum: Fixing WordPress
In reply to: Taking out the trashThe Trash (comments, posts, etc.) is emptied every 30 days by default. There are ways to change that behavior: http://wordpress.stackexchange.com/questions/7736/turn-off-automatic-trash-deletion
Forum: Fixing WordPress
In reply to: No side stuff on post pagesWhat theme are you using? It’s probable that whatever theme you’re using doesn’t use sidebars on single post pages.
Forum: Fixing WordPress
In reply to: Removing "Comments Off" from Blog PageYou’ll need to look for “the Loop” in one or some of your template files (probably
index.php, among others) and take out the part where it shows the comments, which will likely be right afterthe_title(). Looks like it’ll be from<span class="commr">to the</span>two lines later. The loop will start with something likewhile ( have_posts() ) : the_post();.Edit: Jeez Chip, we keep overlapping. I should have refreshed before actually submitting! π
Forum: Fixing WordPress
In reply to: Can't Access the Custom Design UpgradeNo problem!
Forum: Fixing WordPress
In reply to: Can't Access the Custom Design UpgradeThe custom design upgrade is available for the hosted WordPress.com version, not self-hosted installs. If you’re using WordPress.com, you might want to try their forums instead: http://en.forums.wordpress.com/
Forum: Fixing WordPress
In reply to: help with Firebug for WordPressFirebug can only show you what is there in your code, it can’t read your mind and know what’s “wrong”. If you are selling your web design services, you should be able to look at the CSS that’s listed for a given element and figure out what is making it display in a way that you don’t want it to (e.g. it’s not wide enough, it’s inheriting a color from somewhere else, etc.). There is no way for a computer to know that, say, you don’t want something to be green. As far as the computer is concerned, the code told it to be green so there it is. It’s up to you as the human to figure out what code is making that undesired result happen. The only errors a computer can tell you about are technical/syntax ones, e.g. something spelled wrong or not found.