Shane Gowland
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Slow Admin ..What browser are you using? Does the same thing occur in a different browser?
Forum: Fixing WordPress
In reply to: How do i get the API key so that i can use wp stat?It’s the same as the key you use for Akismet.
Forum: Fixing WordPress
In reply to: Slow Admin ..Try doing a re-install of the /wp-admin/ folder from a freshly downloaded copy of WordPres.
Forum: Fixing WordPress
In reply to: .htaccess is infected.htaccess is a plain text file. It cannot be “infected” per se, only manipulated by adding rules with malicious intention. Your site has been hacked by an attacker.
You should be able to open it and remove the lines that are redirecting users. If you can’t find them, simple delete the file via FTP and then replace it with a new one.
Make sure you change your hosting account passwords, update WordPress and all your plugins to the latest version and make sure .htaccess is not world writeable – CHMOD 644.
Read over some WordPress security guides and hopefully you won’t get hacked again.
Forum: Fixing WordPress
In reply to: CAN'T LEAVE COMMENTS ON WORDPRESS POST…I’m assuming you recently moved your site from a subdirectory to the root directory.
When posting a comment, it attempts to connect to ryanlairdst.com/wordpress/wp-comment.php; which returns a zero-byte response.
You need to correct your wp-config.php file to remove any references to /wordpress/ and point everything directly at your domain name.
Forum: Fixing WordPress
In reply to: How to change background color?You would also need to remove (or replace) this line in your other header.php template file.
<style type="text/css"> body { background-color: #FFFFFF; } </style>Changing this would invalidate the need to perform the instructions I posted above.
Forum: Fixing WordPress
In reply to: How to change background color?Open the file style.css in your theme directory and add a rule to change the colour of the background. Looking at your code, you would need to replace:
body { font-family: Helvetica, Arial, sans-serif; }with…
body { font-family: Helvetica, Arial, sans-serif; background-color: #000000; }#000000 is the hex representation of “black.” Look at this chart to find a colour you like.
Forum: Fixing WordPress
In reply to: WordPress freezing or running slow frequentlyIt could also be that your sites traffic is too much for your web hosting account to handle, and it’s time to upgrade.
Forum: Fixing WordPress
In reply to: How can i change the registration forms fieldsThere are quite a few free plugin available for this, just search through the Extend repository.
If you need something a little more “commercial-grade” this plugin looks interesting: http://tribulant.com/plugins/view/7/wordpress-custom-fields-plugin
Forum: Fixing WordPress
In reply to: options for having a mirror, cdn, backup server?I believe they are the same thing. I would confirm that, but your pages source code is murderously difficult to read and I’m pressed for time 😛
Forum: Fixing WordPress
In reply to: options for having a mirror, cdn, backup server?Go to the Facebook Likebox page (it’s somewhere on Facebook.com, try a Google search) and just copy whatever ID number/url the generator gives you.
There is nothing I know of for Twitter click following. Most users prefer to see the kind of tweets you create before agreeing to follow you, so it might be a good idea to use a “latest tweet” or “tweet feed” widget on your site somewhere. The Extend -> Plugins has a whole bunch of them. Many themes have them baked in too.
Forum: Fixing WordPress
In reply to: options for having a mirror, cdn, backup server?The first one – RE theme recommendations.
Look around the big theme marketplaces and stores. My personal favourites are WooThemes and Themeforest.
Second question – RE Like buttons.
I always prefer to have social networking widgets/icons build directly into my theme. I’ve made my own Facebook button using the API which sites in the sidebar of one of my sites (http://freewareninja.com/)Here is the code I used: (You will need to replace the URL obviously)
<div align="center" style="clear:both;"> <div align="center" style="width:260px;background-color:#F3F3F3;border:1px solid #ccc"> <iframe src="http://www.facebook.com/plugins/likebox.php?href=http://www.facebook.com/pages/Freeware-Ninja/211784108839935&width=260&colorscheme=light&show_faces=false&stream=false&header=false&height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:260px; height:62px;" allowTransparency="true"></iframe> </div> </div>You’re right that there are not many Twitter buttons available that look good. I use the official Twitter button inside my posts themselves on a few site. If you are just looking for a good static link I once again suggest making one yourself. You can get some good Twitter graphics from sites like iconfinder.com which you can wrap in a bordered box using the code I poster for Facebook, minus the Facebook stuff 😉
Forum: Fixing WordPress
In reply to: options for having a mirror, cdn, backup server?No problem, there is nothing more annoying than asking a question and not getting a decent answer. I’m glad I could be of some help 🙂
Forum: Fixing WordPress
In reply to: Need to retrieve the Visual tools barWhat do you mean “retrieve”? They can hardly run away…
If you mean that they are no longer loading, this is likely because of some sort of CSS/JS/HTML minification or compression that is being performed by pages served by your server. Third party services like CloudFlare can also cause problems like these.
Forum: Fixing WordPress
In reply to: options for having a mirror, cdn, backup server?I’m going to provide three answers for you 🙂
Option 1
CloudFlare provide a free CDN service that (aside from the “beta” features) works really well with WordPress. It can even continue to display a “cache” of your site when your server is offline.Option 2
You could set up another identical install of WordPress on another hosting account/server. When the servers are running side by side, you could use a plugin like FeedWordPress (http://feedwordpress.radgeek.com/) to aggregate all your posts over to the backup site.If your DNS provider supports “DNS Failover” you can set it to redirect all traffic to server #2 when your primary server is detected to be offline.
This is a really choppy, ineloquent method that I would recommend against, but in my experience… it actually works, and is easy to set up.
Option 3
Invest in a proper backup service (VaultPress) and a powerful CDN provider (Akamai/Level3/MaxCDN). Free/low cost solutions can work great, but if you’re talking freaky-high traffic and 99.999^% uptime, you need to splash some cash.