Setting Up Private Nameservers at Godaddy

To set up a private nameserver in godaddy:

  1. Go to your domain panel and click manage domains
  2. Find the domain that you want to create the private name servers for
  3. Click add on the Host Summary section on the bottom left hand side
  4. enter ns1 for the host name, and enter your primary IP for the IP address and click ok
  5. click on add again and enter ns2, and enter the same IP except 1 number higher. So if your primary ip was 192.168.0.1, the second ip you would use would be 192.178.0.2
  6. Click OK

Read the rest of this entry »

Interspire Shopping Cart Page Title Hack

1. You can make a new page template in the /templates/YOURTEMPLATE/ folder eg. _page1.html (ISC has some documentation on this)

2.edit this file to point to: %%Panel.HTMLHead1%% 

3. Make a new HTMLHead1.html page in the /panels folder. 
( just duplicate the HTMLhead.html file)

www vs non-www: htaccess 301 Redirect For SEO

Put the below code into your .htaccess file to force the www version of your website. This prevents both versions of your website from getting indexed and losing out on link equity, getting rid of duplicate content, and increasing crawl depth.

RewriteEngine On
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]