GoDaddy Domain Name for $0.99

GoDaddy

Looking to start a website? Check out these great GoDaddy domain name deals!

Currently at GoDaddy, you can register any new domain name for a year for just $0.99! Simply enter coupon code SMB99F at checkout to receive this price. Normally, these cost $11.99 or more!

If you do decide to purchase a domain, you will have to renew it every year. Be sure to check the GoDaddy emails for discount codes to lower the price. Savings.com always has some great GoDaddy coupon codes listed too.

Plus ICANN fee of $0.18 per domain name per year for .COM. Offer valid for residents of the U.S. and Canada only. Applies to the first year only of one new registration per customer. One use per code per customer. Cannot be used in conjunction with any other offer, sale, discount or promotion. Customers may not use gift cards, CCAvenue, In-Store Credit, PayPal, or AliPay to redeem this offer. Offer expires after 10,000 redemptions or at Go Daddy’s discretion (whichever comes first).

HostGator: 30% off Hosting + $1 off a Domain Name

HostGator

In the market for new website hosting? HostGator has a great new coupon code available to use. Through May 15, 2013, take 30% off the first invoice of any hosting package you choose at HostGator with coupon code spring30. You can also get $1 off the purchase of any domain name by using the same coupon code.

HostGator Coupon Code
spring30 – 30% off first invoice of hosting + $1 off domain name
Valid through May 15, 2013

How to Redirect ShopAtHome.com Affiliate Links to Your Ebates Referral Link

SAH Affiliate

Many of you are upset about ShopAtHome.com‘s decision to close the Very Important Blogger affiliate program. Or, maybe the recent events that have occurred have made you question the integrity of ShopAtHome.com.

If you’ve decided not to promote the cash back company anymore, what do you do with the affiliate links already on your site? Don’t give ShopAtHome.com those anchor links! Instead, redirect the existing links to another cash back site, like Ebates.

To accomplish this, simply insert the following code into your theme’s functions.php file (or custom_functions.php). Make sure to replace YOUR LINK with your Ebates referral link.

If you’re using the Thesis theme for WordPress, select the Custom File Editor under the Thesis menu. Change the file you’re editing to custom_functions.php, then paste the following code at the bottom of the file, before the ?> (if there is one).

function replacesah($text) {
$return = str_replace('href="http://www.shopathome.com', 'href="YOUR EBATES LINK"', $text);
$return = str_replace('href="http://www.shopathome.com', 'href="YOUR EBATES LINK', $return);
$return = str_replace('target = "_blank" href = "#', 'href = "#', $return);
$return = str_replace(' target = "_blank">', '>', $return);
return $return;
}
add_filter('the_content', 'replacesah');
add_filter('comment_text', 'replacesah');

Save the file, and you’re done! All links that contain www.ShopAtHome.com will now be redirected to your Ebates referral link automatically!

10 Ways to Secure Your WordPress Based Website

If your WordPress site has ever been hacked, or you’d like to prevent it from being hacked, here are a few tips on how to secure your WordPress based blog. Please submit the project request form if you require assistance with any of the tips below.

1. Use Secure Passwords

I hope this is obvious to most of you, but passwords like “password” or your pet’s name are not secure. You should be using a password that’s at least 10 characters long, and it should contain uppercase and lowercase letters, numbers, and special symbols. The more characters there are in your password, the less chance you have of getting hacked.

One of the best ways to get a secure password is to use an online password generator.

2. Don’t Use Admin As Your Username!

If you are using admin as your username, change it immediately! If your username is admin, hackers already know half of what they need to log in.

Create a new account for yourself in the Users panel of WordPress. Log in to that new account, then delete the admin account. When you delete the account, make sure to attribute the posts to your new account!

3. Keep Up To Date

If you’re using an old version of WordPress, there are likely many security vulnerabilities that could result in your site getting hacked. The same is true for plugins, so keep those up to date!

4. Change Permissions

Generally, permissions for files and folders should be set as follows. Use a FTP client like FileZilla to make these changes.

  • Folders: 755
  • Files: 644

5. Hide WordPress Version

Your WordPress version gives hackers ideas about how to best attack your site. Place this code in your theme’s functions.php file to hide the WordPress version.

<?php remove_action('wp_head', 'wp_generator'); ?>

6. Add Authentication Keys

Take a peek at your wp-config.php file and see if it includes authentication keys. If it doesn’t, visit the WordPress API and grab your random keys. Here’s what an example file would look like:

define('AUTH_KEY',         'N4 <I0 ~l70/=<y>BTvm9m.zX^N+4L@OK~;=,JqXZb58V6exiR_R^QSm|z0-Ts+N');
define('SECURE_AUTH_KEY',  '=j+({-GRWxYbAU[-|tfU@_2[p>:Yl(VV3uq}ZdM) h)cG+/anf}c,}{@oVD8 kzl');
define('LOGGED_IN_KEY',    'wK:WK:)[0.d`5k;r&[~8.3DcuOee?:W9!b$]odZ^v/(IiMdb0O?<IB?mdHf3`VCC');
define('NONCE_KEY',        'mG-VUfq/A4:?3}a|B<*NdGyk^wE*_`zRJX[VVfvm&y/B;%9O[bX/A5j3rkW*d.jA');
define('AUTH_SALT',        '2>N6igpu*Idk+%=&6]Z4Vc)-;/BOdiec0=N?sgcWK4$|T8kJP1>]/Nn%r*QP9|n^');
define('SECURE_AUTH_SALT', 'F#9^SVxj6ZO_*J0%CGUFK}P !q-v<N(Is|h@<N,ze6sQ+%n@fk[-y-zBJQS!:hIs');
define('LOGGED_IN_SALT',   'evjn3aEM0UA8UF|du|I]WSG.i_B|@)^=.-5-qY)p}m9[kwVD|gjVOj[l_(?S9W%<');
define('NONCE_SALT',       ':YLC?hr7D<))Jt9S;U#+7c9Nsk148rImy;M8NWHCEYaqr0he]tE}JV9vrRtE/ppe');

7. Hide Login Errors

While it’s useful to know why you can’t log in to your blog if you entered your password wrong, it’s also useful to hackers. Place this in your theme’s functions.php file to hide the error message:

add_filter('login_errors',create_function('$a', "return null;"));

8. htaccess Security Rules

Place the following rules in your htaccess file. These rules protect the htaccess and wp-config.php files, disables directory browsing, and disables the server signature.

# Protect htaccess
<files .htaccess>
order allow,deny
deny from all
</files>
 
# Disable server signature
ServerSignature Off
 
# Protect config
<files wp-config.php>
order allow,deny
deny from all
</files>
 
# Disable directory browsing
Options -Indexes

9. Install Security Plugins and Services

Some of my favorite security plugins are WP Security Scan and Login Lockdown.

Website Defender is a service that scans your server for any changes that have occurred. It will send you an email if there is something suspicious going on so you can investigate further.

10. Change Database Table Prefix

This can be completed simply with the WP Security Scan plugin. Select the Database tab under the plugin, and back up your site first. Enter a new prefix and hit Start Renaming.

Server Hacked? I Can Help!

Hacked by Tiger M te

If your site is hosted on InMotion Hosting, you may have been greeted to a screen like the one above this morning. A vulnerability has been found in the InMotion servers that allowed someone to hack most of the sites hosted there.

If your site was compromised, you will need to replace your index.php files with fresh copies. If you have no idea how to fix it, let me help! For $25, I will log in to your server and fix the problem for you. If you would like, I can also install some security protection, so the chances of this happening again are slim.

To submit a request for help, please fill out the project request form. We’ll be in touch as soon as possible, and I do my best to get this message off your site!