John H
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Recovering Lost PostsHi Paul.
As I understand it, you have a new clean install of WP and you need to upload your old posts from the other broken blog.
You need a backup of the old blog’s database. It will be a .sql file.
Once it’s downloaded, just restore that database to your new database. Here’s how:
http://wpbloghost.com/tutorials/how-to-restore-your-wordpress-database-using-phpmyadmin/If you haven’t downloaded the database yet, there’s another video on our site which will show you how to “back up” your database.
Once you restore that old database, your posts should be back.
Forum: Fixing WordPress
In reply to: Can’t Log-In,That could be so many things.
If you haven’t changed anything and your WP just all of a sudden stopped working, contact your web hosting company. There could be an issue on their side.
Forum: Fixing WordPress
In reply to: My blog doesnt work with IEIt was working for me just fine. Did you get it fixed?
Using IE8
There is no “standard” .htaccess file; however, if you have permalinks set up then WordPress will write some code in there for you.
For security purposes, you should use your .htaccess file to help lockdown your WordPress installation.
Forum: Everything else WordPress
In reply to: Statistics suggestions?I know, it is a bit frustrating, isn’t it? I believe it has something to do with how these different programs measure things.
Most people use and trust Google Analytics. There’s an interesting discussion going on about stat programs found on a blog called Blogging Without A Blog.
There’s also an advance program called Woopra many people like. And if you’re looking for an actual php program that installs on your server, look into phpMyVisits: http://www.phpmyvisites.us/
Forum: Fixing WordPress
In reply to: TinyMCE not working!!!I have the same problem with my TinyMCE editor and it’s not an issue with a plugin. I’m waiting for WP 2.8.1 to come out and hopefully that will fix it.
For now, try disabling different plugins and see if that fixes the problem. Also, check out this article:
Have you tried disabling plugins? Could be one of those causing a problem.
Make sure for some weird reason there is no redirects in your root .htaccess file.
Forum: Fixing WordPress
In reply to: Password ResetGo here:
http://codex.wordpress.org/Resetting_Your_Passwordand skip to the part: Through phpMyAdmin
You can access phpMyAdmin through your web hosting control panel under Databases.
Forum: Fixing WordPress
In reply to: Get rid of gap between post and navbarGo to your style.css file and look for this chunk of code:
#featured-th { height:57px; margin:0 0 30px; }Either comment it out with /* and ending */ or set all values to 0px.
Check how it looks in Internet Explorer, too. If you have an ie7.css file, you’ll need to change the same values there, too.
Forum: Fixing WordPress
In reply to: Remove comments from the whole siteNo problem. If you’re not familiar with working with code, it’s probably best to stay away from that one.
Did the other option work for you?
Forum: Fixing WordPress
In reply to: Proper WP file permissions (recovering from hack)Make sure to check out this article, too:
http://codex.wordpress.org/Hardening_WordPressI’ve also blogged about security tips on our blog. Check the tag cloud for security topics or the WordPress category.
777 for everything is definitely not right. Also, install the Blue Trait Event Viewer plugin so you can see what all your WordPress installation is doing (emails sent out, unauthorized logins, etc.). Make sure to lock down the plugin so it can’t easily be deactivated (see the instructions).
Forum: Fixing WordPress
In reply to: Remove comments from the whole siteA couple methods to remove the comments.
1. Go to your WP Dashboard | Settings | Discussion in the left sidebar
Uncheck:
– Allow link notifications from other blogs (pingbacks and trackbacks.)
– Allow people to post comments on new articles2. Comment out the actual code in your template
Go to your WP Dashboard | Appearance | Editor and on the right side under Theme Files, you’ll want to edit your single.php file and page.php file.
Look near the bottom of these files for code that references your comments call to action. Should look something like this:
<div id=”comments”>
Comment out the block of code referring to displaying your comments on your pages and posts.
Forum: Fixing WordPress
In reply to: How to add the “www” to my urls?Try this Google Search. Basically you can do it through .htacess.
I’ve never found the need to rewrite to www so I haven’t experimented with it, but that’s how you’d do it.
Forum: Fixing WordPress
In reply to: What possibley could have happened here, everything goneHave you changed your Permalink structure? Sometimes this can cause an issue for a bit.
Forum: Fixing WordPress
In reply to: Stpping the hackersYou can try hardening your WordPress blog but keep in mind a few things.
1. If the hacker is getting in through the server (your host), there’s nothing you can do about it.
2. If they are already hacking into your system, it might be hard to clean out everything they’ve done. One of the first things a hacker will do (or should if that’s their trade) is make sure your blog is easily hackable for anyone else.
Also, to go through line by line of your code to find all infected areas might be like searching for a needle in a haystack. If your site isn’t too big, you may consider a new install.
SEO Egghead has a great Firewall plugin. Also, you can install the Event Viewer plugin to see when things change in your blog. There’s a way to lock it down, too, so no one can deactivate the plugin (do this through your hosting control panel). Might give you some insights to where the people are doing things.
We also provide security services, however, nothing is ever full proof, especially if your site’s been hacked over and over again. Hopefully, it’s just some script sitting somewhere and not multiple hacks.
Good luck.