<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.hostek.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Chrisw</id>
		<title>Hostek.com Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.hostek.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Chrisw"/>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/Special:Contributions/Chrisw"/>
		<updated>2026-04-14T23:49:31Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.24.2</generator>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=ISAPI_Rewrite&amp;diff=2479</id>
		<title>ISAPI Rewrite</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=ISAPI_Rewrite&amp;diff=2479"/>
				<updated>2015-05-08T23:23:54Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Non-www, non-HTTPS to www, HTTPS redirects */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
= ISAPI_Rewrites and Redirects Version 3 =&lt;br /&gt;
&lt;br /&gt;
ISAPI_Rewrite Version 3 is a powerful URL manipulation engine based on regular expressions. Hostek.com has lots of experience with Isapi_Rewrite Hosting. Here are a couple of examples of using Isapi_Rewrite Version 3:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;NOTE:&amp;lt;/b&amp;gt; Place the rewrite rules in a file named .htaccess and place it at the web root (ie, /wwwroot folder)&amp;lt;br /&amp;gt;If you do not have a .htaccess file created already then use a text editor like Notpad and save the file as a .htaccess or use the File Manager in the hosting control panel to create the .htaccess file on the server.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Simple Redirects and Rewrites ==&lt;br /&gt;
&lt;br /&gt;
==== Redirecting to a different domain ====&lt;br /&gt;
If you need to redirect your website to another website&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap;&lt;br /&gt;
white-space: -moz-pre-wrap;&lt;br /&gt;
white-space: -pre-wrap;&lt;br /&gt;
white-space: -o-pre-wrap;&lt;br /&gt;
word-wrap: break-word&amp;quot;&amp;gt;&lt;br /&gt;
RewriteEngine On&lt;br /&gt;
&lt;br /&gt;
RewriteCond %{HTTP_HOST} ^(www\.)?domain\.com$ [NC]&lt;br /&gt;
RewriteRule ^(.*)$ http://www.newdomain.com/$1 [QSA,R=301]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Rewrite a Folder to another Folder ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap;&lt;br /&gt;
white-space: -moz-pre-wrap;&lt;br /&gt;
white-space: -pre-wrap;&lt;br /&gt;
white-space: -o-pre-wrap;&lt;br /&gt;
word-wrap: break-word&amp;quot;&amp;gt;&lt;br /&gt;
RewriteEngine on&lt;br /&gt;
RewriteBase /&lt;br /&gt;
&lt;br /&gt;
RewriteRule ^oldfolder$ /correctfolder [NC,R=301,L] &lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Redirect File Names ====&lt;br /&gt;
To have your index.htm page auto redirect to index.asp user this example&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap;&lt;br /&gt;
white-space: -moz-pre-wrap;&lt;br /&gt;
white-space: -pre-wrap;&lt;br /&gt;
white-space: -o-pre-wrap;&lt;br /&gt;
word-wrap: break-word&amp;quot;&amp;gt;&lt;br /&gt;
RewriteEngine on&lt;br /&gt;
&lt;br /&gt;
RewriteRule index.htm index.asp [R=301,L]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Subfolder Rewrite ====&lt;br /&gt;
To redirect your domain to a subfolder of that domain example: www.domain.com to www.domain.com/folder&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap;&lt;br /&gt;
white-space: -moz-pre-wrap;&lt;br /&gt;
white-space: -pre-wrap;&lt;br /&gt;
white-space: -o-pre-wrap;&lt;br /&gt;
word-wrap: break-word&amp;quot;&amp;gt;&lt;br /&gt;
RewriteEngine On&lt;br /&gt;
&lt;br /&gt;
# Exclude requests already going to /subfolder to avoid an infinite loop&lt;br /&gt;
RewriteRule ^subfolder.*$ - [NC,L]&lt;br /&gt;
&lt;br /&gt;
# Rewrite normal requests to /subfolder&lt;br /&gt;
RewriteRule ^(.*)$ /subfolder/$1 [L]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== non-www. to www. Redirects ====&lt;br /&gt;
&lt;br /&gt;
Redirecting non-www version to www., example domain.com to www.domain.com&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap;&lt;br /&gt;
white-space: -moz-pre-wrap;&lt;br /&gt;
white-space: -pre-wrap;&lt;br /&gt;
white-space: -o-pre-wrap;&lt;br /&gt;
word-wrap: break-word&amp;quot;&amp;gt;&lt;br /&gt;
RewriteEngine on&lt;br /&gt;
&lt;br /&gt;
RewriteCond %{HTTP_HOST} !^$&lt;br /&gt;
RewriteCond %{HTTP_HOST} !^www\. [NC]&lt;br /&gt;
RewriteCond %{HTTPS}s ^on(s)|&lt;br /&gt;
RewriteRule ^ http%1://www.%{HTTP_HOST}%{REQUEST_URI} [R=301,L]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== URL Rewrite ====&lt;br /&gt;
&lt;br /&gt;
Suppose you have URL like www.example.com/foo.asp?a=A&amp;amp;b=B&amp;amp;c=C and you want to access it as www.example.com/foo.asp/a/A/b/B/c/&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap;&lt;br /&gt;
white-space: -moz-pre-wrap;&lt;br /&gt;
white-space: -pre-wrap;&lt;br /&gt;
white-space: -o-pre-wrap;&lt;br /&gt;
word-wrap: break-word&amp;quot;&amp;gt;&lt;br /&gt;
RewriteEngine on&lt;br /&gt;
RewriteRule ^(.*?\.asp)/([^/]*)/([^/]*)(/.+)? $1$4?$2=$3 [NC,LP,QSA]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== WordPress Permalinks ====&lt;br /&gt;
&lt;br /&gt;
WordPress Permalinks using mod_rewrite are for Linux, but ISAPI_Rewrite does offer the equivalent. If you want to have index.php not show in the url try using these in your .htaccess file.&lt;br /&gt;
&lt;br /&gt;
If your WordPress site is in the wwwroot folder.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap;&lt;br /&gt;
white-space: -moz-pre-wrap;&lt;br /&gt;
white-space: -pre-wrap;&lt;br /&gt;
white-space: -o-pre-wrap;&lt;br /&gt;
word-wrap: break-word&amp;quot;&amp;gt;&lt;br /&gt;
# BEGIN WordPress&lt;br /&gt;
&lt;br /&gt;
#Options +Followsymlinks&lt;br /&gt;
RewriteEngine On&lt;br /&gt;
RewriteBase /&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-f&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-d&lt;br /&gt;
RewriteRule . /index.php [NC,L]&lt;br /&gt;
&lt;br /&gt;
# END WordPress&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If your WordPress site is in a subfolder.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap;&lt;br /&gt;
white-space: -moz-pre-wrap;&lt;br /&gt;
white-space: -pre-wrap;&lt;br /&gt;
white-space: -o-pre-wrap;&lt;br /&gt;
word-wrap: break-word&amp;quot;&amp;gt;&lt;br /&gt;
# BEGIN WordPress&lt;br /&gt;
&lt;br /&gt;
#Options +Followsymlinks&lt;br /&gt;
RewriteEngine On&lt;br /&gt;
RewriteBase /&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-f&lt;br /&gt;
RewriteCond %{REQUEST_FILENAME} !-d&lt;br /&gt;
RewriteRule . /subfolder/index.php [NC,L]&lt;br /&gt;
&lt;br /&gt;
# END WordPress&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HTTP to HTTPS SSL Rewrites ==&lt;br /&gt;
&lt;br /&gt;
==== SSL ====&lt;br /&gt;
Suppose you have URL like http://shop.example.com and you want your visitors to be redirected to https://shop.example.com&lt;br /&gt;
&lt;br /&gt;
Here is example how to force SSL for certain folder. Simply put following rules into the .htaccess file in this folder:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap;&lt;br /&gt;
white-space: -moz-pre-wrap;&lt;br /&gt;
white-space: -pre-wrap;&lt;br /&gt;
white-space: -o-pre-wrap;&lt;br /&gt;
word-wrap: break-word&amp;quot;&amp;gt;&lt;br /&gt;
RewriteEngine on&lt;br /&gt;
&lt;br /&gt;
#Fix missing trailing slash char on folders&lt;br /&gt;
RewriteRule ^([^.?]+[^.?/])$ $1/ [R,L]&lt;br /&gt;
&lt;br /&gt;
#Redirect non-HTTPS to HTTPS&lt;br /&gt;
RewriteEngine on&lt;br /&gt;
&lt;br /&gt;
RewriteCond %{SERVER_PORT} !443&lt;br /&gt;
RewriteCond %{HTTP_HOST} ^(www\.)?(.+)$&lt;br /&gt;
RewriteRule ^(.*)$ https://%2/$1 [R,L]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Non-www, non-HTTPS to www, HTTPS redirects====&lt;br /&gt;
 RewriteEngine on&lt;br /&gt;
 RewriteCond %{SERVER_PORT} !443&lt;br /&gt;
 RewriteCond %{HTTP_HOST} !^$&lt;br /&gt;
 RewriteCond %{HTTP_HOST} !^www\. [NC]&lt;br /&gt;
 RewriteCond %{HTTPS} ^on(s)|&lt;br /&gt;
 RewriteRule ^(.*)$ https://www.%{HTTP_HOST}/$1 [R,L]&lt;br /&gt;
&lt;br /&gt;
==== Shared SSL ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap;&lt;br /&gt;
white-space: -moz-pre-wrap;&lt;br /&gt;
white-space: -pre-wrap;&lt;br /&gt;
white-space: -o-pre-wrap;&lt;br /&gt;
word-wrap: break-word&amp;quot;&amp;gt;&lt;br /&gt;
RewriteEngine on&lt;br /&gt;
&lt;br /&gt;
# handle non-www HTTPS redirects. Consecutive conditions are implicitly ANDed together.&lt;br /&gt;
RewriteCond %{SERVER_PORT} ^443$&lt;br /&gt;
RewriteCond  %{HTTP_HOST}  ^(?!www\.).*mywebsite\.com$&lt;br /&gt;
RedirectRule ^/(.*)$ https://secure#.ezhostingserver.com/mywebsite-com/$1 [R=301]&lt;br /&gt;
&lt;br /&gt;
# All requests arriving to this point either use www for the hostname, or use &lt;br /&gt;
# HTTP for the protocol. &lt;br /&gt;
&lt;br /&gt;
# handle non-www non-HTTPS redirects&lt;br /&gt;
RewriteCond  %{HTTP_HOST}  ^(?!www\.).*mywebsite\.com$&lt;br /&gt;
RedirectRule ^/(.*)$ http://www.mywebsite.com/$1 [R=301]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Site Crawlers ==&lt;br /&gt;
&lt;br /&gt;
Example on how to prevent certain spiders from crawling your site.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap;&lt;br /&gt;
white-space: -moz-pre-wrap;&lt;br /&gt;
white-space: -pre-wrap;&lt;br /&gt;
white-space: -o-pre-wrap;&lt;br /&gt;
word-wrap: break-word&amp;quot;&amp;gt;&lt;br /&gt;
RewriteEngine on&lt;br /&gt;
&lt;br /&gt;
RewriteCond %{HTTP_USER_AGENT} ^Baiduspider.*$&lt;br /&gt;
RewriteRule .* /block.htm&lt;br /&gt;
&lt;br /&gt;
RewriteCond %{HTTP_USER_AGENT} ^Yandex.*$&lt;br /&gt;
RewriteRule .* /block.htm&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Wild-Card Subdomains &amp;amp; Variables Rewrites ==&lt;br /&gt;
&lt;br /&gt;
Here is an example to show how to get the variables from positions 1 and 2 without it mattering how many items are in the URL. In other words, a good example for a rewrite rule for optional parameters.&lt;br /&gt;
&lt;br /&gt;
==== Variable URLs ====&lt;br /&gt;
Let's say you want to have a URL display like: http://your_domain.com/some-folder/34-77-some-key-word.html&lt;br /&gt;
But you want that to really process a query like:http://your_domain.com/folder/search.asp?country=34&amp;amp;city=77&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap;&lt;br /&gt;
white-space: -moz-pre-wrap;&lt;br /&gt;
white-space: -pre-wrap;&lt;br /&gt;
white-space: -o-pre-wrap;&lt;br /&gt;
word-wrap: break-word&amp;quot;&amp;gt;&lt;br /&gt;
RewriteEngine on&lt;br /&gt;
RewriteRule ^some-folder/([^-]+)-([^-]+)-.*$ /folder/search.asp?country=$1&amp;amp;city=$2&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Wild-Card Subdomains ====&lt;br /&gt;
&lt;br /&gt;
Rewrite all wild-card sub-domain requests to a folder without affecting &amp;quot;your_domain.com&amp;quot; or &amp;quot;www.your_domain.com&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap;&lt;br /&gt;
white-space: -moz-pre-wrap;&lt;br /&gt;
white-space: -pre-wrap;&lt;br /&gt;
white-space: -o-pre-wrap;&lt;br /&gt;
word-wrap: break-word&amp;quot;&amp;gt;&lt;br /&gt;
# Ignore requests that are already rewritten &lt;br /&gt;
RewriteRule ^subdomainfolder/.*$ - [NC,L]&lt;br /&gt;
&lt;br /&gt;
# Rewrite all requests to non-www sub-domains to /subdomainfolder &lt;br /&gt;
RewriteCond %{HTTP_HOST} !^(www\.)?your_domain\.com$ [NC] &lt;br /&gt;
RewriteRule ^(.*)$ /subdomainfolder/$1 [L]&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For more Examples and other uses please visit [http://www.helicontech.com/isapi_rewrite/doc/examples.htm#SEF Helicon Tech]&lt;br /&gt;
&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:ISAPI_Rewrite]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Testing_Your_Web_Site_Before_Changing_DNS&amp;diff=2465</id>
		<title>Testing Your Web Site Before Changing DNS</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Testing_Your_Web_Site_Before_Changing_DNS&amp;diff=2465"/>
				<updated>2015-04-13T05:14:53Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Linux */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Using Your Computer's Hosts File to Test Your Web Site==&lt;br /&gt;
When migrating your site to a new server, you want to test your site before updating the DNS to point to the new server. To do this you can use your computer's '''hosts''' file to force your computer to visit the new server when visiting your domain name. &lt;br /&gt;
===Introduction===&lt;br /&gt;
Your computer's '''hosts''' file is a local repository for resolving a domain name to an IP, and this method predates modern DNS systems. The computer checks its hosts file before making any DNS requests to resolve a domain. This allows you to adjust your hosts file to force your computer to visit a different IP address when visiting your domain name. &lt;br /&gt;
===Example===&lt;br /&gt;
Below is example from a Windows hosts file that shows ''google.com'' and ''www.google.com'' pointing to a different IP address than what is reported by a DNS lookup.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Copyright (c) 1993-2009 Microsoft Corp.&lt;br /&gt;
#&lt;br /&gt;
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.&lt;br /&gt;
#&lt;br /&gt;
# This file contains the mappings of IP addresses to host names. Each&lt;br /&gt;
# entry should be kept on an individual line. The IP address should&lt;br /&gt;
# be placed in the first column followed by the corresponding host name.&lt;br /&gt;
# The IP address and the host name should be separated by at least one&lt;br /&gt;
# space.&lt;br /&gt;
#&lt;br /&gt;
# Additionally, comments (such as these) may be inserted on individual&lt;br /&gt;
# lines or following the machine name denoted by a '#' symbol.&lt;br /&gt;
#&lt;br /&gt;
# For example:&lt;br /&gt;
#&lt;br /&gt;
#      102.54.94.97     rhino.acme.com          # source server&lt;br /&gt;
#       38.25.63.10     x.acme.com              # x client host&lt;br /&gt;
&lt;br /&gt;
# localhost name resolution is handled within DNS itself.&lt;br /&gt;
#	127.0.0.1       localhost&lt;br /&gt;
#	::1             localhost&lt;br /&gt;
192.168.1.204 google.com&lt;br /&gt;
192.168.1.204 www.google.com&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
===How to Edit the Hosts File===&lt;br /&gt;
====Windows PC (Windows 95 / 98 / Me / NT / 2000 / XP / 2003 / Vista / 7)====&lt;br /&gt;
#Open Notepad as Administrator: &lt;br /&gt;
##Click the Start menu, open All Programs --&amp;gt; Accessories&lt;br /&gt;
##Right-click Notepad and click '''Run as Administrator'''&lt;br /&gt;
#In Notepad click File --&amp;gt; Open and find the hosts file at the appropriate location:&lt;br /&gt;
#*'''Windows NT / 2000 / XP / 2003 / Vista / 7''':&amp;lt;pre&amp;gt;C:\windows\system32\drivers\etc\hosts&amp;lt;/pre&amp;gt;&lt;br /&gt;
#*'''Windows 95 / 98 / Me''':&amp;lt;pre&amp;gt;C:\windows\hosts&amp;lt;/pre&amp;gt;&lt;br /&gt;
#*'''''Please note that the file type drop-down menu needs to be changed to &amp;quot;All Files&amp;quot; to see the hosts file:''''' [[Image:edit_hosts_file2.jpg]]&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
#On the last line add your entry as shown below then save and close Notepad. This example assumes we want to point '''domainname.com''' to '''132.232.249.198'''. &amp;lt;pre&amp;gt;132.232.249.198 domainname.com&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Mac OS====&lt;br /&gt;
#Open a finder window and open your Applications folder&lt;br /&gt;
#Open the Utilities folder&lt;br /&gt;
#Locate the Terminal app and double-click it&lt;br /&gt;
#When the terminal opens, enter this command: &lt;br /&gt;
#*'''Mac OS 10.6 and higher''':&amp;lt;pre&amp;gt;sudo nano /etc/hosts&amp;lt;/pre&amp;gt;&lt;br /&gt;
#*'''Mac OS 10.5 and below''':&amp;lt;pre&amp;gt;sudo nano /private/etc/hosts&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Enter your Mac user's password when prompted&lt;br /&gt;
#On the last line add your entry as shown below. This example assumes we want to point '''domainname.com''' to '''132.232.249.198'''. &amp;lt;pre&amp;gt;132.232.249.198 domainname.com&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Press '''''ctrl'''''-'''''x''''', then press '''''y''''' when prompted to save your changes&lt;br /&gt;
&lt;br /&gt;
====Linux====&lt;br /&gt;
#SSH into your console or open your terminal if you run a GUI on your Linux machine.&lt;br /&gt;
#Enter this command: &amp;lt;pre&amp;gt;sudo nano /etc/hosts&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Enter your ''root'' password when prompted&lt;br /&gt;
#On the last line add your entry as shown below. This example assumes we want to point '''domainname.com''' to '''132.232.249.198'''. &amp;lt;pre&amp;gt;132.232.249.198 domainname.com&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Press '''''ctrl'''''-'''''x''''', then press '''''y''''' when prompted to save your changes&lt;br /&gt;
'''''Note''': If you plan to test with the '''www''' version of your domain name, you must add an entry for the '''www''' version of your domain to the hosts file.&amp;lt;br /&amp;gt;You may also need to '''[[Flush_DNS_Resolver_Cache|flush your computer's DNS resolver cache]]''' after making these changes too.''&lt;br /&gt;
&lt;br /&gt;
===Further Reading===&lt;br /&gt;
*[http://www.bleepingcomputer.com/tutorials/hosts-files-explained/ The Hosts File and what it can do for you]&lt;br /&gt;
*[http://www.howtogeek.com/howto/27350/beginner-geek-how-to-edit-your-hosts-file/ Beginner Geek: How To Edit Your Hosts File]&lt;br /&gt;
*[http://support.microsoft.com/kb/228760 How to use a Hosts file to test a site that uses host headers on an Intranet]&lt;br /&gt;
*[http://support.apple.com/kb/ta27291 Mac OS X: How to Add Hosts to Local Hosts File]&lt;br /&gt;
&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Resellers]]&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Railo]]&lt;br /&gt;
[[Category:Coldfusion]]&lt;br /&gt;
[[Category:VPS]]&lt;br /&gt;
[[Category:ColdFusion-VPS]]&lt;br /&gt;
[[Category:Linux-VPS]]&lt;br /&gt;
[[Category:Railo-VPS]]&lt;br /&gt;
[[Category:Windows-VPS]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Testing_Your_Web_Site_Before_Changing_DNS&amp;diff=2464</id>
		<title>Testing Your Web Site Before Changing DNS</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Testing_Your_Web_Site_Before_Changing_DNS&amp;diff=2464"/>
				<updated>2015-04-13T05:14:23Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Linux */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Using Your Computer's Hosts File to Test Your Web Site==&lt;br /&gt;
When migrating your site to a new server, you want to test your site before updating the DNS to point to the new server. To do this you can use your computer's '''hosts''' file to force your computer to visit the new server when visiting your domain name. &lt;br /&gt;
===Introduction===&lt;br /&gt;
Your computer's '''hosts''' file is a local repository for resolving a domain name to an IP, and this method predates modern DNS systems. The computer checks its hosts file before making any DNS requests to resolve a domain. This allows you to adjust your hosts file to force your computer to visit a different IP address when visiting your domain name. &lt;br /&gt;
===Example===&lt;br /&gt;
Below is example from a Windows hosts file that shows ''google.com'' and ''www.google.com'' pointing to a different IP address than what is reported by a DNS lookup.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Copyright (c) 1993-2009 Microsoft Corp.&lt;br /&gt;
#&lt;br /&gt;
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.&lt;br /&gt;
#&lt;br /&gt;
# This file contains the mappings of IP addresses to host names. Each&lt;br /&gt;
# entry should be kept on an individual line. The IP address should&lt;br /&gt;
# be placed in the first column followed by the corresponding host name.&lt;br /&gt;
# The IP address and the host name should be separated by at least one&lt;br /&gt;
# space.&lt;br /&gt;
#&lt;br /&gt;
# Additionally, comments (such as these) may be inserted on individual&lt;br /&gt;
# lines or following the machine name denoted by a '#' symbol.&lt;br /&gt;
#&lt;br /&gt;
# For example:&lt;br /&gt;
#&lt;br /&gt;
#      102.54.94.97     rhino.acme.com          # source server&lt;br /&gt;
#       38.25.63.10     x.acme.com              # x client host&lt;br /&gt;
&lt;br /&gt;
# localhost name resolution is handled within DNS itself.&lt;br /&gt;
#	127.0.0.1       localhost&lt;br /&gt;
#	::1             localhost&lt;br /&gt;
192.168.1.204 google.com&lt;br /&gt;
192.168.1.204 www.google.com&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
===How to Edit the Hosts File===&lt;br /&gt;
====Windows PC (Windows 95 / 98 / Me / NT / 2000 / XP / 2003 / Vista / 7)====&lt;br /&gt;
#Open Notepad as Administrator: &lt;br /&gt;
##Click the Start menu, open All Programs --&amp;gt; Accessories&lt;br /&gt;
##Right-click Notepad and click '''Run as Administrator'''&lt;br /&gt;
#In Notepad click File --&amp;gt; Open and find the hosts file at the appropriate location:&lt;br /&gt;
#*'''Windows NT / 2000 / XP / 2003 / Vista / 7''':&amp;lt;pre&amp;gt;C:\windows\system32\drivers\etc\hosts&amp;lt;/pre&amp;gt;&lt;br /&gt;
#*'''Windows 95 / 98 / Me''':&amp;lt;pre&amp;gt;C:\windows\hosts&amp;lt;/pre&amp;gt;&lt;br /&gt;
#*'''''Please note that the file type drop-down menu needs to be changed to &amp;quot;All Files&amp;quot; to see the hosts file:''''' [[Image:edit_hosts_file2.jpg]]&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
#On the last line add your entry as shown below then save and close Notepad. This example assumes we want to point '''domainname.com''' to '''132.232.249.198'''. &amp;lt;pre&amp;gt;132.232.249.198 domainname.com&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Mac OS====&lt;br /&gt;
#Open a finder window and open your Applications folder&lt;br /&gt;
#Open the Utilities folder&lt;br /&gt;
#Locate the Terminal app and double-click it&lt;br /&gt;
#When the terminal opens, enter this command: &lt;br /&gt;
#*'''Mac OS 10.6 and higher''':&amp;lt;pre&amp;gt;sudo nano /etc/hosts&amp;lt;/pre&amp;gt;&lt;br /&gt;
#*'''Mac OS 10.5 and below''':&amp;lt;pre&amp;gt;sudo nano /private/etc/hosts&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Enter your Mac user's password when prompted&lt;br /&gt;
#On the last line add your entry as shown below. This example assumes we want to point '''domainname.com''' to '''132.232.249.198'''. &amp;lt;pre&amp;gt;132.232.249.198 domainname.com&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Press '''''ctrl'''''-'''''x''''', then press '''''y''''' when prompted to save your changes&lt;br /&gt;
&lt;br /&gt;
====Linux====&lt;br /&gt;
#SSH into your console or open your terminal if you run a GUI on your Linux machine.&lt;br /&gt;
#Enter this command: &lt;br /&gt;
&amp;lt;pre&amp;gt;sudo nano /etc/hosts&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Enter your ''root'' password when prompted&lt;br /&gt;
#On the last line add your entry as shown below. This example assumes we want to point '''domainname.com''' to '''132.232.249.198'''. &amp;lt;pre&amp;gt;132.232.249.198 domainname.com&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Press '''''ctrl'''''-'''''x''''', then press '''''y''''' when prompted to save your changes&lt;br /&gt;
'''''Note''': If you plan to test with the '''www''' version of your domain name, you must add an entry for the '''www''' version of your domain to the hosts file.&amp;lt;br /&amp;gt;You may also need to '''[[Flush_DNS_Resolver_Cache|flush your computer's DNS resolver cache]]''' after making these changes too.''&lt;br /&gt;
&lt;br /&gt;
===Further Reading===&lt;br /&gt;
*[http://www.bleepingcomputer.com/tutorials/hosts-files-explained/ The Hosts File and what it can do for you]&lt;br /&gt;
*[http://www.howtogeek.com/howto/27350/beginner-geek-how-to-edit-your-hosts-file/ Beginner Geek: How To Edit Your Hosts File]&lt;br /&gt;
*[http://support.microsoft.com/kb/228760 How to use a Hosts file to test a site that uses host headers on an Intranet]&lt;br /&gt;
*[http://support.apple.com/kb/ta27291 Mac OS X: How to Add Hosts to Local Hosts File]&lt;br /&gt;
&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Resellers]]&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Railo]]&lt;br /&gt;
[[Category:Coldfusion]]&lt;br /&gt;
[[Category:VPS]]&lt;br /&gt;
[[Category:ColdFusion-VPS]]&lt;br /&gt;
[[Category:Linux-VPS]]&lt;br /&gt;
[[Category:Railo-VPS]]&lt;br /&gt;
[[Category:Windows-VPS]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=CPanel_Tutorials&amp;diff=2448</id>
		<title>CPanel Tutorials</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=CPanel_Tutorials&amp;diff=2448"/>
				<updated>2015-03-30T22:14:43Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* cPanel */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
== cPanel ==&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-addon.html How to create an Add-on Domain]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-autoresponder.html How to create an Auto-responder]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-catchall.html How to create a default (catch-all) email account]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-contact.html How to keep your contact information up to date]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-createmysql.html How to create a MySQL database]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-cronjob.html How to setup a cron job]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-diskusage.html Using the Disk Usage Viewer]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-error.html How to create custom error pages]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-fantastico.html An introduction to using Fantastico]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-filemanager.html Using File Manager]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-forwarder.html How to setup email forwarding (redirects)]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-ftp.html How to create additional FTP accounts]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-hotlink.html How to setup hotlink protection]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-indexmgr.html How to use the Index Manager]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-ipdeny.html How to use the IP Deny Manager]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-login.html How to Login]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-navigate.html Becoming familiar and Navigating around]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-park.html How to Park a Domain]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-phpmyadmin.html Managing MySQL databases with phpMyAdmin]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-popemail.html How to create a POP email account]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-protect.html How to password protect a directory]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-pwchange.html How to change your password in cPanel]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-rawlog.html How to manage the Raw Access Logs]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-redirects.html How to manage URL redirects]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-webdisk.html How to use Web Disk]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-style.html How to change your cPanel Style]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-subdomain.html How to create a subdomain]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-trace.html How to trace an email address]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/cpanel-x3-webmail.html How to use Webmail]&lt;br /&gt;
&lt;br /&gt;
== cPanel WHM Reseller ==&lt;br /&gt;
[http://hostek.com/tutorials/whm11_accesskey.html How to setup your Remote Access Key]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_addpackage.html How to create Hosting Packages]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_bandwidth.html How to limit bandwidth usage]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_branding.html Using cPanel Branding]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_create.html How to create a new hosting account]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_demo.html Disable or Enable mode]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_dns.html Managing DNS Zones]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_editpackage.html How to edit or delete hosting packages]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_feature.html Using the Feature Manager]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_login.html How to login to Webhost Manager]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_mail.html Using Mail Troubleshooter]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_modify.html How to modify an account]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_multi.html Using Multi-Account Functions]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_mx.html Managing MX entries]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_navigate.html Becoming familiar with, and navigating around]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_news.html Using cPanel/WHM News feature]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_park.html How to park a domain]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_password.html How to change an account password]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_quota.html How to modify an account's quota]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_skeleton.html Learning about the skeloton directory]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_ssl.html Generating and Installing SSL certificates]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_status.html Checking your server status and information]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_suspendaccount.html Suspending or unsuspending an account]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_suspendpage.html How to modify the suspended accounts page]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_terminate.html Terminate an account]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_theme.html How to change your WHM theme]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_upgrade.html How to Upgrade/Downgrade an account]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_whm.html What is the difference between WebHost Manager(WHM) and cPanel]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whm11_whmpass.html How to change your WHM password]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Control-Panels]]&lt;br /&gt;
[[Category:Tutorials]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Client_Control_Panel&amp;diff=2393</id>
		<title>Client Control Panel</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Client_Control_Panel&amp;diff=2393"/>
				<updated>2015-02-24T03:34:45Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* How to Manage My registered Domains in my account */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
==How To Edit/Change My Contact Details==&lt;br /&gt;
#To login, visit http://cp.hostek.com&lt;br /&gt;
#Username - use your Email Address: &lt;br /&gt;
#Password - use the one provided to you in the welcome e-mail&lt;br /&gt;
#Click the &amp;quot;'''Update Your Details'''&amp;quot; link to the right of &amp;quot;'''Account Information'''&amp;quot;.&lt;br /&gt;
#You will see a screen where you can edit all your information.&lt;br /&gt;
#Once you are done editing click the &amp;quot;'''Save Changes'''&amp;quot; button at the bottom of the screen&lt;br /&gt;
&lt;br /&gt;
==How to Add a New Contact or additional contacts==&lt;br /&gt;
#To login, visit http://cp.hostek.com&lt;br /&gt;
#Click the &amp;quot;'''Update Your Details'''&amp;quot; link to the right of '''Account Information'''., then click '''Contacts/Sub-Account's'''.&lt;br /&gt;
#Under '''Choose Contact''' select '''Add New Contact''' in the drop down menu, and click '''Go'''.&lt;br /&gt;
#Fill in the information needed. &lt;br /&gt;
#You can select which type of emails you want them to receive under the &amp;quot;'''Email Preferences'''&amp;quot; section at the bottom.&lt;br /&gt;
#Once you are done click on the &amp;quot;'''Save Changes'''&amp;quot; button at the bottom of the screen.&lt;br /&gt;
*To remove a '''Contact/Sub-Account''' follow the steps 1-2.&lt;br /&gt;
#Select a contact in '''Choose Contact'''.&lt;br /&gt;
#Click on '''Delete Contact''' at the bottom of the page.&lt;br /&gt;
&lt;br /&gt;
==How to add or edit your credit card information==&lt;br /&gt;
#To login, visit http://cp.hostek.com&lt;br /&gt;
#Username use your Email Address: &lt;br /&gt;
#Password use the one provided to you in the welcome e-mail&lt;br /&gt;
#Click the &amp;quot;'''Update Your Details'''&amp;quot; tab in the Top upper middle left of the screen., then click the &amp;quot;'''Change Credit Card Details'''&amp;quot; on the middle screen menu bar.&lt;br /&gt;
#Put the requested information carefully. Please double check your CC number when imputing it.&lt;br /&gt;
#Once you are done click on the &amp;quot;'''Save Changes'''&amp;quot; icon at the bottom of the screen.&lt;br /&gt;
&lt;br /&gt;
==How to change your billing password==&lt;br /&gt;
*To change your password&lt;br /&gt;
#To login, visit http://cp.hostek.com&lt;br /&gt;
#Username - use your Email Address: &lt;br /&gt;
#Password - use the one provided to you in the welcome e-mail&lt;br /&gt;
#Click the &amp;quot;'''Update Your Details'''&amp;quot; tab to the right of '''Account Information'''., then click &amp;quot;'''Change Password'''&amp;quot; on the middle screen menu bar.&lt;br /&gt;
#Enter your Existing Password, then the New Password and confirm the new password.&lt;br /&gt;
#Once you are done click on the &amp;quot;'''Save Changes'''&amp;quot; button at the bottom of the screen.&lt;br /&gt;
&lt;br /&gt;
==How to reset your billing password==&lt;br /&gt;
*To reset your password&lt;br /&gt;
#To login, visit http://cp.hostek.com&lt;br /&gt;
#Click on the &amp;quot;'''Request a Password Reset'''&amp;quot; link below the Login.&lt;br /&gt;
#Enter the &amp;quot;'''Email Address'''&amp;quot; that we have on file.&lt;br /&gt;
#If you have a security question setup then you will need to provide that answer as well. Hit the &amp;quot;'''Submit'''&amp;quot; icon.&lt;br /&gt;
#Now the it should say &amp;quot;Validation Email Sent&amp;quot;&lt;br /&gt;
#Once you receive the e-mail please click on the URL where it says &amp;quot;To reset your password, please visit the URL below:&amp;quot;&lt;br /&gt;
&lt;br /&gt;
==How to change the &amp;quot;Security Question&amp;quot;==&lt;br /&gt;
#To login, visit http://cp.hostek.com&lt;br /&gt;
#Username - use your Email Address &lt;br /&gt;
#Password - use the one provided to you in the welcome e-mail&lt;br /&gt;
#Click the &amp;quot;'''Update Your Details'''&amp;quot; to the right of '''Account Information''' then click the &amp;quot;'''Change Security Question'''&amp;quot; on the middle screen menu bar.&lt;br /&gt;
#If you have a security question set, enter the answer.&lt;br /&gt;
#Please choose a security question&lt;br /&gt;
#Please enter an answer, then confirm your answer.&lt;br /&gt;
#Once you are done click on the &amp;quot;'''Save Changes'''&amp;quot; icon at the bottom of the screen.&lt;br /&gt;
&lt;br /&gt;
Note - If you have forgotten the answer to your current security question, contact support for assistance.&lt;br /&gt;
&lt;br /&gt;
==How to Pay an invoice for Paypal and Credit card payments==&lt;br /&gt;
#To login, visit http://cp.hostek.com&lt;br /&gt;
#Username - use your Email Address: &lt;br /&gt;
#Password - use the one provided to you in the welcome e-mail&lt;br /&gt;
#Click the '''Billing''' menu at the top and select &amp;quot;'''My Invoices'''&amp;quot;.&lt;br /&gt;
#You will see a list of all your invoices on your account tracked by a invoice #&lt;br /&gt;
#Now find the invoice that you are needing to pay.&lt;br /&gt;
#Click on the &amp;quot;'''View Invoice'''&amp;quot; button on the right.&lt;br /&gt;
#Once you are in, verify the payment method is set to the correct method.&lt;br /&gt;
#Now click on the &amp;quot;'''Pay Now'''&amp;quot; button.&lt;br /&gt;
#If you are paying by paypal your paypal login screen should pop up. &lt;br /&gt;
#If paying by CC you can &amp;quot;'''Use Existing Card'''&amp;quot; or &amp;quot;'''Enter New Card Information Below'''&amp;quot;&lt;br /&gt;
#Make sure your information is set correctly.&lt;br /&gt;
#Now click on the &amp;quot;'''Click to Continue'''&amp;quot; icon.&lt;br /&gt;
#Proceed with the payment.&lt;br /&gt;
&lt;br /&gt;
==How to Manage My registered Domains in my account==&lt;br /&gt;
#To login, visit http://cp.hostek.com&lt;br /&gt;
#Username - use your Email Address: &lt;br /&gt;
#Password - use the one provided to you in the welcome e-mail&lt;br /&gt;
#Click the '''Domains''' menu and select &amp;quot;'''My Domains'''&amp;quot; from the drop-down.&lt;br /&gt;
#On this screen you will see a list of your registered/transferred domains, the registration date and the next due date (expiration date).&lt;br /&gt;
#To manage your domain name click on the little '''Notebook with a green arrow''' on it to the right middle of the screen.&lt;br /&gt;
#Here you can Enable/Disable auto renew. We recommend that you have auto renew enabled.&lt;br /&gt;
#If a domain is disabled from auto renew &amp;quot;WARNING! It will therefore expire and become inactive at the end of the current term unless manually renewed.&amp;quot; &lt;br /&gt;
#To renew a domain right now click on &amp;quot;'''Renew Domain'''&amp;quot; in the '''Domains''' menu.&lt;br /&gt;
#Select the domain you are wanting to renew and then click on the &amp;quot;'''Order now'''&amp;quot; button.&lt;br /&gt;
#To modify the WHOIS information for a domain names contact please click on the &amp;quot; '''Contact Information'''&amp;quot; Tab.&lt;br /&gt;
#Put the information needed and then click '''save'''. We recommend that you leave the administrative contact as us so we can manage the pre domain renewal notices.&lt;br /&gt;
#To get the EPP code click on the &amp;quot;'''Get EPP Code'''&amp;quot; Tab.&lt;br /&gt;
#To modify the name server for where your domain name points to input the name servers in the middle of the screen where it says Nameserver 1: and Nameserver 1: then click the &amp;quot;'''Save Changes'''&amp;quot; tab right under that.&lt;br /&gt;
&lt;br /&gt;
== How to Disable Auto Renew (or Enable Auto Renew)==&lt;br /&gt;
#To login, visit http://cp.hostek.com&lt;br /&gt;
#Username - use your Email Address: &lt;br /&gt;
#Password - use the one provided to you in the welcome e-mail&lt;br /&gt;
#Click the '''Domains''' menu and then &amp;quot;My Domains&amp;quot;&lt;br /&gt;
#Click on &amp;quot;Manage Domain&amp;quot; for the domain you would like to modify auto-renew settings&lt;br /&gt;
#Click on the &amp;quot;Auto Renew&amp;quot; tab&lt;br /&gt;
#The status of your Auto Renew setting will be displayed with a button to Enable/Disable auto-renew&lt;br /&gt;
&lt;br /&gt;
==How to Add New Services==&lt;br /&gt;
#To login, visit http://cp.hostek.com&lt;br /&gt;
#Username - use your Email Address: &lt;br /&gt;
#Password - use the one provided to you in the welcome e-mail&lt;br /&gt;
#Click the '''Services''' menu.&lt;br /&gt;
#Click '''Order New Services''' or '''View Available Addons'''&lt;br /&gt;
#Find the desired service and click '''Order Now'''&lt;br /&gt;
&lt;br /&gt;
==How to order multiple years of Domain Registration==&lt;br /&gt;
*Note: If you currently have a due invoice for the Domain's Registration, please contact support to get this cancelled. (https://support.hostek.com/ or email '''support@hostek.com''')&lt;br /&gt;
#Firstly, you'll want to log in to your Client Area (here: https://cp.hostek.com/)&lt;br /&gt;
#Click on '''Domains'''.&lt;br /&gt;
#Select '''Renew Domains'''.&lt;br /&gt;
#And then select the amount of years you wish to pay for from the '''drop-down menu''' on the right-side of the '''Domain Name'''.&lt;br /&gt;
#Click the '''Order Now''' button.&lt;br /&gt;
&lt;br /&gt;
==How to edit Domain Registration Contact Details==&lt;br /&gt;
*If your domain is registered with us, these are steps to change your Domain Contact Details / WHOIS Information.&lt;br /&gt;
#Log in to the Client Area (here: https://cp.hostek.com/).&lt;br /&gt;
#Click on '''Domains'''.&lt;br /&gt;
#Select '''My Domains'''.&lt;br /&gt;
#On the right-side of the chosen Domain, you will want to click the '''Down-Arrow''' next to '''Manage Domain'''.&lt;br /&gt;
##If your domain is currently in a locked state, please move to the '''Registrar Lock''' tab, and click '''Disable Registrar Lock'''.&lt;br /&gt;
#Click '''Edit Contact Information'''.&lt;br /&gt;
#Make any changes that you wish.&lt;br /&gt;
#Click '''Save Changes''' at the bottom, to ensure that you've kept the differences.&lt;br /&gt;
*Note: If you encounter any errors in this process, please contact support and we'll provide you with alternate means. (https://support.hostek.com/ or email us at '''support@hostek.com''')&lt;br /&gt;
&lt;br /&gt;
==Permissions for Sub-Accounts==&lt;br /&gt;
#To set permission and restrictions for Sub Accounts follow these steps:&lt;br /&gt;
#Log in to the (Billing) Control Panel, here: http://cp.hostek.com/.&lt;br /&gt;
#On the '''Home''' page, click '''Update Your Details'''.&lt;br /&gt;
#Click on the '''Contacts/Sub-Accounts''' tab.&lt;br /&gt;
#Tick '''Activate Sub-Account''' to configure as a sub-account with client area access.&lt;br /&gt;
#Tick the boxes next to the settings you would like applied.&lt;br /&gt;
#Now set a '''different password''' than the one you used to log in.&lt;br /&gt;
&lt;br /&gt;
*Note: The '''Sub-Accounts''' are '''NOT''' intended for Resellers to set-up for their '''clients'''; these are '''intended''' for individuals like '''business partners''', or '''employees''' that need/should have administrative access.&lt;br /&gt;
*Note - There are other Categories you can select from by clicking on the '''Choose another Category''' link at the top.&lt;br /&gt;
&lt;br /&gt;
==Client Control Panel - Video Tutorials==&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whmcs-1-login.html How to login to your billing control panel]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whmcs-10-password.html How to change your password in your billing control panel]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whmcs-2-personal.html How to update your personal details in your billing control panel]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whmcs-3-billing.html How to update your billing information in your billing control panel]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whmcs-4-reviewhosting.html Reviewing your hosting packages in your billing control panel]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whmcs-5-domain.html How to register a domain name in your billing control panel]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whmcs-6-items.html How to order additional items in your billing control panel]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whmcs-7-invoices.html How to pay invoices in your billing control panel]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/whmcs-9-emails.html Reviewing emails sent to you in your billing control panel]&lt;br /&gt;
&lt;br /&gt;
[[Category:Getting Started]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Flush_DNS_Resolver_Cache&amp;diff=2355</id>
		<title>Flush DNS Resolver Cache</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Flush_DNS_Resolver_Cache&amp;diff=2355"/>
				<updated>2015-01-13T05:19:05Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Mac OS X */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
== How to Flush Your DNS Resolver Cache ==&lt;br /&gt;
&lt;br /&gt;
Sometimes you may need to flush your computer's DNS Resolver Cache. The DNS Resolver Cache within your operating system stores the location of Web sites you visit on the Internet. This is intended to improve browsing speed, but sometimes it needs to be cleared to ensure good performance (for example, if you recently moved your site to a new server). Instructions for flushing the DNS Resolver Cache on several operating systems are below.&lt;br /&gt;
&lt;br /&gt;
=== Windows ===&lt;br /&gt;
&lt;br /&gt;
* Open a command prompt.&lt;br /&gt;
** One way to do this is to open the &amp;lt;b&amp;gt;Start Menu&amp;lt;/b&amp;gt;, click &amp;lt;b&amp;gt;Run&amp;lt;/b&amp;gt;, type &amp;lt;b&amp;gt;cmd&amp;lt;/b&amp;gt;, and press enter&lt;br /&gt;
*** In Windows 7 you can just open &amp;lt;b&amp;gt;Start&amp;lt;/b&amp;gt; and type &amp;lt;b&amp;gt;cmd&amp;lt;/b&amp;gt; and press enter&lt;br /&gt;
** If your account is not an Administrator, you'll need to run the command prompt as Administrator.&lt;br /&gt;
&lt;br /&gt;
In the command prompt type the following and press enter:&lt;br /&gt;
&lt;br /&gt;
    ipconfig /flushdns&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Mac OS X ===&lt;br /&gt;
&lt;br /&gt;
The command to clear the DNS cache is different depending upon which version of OS X is installed on your Mac.&amp;lt;br&amp;gt;&lt;br /&gt;
To determine this version:&lt;br /&gt;
# Click the Apple icon at the top left of the screen&lt;br /&gt;
# Click &amp;quot;About This Mac&amp;quot; (topmost option) &lt;br /&gt;
# Then, open the Terminal application and enter the command listed below based upon the OS X version. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OSX 10.10  (Yosemite)&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo discoveryutil udnsflushcaches&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OSX 10.9  (Mavericks)&lt;br /&gt;
&amp;lt;pre&amp;gt;dscacheutil -flushcache; sudo killall -HUP mDNSResponder&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OSX 10.7  – 10.8  (Lion and Mountain Lion) &lt;br /&gt;
&amp;lt;pre&amp;gt;sudo killall -HUP mDNSResponder&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OSX 10.5 – 10.6  (Leopard and Snow Leopard)&lt;br /&gt;
&amp;lt;pre&amp;gt;sudo dscacheutil -flushcache&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Linux ===&lt;br /&gt;
&lt;br /&gt;
From the terminal, enter the following command at the prompt:&lt;br /&gt;
&lt;br /&gt;
    /etc/rc.d/init.d/nscd restart&lt;br /&gt;
&lt;br /&gt;
[[Category:Support]] &lt;br /&gt;
[[Category:How-To]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Flush_DNS_Resolver_Cache&amp;diff=2354</id>
		<title>Flush DNS Resolver Cache</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Flush_DNS_Resolver_Cache&amp;diff=2354"/>
				<updated>2015-01-13T05:15:51Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Mac OS X */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
== How to Flush Your DNS Resolver Cache ==&lt;br /&gt;
&lt;br /&gt;
Sometimes you may need to flush your computer's DNS Resolver Cache. The DNS Resolver Cache within your operating system stores the location of Web sites you visit on the Internet. This is intended to improve browsing speed, but sometimes it needs to be cleared to ensure good performance (for example, if you recently moved your site to a new server). Instructions for flushing the DNS Resolver Cache on several operating systems are below.&lt;br /&gt;
&lt;br /&gt;
=== Windows ===&lt;br /&gt;
&lt;br /&gt;
* Open a command prompt.&lt;br /&gt;
** One way to do this is to open the &amp;lt;b&amp;gt;Start Menu&amp;lt;/b&amp;gt;, click &amp;lt;b&amp;gt;Run&amp;lt;/b&amp;gt;, type &amp;lt;b&amp;gt;cmd&amp;lt;/b&amp;gt;, and press enter&lt;br /&gt;
*** In Windows 7 you can just open &amp;lt;b&amp;gt;Start&amp;lt;/b&amp;gt; and type &amp;lt;b&amp;gt;cmd&amp;lt;/b&amp;gt; and press enter&lt;br /&gt;
** If your account is not an Administrator, you'll need to run the command prompt as Administrator.&lt;br /&gt;
&lt;br /&gt;
In the command prompt type the following and press enter:&lt;br /&gt;
&lt;br /&gt;
    ipconfig /flushdns&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Mac OS X ===&lt;br /&gt;
&lt;br /&gt;
The command to clear the DNS cache is different depending upon which version of OS X is installed on your Mac.&amp;lt;br&amp;gt;&lt;br /&gt;
To determine this version:&lt;br /&gt;
# Click the Apple icon at the top left of the screen&lt;br /&gt;
# Click &amp;quot;About This Mac&amp;quot; (topmost option) &lt;br /&gt;
# Then, open the Terminal application and enter the command listed below based upon the OS X version. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OSX 10.10  (Yosemite)&lt;br /&gt;
&amp;lt;pre&amp;gt; sudo discoveryutil udnsflushcaches &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OSX 10.9  (Mavericks)&lt;br /&gt;
&amp;lt;pre&amp;gt; dscacheutil -flushcache; sudo killall -HUP mDNSResponder &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OSX 10.7  – 10.8  (Lion and Mountain Lion) &lt;br /&gt;
&amp;lt;pre&amp;gt; sudo killall -HUP mDNSResponder &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OSX 10.5 – 10.6  (Leopard and Snow Leopard)&lt;br /&gt;
&amp;lt;pre&amp;gt; sudo dscacheutil -flushcache &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Linux ===&lt;br /&gt;
&lt;br /&gt;
From the terminal, enter the following command at the prompt:&lt;br /&gt;
&lt;br /&gt;
    /etc/rc.d/init.d/nscd restart&lt;br /&gt;
&lt;br /&gt;
[[Category:Support]] &lt;br /&gt;
[[Category:How-To]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Flush_DNS_Resolver_Cache&amp;diff=2353</id>
		<title>Flush DNS Resolver Cache</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Flush_DNS_Resolver_Cache&amp;diff=2353"/>
				<updated>2015-01-13T04:27:36Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Mac OS X */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
== How to Flush Your DNS Resolver Cache ==&lt;br /&gt;
&lt;br /&gt;
Sometimes you may need to flush your computer's DNS Resolver Cache. The DNS Resolver Cache within your operating system stores the location of Web sites you visit on the Internet. This is intended to improve browsing speed, but sometimes it needs to be cleared to ensure good performance (for example, if you recently moved your site to a new server). Instructions for flushing the DNS Resolver Cache on several operating systems are below.&lt;br /&gt;
&lt;br /&gt;
=== Windows ===&lt;br /&gt;
&lt;br /&gt;
* Open a command prompt.&lt;br /&gt;
** One way to do this is to open the &amp;lt;b&amp;gt;Start Menu&amp;lt;/b&amp;gt;, click &amp;lt;b&amp;gt;Run&amp;lt;/b&amp;gt;, type &amp;lt;b&amp;gt;cmd&amp;lt;/b&amp;gt;, and press enter&lt;br /&gt;
*** In Windows 7 you can just open &amp;lt;b&amp;gt;Start&amp;lt;/b&amp;gt; and type &amp;lt;b&amp;gt;cmd&amp;lt;/b&amp;gt; and press enter&lt;br /&gt;
** If your account is not an Administrator, you'll need to run the command prompt as Administrator.&lt;br /&gt;
&lt;br /&gt;
In the command prompt type the following and press enter:&lt;br /&gt;
&lt;br /&gt;
    ipconfig /flushdns&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Mac OS X ===&lt;br /&gt;
&lt;br /&gt;
The command to clear the DNS cache is different depending upon which version of OS X is installed on your Mac.&amp;lt;br&amp;gt;&lt;br /&gt;
To determine this version:&lt;br /&gt;
# Click the Apple icon at the top left of the screen&lt;br /&gt;
# Click &amp;quot;About This Mac&amp;quot; (topmost option) &lt;br /&gt;
# Then, open the Terminal application and enter the command listed below based upon the OS X version. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OSX 10.10 (Yosemite)&lt;br /&gt;
&amp;lt;pre&amp;gt; sudo discoveryutil udnsflushcaches &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OSX 10.9 (Mavericks)&lt;br /&gt;
&amp;lt;pre&amp;gt; dscacheutil -flushcache; sudo killall -HUP mDNSResponder &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OSX 10.7  – 10.8 (Lion and Mountain Lion) &lt;br /&gt;
&amp;lt;pre&amp;gt; sudo killall -HUP mDNSResponder &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OSX 10.5 – 10.6 (Leopard and Snow Leopard)&lt;br /&gt;
&amp;lt;pre&amp;gt; sudo dscacheutil -flushcache &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Linux ===&lt;br /&gt;
&lt;br /&gt;
From the terminal, enter the following command at the prompt:&lt;br /&gt;
&lt;br /&gt;
    /etc/rc.d/init.d/nscd restart&lt;br /&gt;
&lt;br /&gt;
[[Category:Support]] &lt;br /&gt;
[[Category:How-To]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Flush_DNS_Resolver_Cache&amp;diff=2352</id>
		<title>Flush DNS Resolver Cache</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Flush_DNS_Resolver_Cache&amp;diff=2352"/>
				<updated>2015-01-13T04:26:51Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Mac OS X */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
== How to Flush Your DNS Resolver Cache ==&lt;br /&gt;
&lt;br /&gt;
Sometimes you may need to flush your computer's DNS Resolver Cache. The DNS Resolver Cache within your operating system stores the location of Web sites you visit on the Internet. This is intended to improve browsing speed, but sometimes it needs to be cleared to ensure good performance (for example, if you recently moved your site to a new server). Instructions for flushing the DNS Resolver Cache on several operating systems are below.&lt;br /&gt;
&lt;br /&gt;
=== Windows ===&lt;br /&gt;
&lt;br /&gt;
* Open a command prompt.&lt;br /&gt;
** One way to do this is to open the &amp;lt;b&amp;gt;Start Menu&amp;lt;/b&amp;gt;, click &amp;lt;b&amp;gt;Run&amp;lt;/b&amp;gt;, type &amp;lt;b&amp;gt;cmd&amp;lt;/b&amp;gt;, and press enter&lt;br /&gt;
*** In Windows 7 you can just open &amp;lt;b&amp;gt;Start&amp;lt;/b&amp;gt; and type &amp;lt;b&amp;gt;cmd&amp;lt;/b&amp;gt; and press enter&lt;br /&gt;
** If your account is not an Administrator, you'll need to run the command prompt as Administrator.&lt;br /&gt;
&lt;br /&gt;
In the command prompt type the following and press enter:&lt;br /&gt;
&lt;br /&gt;
    ipconfig /flushdns&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Mac OS X ===&lt;br /&gt;
&lt;br /&gt;
The command to clear the DNS cache is different depending upon which version of OS X is installed on your Mac.&amp;lt;br&amp;gt;&lt;br /&gt;
To determine this version:&lt;br /&gt;
# Click the Apple icon at the top left of the screen&lt;br /&gt;
# Click &amp;quot;About This Mac&amp;quot; (topmost option) &lt;br /&gt;
# Then, open the Terminal application and enter the command listed below based upon the OS X version. &lt;br /&gt;
&lt;br /&gt;
OSX 10.10 (Yosemite)&lt;br /&gt;
&amp;lt;pre&amp;gt; sudo discoveryutil udnsflushcaches &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OSX 10.9 (Mavericks)&lt;br /&gt;
&amp;lt;pre&amp;gt; dscacheutil -flushcache; sudo killall -HUP mDNSResponder &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OSX 10.7  – 10.8 (Lion and Mountain Lion) &lt;br /&gt;
&amp;lt;pre&amp;gt; sudo killall -HUP mDNSResponder &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OSX 10.5 – 10.6 (Leopard and Snow Leopard)&lt;br /&gt;
&amp;lt;pre&amp;gt; sudo dscacheutil -flushcache &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Linux ===&lt;br /&gt;
&lt;br /&gt;
From the terminal, enter the following command at the prompt:&lt;br /&gt;
&lt;br /&gt;
    /etc/rc.d/init.d/nscd restart&lt;br /&gt;
&lt;br /&gt;
[[Category:Support]] &lt;br /&gt;
[[Category:How-To]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Flush_DNS_Resolver_Cache&amp;diff=2351</id>
		<title>Flush DNS Resolver Cache</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Flush_DNS_Resolver_Cache&amp;diff=2351"/>
				<updated>2015-01-13T04:23:09Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Mac OS X */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
== How to Flush Your DNS Resolver Cache ==&lt;br /&gt;
&lt;br /&gt;
Sometimes you may need to flush your computer's DNS Resolver Cache. The DNS Resolver Cache within your operating system stores the location of Web sites you visit on the Internet. This is intended to improve browsing speed, but sometimes it needs to be cleared to ensure good performance (for example, if you recently moved your site to a new server). Instructions for flushing the DNS Resolver Cache on several operating systems are below.&lt;br /&gt;
&lt;br /&gt;
=== Windows ===&lt;br /&gt;
&lt;br /&gt;
* Open a command prompt.&lt;br /&gt;
** One way to do this is to open the &amp;lt;b&amp;gt;Start Menu&amp;lt;/b&amp;gt;, click &amp;lt;b&amp;gt;Run&amp;lt;/b&amp;gt;, type &amp;lt;b&amp;gt;cmd&amp;lt;/b&amp;gt;, and press enter&lt;br /&gt;
*** In Windows 7 you can just open &amp;lt;b&amp;gt;Start&amp;lt;/b&amp;gt; and type &amp;lt;b&amp;gt;cmd&amp;lt;/b&amp;gt; and press enter&lt;br /&gt;
** If your account is not an Administrator, you'll need to run the command prompt as Administrator.&lt;br /&gt;
&lt;br /&gt;
In the command prompt type the following and press enter:&lt;br /&gt;
&lt;br /&gt;
    ipconfig /flushdns&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Mac OS X ===&lt;br /&gt;
&lt;br /&gt;
The command to clear the DNS cache is different depending upon which version of OS X is installed on your Mac. To determine this version, click the Apple icon at the top left of the screen, then &amp;quot;About This Mac&amp;quot;. Then, open the Terminal application and enter the command listed below based upon the OS X version. &lt;br /&gt;
&lt;br /&gt;
OSX 10.10 (Yosemite)&lt;br /&gt;
&amp;lt;pre&amp;gt; sudo discoveryutil udnsflushcaches &amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OSX 10.9 (Mavericks)&lt;br /&gt;
&lt;br /&gt;
dscacheutil -flushcache; sudo killall -HUP mDNSResponder&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OSX 10.7  – 10.8 (Lion and Mountain Lion) &lt;br /&gt;
&lt;br /&gt;
sudo killall -HUP mDNSResponder&lt;br /&gt;
&lt;br /&gt;
OSX 10.5 – 10.6 (Leopard and Snow Leopard)&lt;br /&gt;
&lt;br /&gt;
sudo dscacheutil -flushcache&lt;br /&gt;
&lt;br /&gt;
=== Linux ===&lt;br /&gt;
&lt;br /&gt;
From the terminal, enter the following command at the prompt:&lt;br /&gt;
&lt;br /&gt;
    /etc/rc.d/init.d/nscd restart&lt;br /&gt;
&lt;br /&gt;
[[Category:Support]] &lt;br /&gt;
[[Category:How-To]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Enabling_TLS_on_Common_FTP_Software&amp;diff=2327</id>
		<title>Enabling TLS on Common FTP Software</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Enabling_TLS_on_Common_FTP_Software&amp;diff=2327"/>
				<updated>2014-11-15T23:08:39Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Transmit */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
In today's world with a high magnitude of scripts automatically set to sniff for password data, there is a high demand for always using https on web sites. In the same way, we believe FTPS should be enforced for all FTP transactions.&lt;br /&gt;
&lt;br /&gt;
In this wiki we go through the steps to enable FTPS/TLS on popular and less common FTP clients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Enabling TLS on Popular FTP Software==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FileZilla===&lt;br /&gt;
&lt;br /&gt;
# Open your FileZilla client, then click 'File'-&amp;gt;'Site Manager'.&lt;br /&gt;
# In the Site Manager window, click 'New Site'. &lt;br /&gt;
# Input the FTP server information from your service's welcome e-mail.&lt;br /&gt;
# Under 'Encryption', select the 'Require Explicit FTP over TLS' option from the drop-down.&lt;br /&gt;
# Change the 'Logon Type' to 'Normal'.&lt;br /&gt;
# Enter your FTP account's 'Username' and 'Password'.&lt;br /&gt;
# Click 'OK' to save this connection.&lt;br /&gt;
# To connect, open 'Site Manager', or click the drop-down arrow next to the 'Site Manager' icon. &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
'''Please note:''' FileZilla does not trust any SSL certificate as valid automatically, even when the SSL certificate was signed by a trusted source (as our certificate is). The developers of FileZilla believed that it is up to individual users to decide if they will accept the certificate.&lt;br /&gt;
&lt;br /&gt;
You can safely accept the the certificate warning message you receive.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:fz_tls_b.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===WinSCP===&lt;br /&gt;
&lt;br /&gt;
# Open the WinSCP client&lt;br /&gt;
# Create a new site or edit an existing site&lt;br /&gt;
# Change the File protocol to &amp;quot;FTP&amp;quot;&lt;br /&gt;
# Change the Encryption to &amp;quot;TLS Explicit encryption&amp;quot;&lt;br /&gt;
# Change the Host name to your domain (Example: yourdomain.com)&lt;br /&gt;
# Change the Port number to 21&lt;br /&gt;
# Change the User name to your FTP username&lt;br /&gt;
# Change the Password to the password that corresponds with your FTP username&lt;br /&gt;
# Click the Save button&lt;br /&gt;
# Click the Login button to connect&lt;br /&gt;
&lt;br /&gt;
Below is an image of the WinSCP Session window for reference:&lt;br /&gt;
&lt;br /&gt;
[[File:Winscp-ftp-tls-setup.png]]&lt;br /&gt;
&lt;br /&gt;
===Adobe Dreamweaver===&lt;br /&gt;
Below is an example FTP over SSL/TLS setup for Dreamweaver version 6.0 and above. Dreamweaver versions prior to CS5.5 do not allow for secure FTP. If you are in this situation, you will be required to use an external FTP program such as FileZilla.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:DreamWeaverTLS.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FireFTP===&lt;br /&gt;
&lt;br /&gt;
# Open up Firefox and click on Tools &amp;gt; FireFTP&lt;br /&gt;
# Click on the &amp;quot;Main&amp;quot; tab. Set up your FTP connection as usual:&lt;br /&gt;
#*'''Account Name:''' Choose a name for the connection.&lt;br /&gt;
#*'''Host:''' URL of your site or the IP of the server.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''User:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel Password.[[#Additional Notes| (?) ]]&lt;br /&gt;
# Next, click on the Connection tab. Select the &amp;quot;Security&amp;quot; drop-down and then click &amp;quot;Auth TLS&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===SmartFTP===&lt;br /&gt;
&lt;br /&gt;
#Click File &amp;gt; &amp;quot;New Connection&amp;quot;&lt;br /&gt;
#Set the &amp;quot;Protocol&amp;quot; Field to &amp;quot;FTPS (Explicit)&amp;quot;&lt;br /&gt;
#Fill in the following fields:&lt;br /&gt;
#*'''Host:''' URL of your site or the IP of the server&lt;br /&gt;
#*'''User:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel Password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#Click 'OK' to connect.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===CyberDuck===&lt;br /&gt;
&lt;br /&gt;
On the “Open Connection” dialog, select the “FTP-SSL (Explicit AUTH TLS)” option. See the image below:&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Cyberduck.png]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===CuteFTP===&lt;br /&gt;
&lt;br /&gt;
#On the main menu, click File &amp;gt; New &amp;gt; FTPS (SSL) Site.&lt;br /&gt;
#Under the 'General' tab, enter the following:&lt;br /&gt;
#*'''Label:''' Choose a name for the connection.&lt;br /&gt;
#*'''Host Address:''' Your server IP.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Username:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Login method:''' Normal.&lt;br /&gt;
#Click the 'Type' tab at the top when the above information has been filled in.&lt;br /&gt;
#Select 'FTP with TLS/SSL (AUTH TLS - Explicit)' on the 'Protocol Type' drop-down. Leave the rest of the information as default.&lt;br /&gt;
#Click 'Connect'. When prompted, accept the SSL certificate.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FlashFXP===&lt;br /&gt;
&lt;br /&gt;
#Click 'Sites' &amp;gt; 'Site Manager'&lt;br /&gt;
#Click 'New Site' at the bottom left of the new window.&lt;br /&gt;
#Choose a name for your site and click 'OK'.&lt;br /&gt;
#Under 'Connection Type:' select 'FTP using Explicit SSL (Auth TLS)'.&lt;br /&gt;
#In the 'Address' box, type the URL of your site or the IP of the server (either will work).&lt;br /&gt;
#Enter the following:&lt;br /&gt;
#*'''Username:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#Click 'Apply', then 'Connect'.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===WISE-FTP===&lt;br /&gt;
&lt;br /&gt;
#Click File &amp;gt; Connect.&lt;br /&gt;
#Click 'New Site' at the top-left.&lt;br /&gt;
#*'''Profile Name:''' Choose a name for the connection.&lt;br /&gt;
#*'''Server Address:'''  URL of your site or the IP of the server.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Username:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Connection type:''' FTPES (explicit TLS/SSL).&lt;br /&gt;
#Any other information is optional. &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===WS_FTP PRO===&lt;br /&gt;
&lt;br /&gt;
New Connections:&lt;br /&gt;
&lt;br /&gt;
#Click 'Connections' &amp;gt; 'New Connection...'&lt;br /&gt;
#Choose a name for the connection.&lt;br /&gt;
#Under 'Connection Type:', select 'FTP/SSL (AUTH SSL)'.&lt;br /&gt;
#In the 'Server Address:' field, enter in the URL of your site or the IP of the server.[[#Additional Notes| (?) ]]&lt;br /&gt;
#'''Username:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#'''Password:''' Your cPanel password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#Click Finish.&lt;br /&gt;
&lt;br /&gt;
Existing Connections:&lt;br /&gt;
&lt;br /&gt;
#Click 'Connections' &amp;gt; 'Site Manager'.&lt;br /&gt;
#Click 'Edit' next to the site you would like to modify.&lt;br /&gt;
#Click 'Advanced', then change the 'Server Type' dropdown to 'FTP/SSL (AUTH SSL)'.&lt;br /&gt;
#Click OK.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Core FTP LE===&lt;br /&gt;
&lt;br /&gt;
#Click File-&amp;gt;Connect.&lt;br /&gt;
#Enter the following:&lt;br /&gt;
#*'''Site Name:''' Choose a name for the connection.&lt;br /&gt;
#*'''Host / IP / URL:''' Your server IP.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Username:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Connection:''' AUTH TLS.&lt;br /&gt;
#Click Connect.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Transmit===&lt;br /&gt;
&lt;br /&gt;
On the “FTP” tab, enter in the following:&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:TransmitFTP.png]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Additional Notes==&lt;br /&gt;
&lt;br /&gt;
Server information can be found in your Hostek.com welcome e-mail that you receive upon purchasing a service with Hostek. If you are missing this e-mail or any log-in information, please submit a ticket via [https://support.hostek.com https://support.hostek.com] and we'd be glad to send it once more.&lt;br /&gt;
&lt;br /&gt;
===Expression Web 4===&lt;br /&gt;
Expression Web 4 does not support FTP over TLS, however it will support FTPS requests using port 990.&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Connection_Strings&amp;diff=2324</id>
		<title>Connection Strings</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Connection_Strings&amp;diff=2324"/>
				<updated>2014-11-15T07:38:37Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* MSSQL Connection String (ASP) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
Connection string examples.&lt;br /&gt;
&lt;br /&gt;
==ASP.Net==&lt;br /&gt;
&lt;br /&gt;
connection string examples for ASP.Net.&lt;br /&gt;
&lt;br /&gt;
===SQL Server (MSSQL)===&lt;br /&gt;
&lt;br /&gt;
SQL Server connection string examples.&lt;br /&gt;
&lt;br /&gt;
====Basic connection string====&lt;br /&gt;
&lt;br /&gt;
web.config:&lt;br /&gt;
 &amp;lt;configuration&amp;gt;&lt;br /&gt;
   &amp;lt;connectionStrings&amp;gt; &lt;br /&gt;
     &amp;lt;add name=&amp;quot;SQLServerConnection&amp;quot; connectionString=&amp;quot;Server=myServerName;&lt;br /&gt;
     Database=myDatabaseName;User Id=myUsername;Password=myPassword;&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/connectionStrings&amp;gt;&lt;br /&gt;
 &amp;lt;/configuration&amp;gt;&lt;br /&gt;
'''NOTE:''' Replace myServerName, myDatabaseName, myUsername, and myPassword with the correct details for your database.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
How to create connection object in your code using the above connection string:&lt;br /&gt;
 System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient(System.Configuration.ConfigurationManager.ConnectionStrings&lt;br /&gt;
[&amp;quot;SQLServerConnection&amp;quot;].ConnectionString);&lt;br /&gt;
&lt;br /&gt;
====How to override default ASPNet Membership connection string====&lt;br /&gt;
&lt;br /&gt;
web.config:&lt;br /&gt;
 &amp;lt;configuration&amp;gt;&lt;br /&gt;
   &amp;lt;connectionStrings&amp;gt;&lt;br /&gt;
     &amp;lt;remove name=&amp;quot;LocalSQLServer&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;add name=&amp;quot;LocalSQLServer&amp;quot; connectionString=&amp;quot;Server=myServerName;Database=myDatabaseName;User Id=myUsername;Password=myPassword;&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/connectionStrings&amp;gt;&lt;br /&gt;
 &amp;lt;/configuration&amp;gt;&lt;br /&gt;
'''NOTE:''' Replace myServerName, myDatabaseName, myUsername, and myPassword with the correct details for your database.  For overriding the default ASPNet Membership connection string, it is important that the connection string name be left as &amp;quot;LocalSQLServer&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===MySQL===&lt;br /&gt;
&lt;br /&gt;
MySQL connection string example:&lt;br /&gt;
&lt;br /&gt;
'''NOTE: This example requires the following library from mysql.com to be referenced in your project (also ensure that 'CopyLocal' is set to 'True' on the reference):'''&lt;br /&gt;
 http://dev.mysql.com/downloads/connector/net/&lt;br /&gt;
&lt;br /&gt;
web.config:&lt;br /&gt;
 &amp;lt;configuration&amp;gt;&lt;br /&gt;
   &amp;lt;connectionStrings&amp;gt; &lt;br /&gt;
     &amp;lt;add name=&amp;quot;MySQLConnection&amp;quot; connectionString=&amp;quot;Datasource=myServerName;Database=myDatabaseName;uid=myUsername;pwd=myPassword;&amp;quot; providerName=&amp;quot;MySql.Data.MySqlClient&amp;quot;/&amp;gt;&lt;br /&gt;
   &amp;lt;/connectionStrings&amp;gt;&lt;br /&gt;
 &amp;lt;/configuration&amp;gt;&lt;br /&gt;
'''NOTE:''' Replace myServerName, myDatabaseName, myUsername, and myPassword with the correct details for your database.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
How to create connection object in your code using the above connection string:&lt;br /&gt;
 MySql.Data.MySqlClient.MySqlConnection conn = new MySql.Data.MySqlClient.MySqlConnection(&lt;br /&gt;
    System.Configuration.ConfigurationManager.ConnectionStrings[&amp;quot;MySQLConnection&amp;quot;].ConnectionString&lt;br /&gt;
 );&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Classic ASP==&lt;br /&gt;
&lt;br /&gt;
Connection string examples for classic ASP.&lt;br /&gt;
&lt;br /&gt;
===Access Database Connection String Examples===&lt;br /&gt;
&lt;br /&gt;
====Using DSN-less method====&lt;br /&gt;
&amp;lt;pre&amp;gt;Conn.Open &amp;quot;Provider=Microsoft.ACE.OLEDB.12.0;Data Source=d:\home\mysite.com\db\myfile.mdb;&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Using DSN====&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Conn.Open &amp;quot;MyDSN&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Set Conn = CreateObject(&amp;quot;ADODB.Connection&amp;quot;)&lt;br /&gt;
Conn.Open &amp;quot;Provider=Microsoft.ACE.OLEDB.12.0;Data Source=d:\home\mysite.com\db\myfile.mdb;&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===MySQL Connection String (ASP)===&lt;br /&gt;
For newer versions of MySQL, use the below code.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Dim conDB&lt;br /&gt;
Dim rs&lt;br /&gt;
'--Set the connection&lt;br /&gt;
Set conDB = CreateObject(&amp;quot;ADODB.Connection&amp;quot;)&lt;br /&gt;
'--You may need to use OPTION=3 instead of 16834&lt;br /&gt;
conDB.Open &amp;quot;DRIVER=MySQL ODBC 5.1 Driver;SERVER=mysql10.hostek.com;OPTION=16834;USER=db_un;Password=db_pw;DATABASE=db_name&amp;quot;&lt;br /&gt;
'--Set the recordset&lt;br /&gt;
Set rs = CreateObject(&amp;quot;ADODB.Recordset&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For older MySQL versions, you will want to use the below code.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Dim conDB&lt;br /&gt;
Dim rs&lt;br /&gt;
'--Set the connection&lt;br /&gt;
Set conDB = CreateObject(&amp;quot;ADODB.Connection&amp;quot;)&lt;br /&gt;
'--You may need to use OPTION=3 instead of 16834&lt;br /&gt;
conDB.Open &amp;quot;DRIVER=MySQL ODBC 3.51 Driver;SERVER=mysql10.hostek.com;OPTION=16834;USER=db_un;Password=db_pw;DATABASE=db_name&amp;quot;&lt;br /&gt;
'--Set the recordset&lt;br /&gt;
Set rs = CreateObject(&amp;quot;ADODB.Recordset&amp;quot;)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===MSSQL Connection String (ASP)===&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
ConnStr=&amp;quot;DRIVER={SQLServer};SERVER=sql1.hostek.com;UID=db_username;PWD=db_password;DATABASE=db_name&amp;quot;&lt;br /&gt;
Conn.open ConnStr&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Replace the username, password, and database name with the information for your database. &lt;br /&gt;
&lt;br /&gt;
[[Category:Databases-Access]]&lt;br /&gt;
[[Category:Databases-MySQL]]&lt;br /&gt;
[[Category:Databases-MSSQL]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Enabling_TLS_on_Common_FTP_Software&amp;diff=2243</id>
		<title>Enabling TLS on Common FTP Software</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Enabling_TLS_on_Common_FTP_Software&amp;diff=2243"/>
				<updated>2014-08-19T06:10:50Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Enabling TLS on Popular FTP Software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
In today's world with a high magnitude of scripts automatically set to sniff for password data, there is a high demand for always using https on web sites. In the same way, we believe FTPS should be enforced for all FTP transactions.&lt;br /&gt;
&lt;br /&gt;
In this wiki we go through the steps to enable FTPS/TLS on popular and less common FTP clients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Enabling TLS on Popular FTP Software==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FileZilla===&lt;br /&gt;
&lt;br /&gt;
# Open your FileZilla client, then click 'File'-&amp;gt;'Site Manager'.&lt;br /&gt;
# In the Site Manager window, click 'New Site'. &lt;br /&gt;
# Input the FTP server information from your service's welcome e-mail.&lt;br /&gt;
# Under 'Encryption', select the 'Require Explicit FTP over TLS' option from the drop-down.&lt;br /&gt;
# Change the 'Logon Type' to 'Normal'.&lt;br /&gt;
# Enter your FTP account's 'Username' and 'Password'.&lt;br /&gt;
# Click 'OK' to save this connection.&lt;br /&gt;
# To connect, open 'Site Manager', or click the drop-down arrow next to the 'Site Manager' icon. &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
'''Please note:''' FileZilla does not trust any SSL certificate as valid automatically, even when the SSL certificate was signed by a trusted source (as our certificate is). The developers of FileZilla believed that it is up to individual users to decide if they will accept the certificate.&lt;br /&gt;
&lt;br /&gt;
You can safely accept the the certificate warning message you receive.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:fz_tls_b.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===WinSCP===&lt;br /&gt;
&lt;br /&gt;
# Create a new site in WinSCP, or edit your current one.&lt;br /&gt;
# Within the WinSCP Login box, choose 'FTP' as the File Protocol. &lt;br /&gt;
# Under 'Encryption:' select 'TLS Explicit encryption'.&lt;br /&gt;
# If your site is already set up with WinSCP, click 'Save' to make your changes permanent. Otherwise, simply fill in the information as per your welcome e-mail and click login.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Adobe Dreamweaver===&lt;br /&gt;
Below is an example FTP over SSL/TLS setup for Dreamweaver version 6.0 and above. Dreamweaver versions prior to CS5.5 do not allow for secure FTP. If you are in this situation, you will be required to use an external FTP program such as FileZilla.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:DreamWeaverTLS.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FireFTP===&lt;br /&gt;
&lt;br /&gt;
# Open up Firefox and click on Tools &amp;gt; FireFTP&lt;br /&gt;
# Click on the &amp;quot;Main&amp;quot; tab. Set up your FTP connection as usual:&lt;br /&gt;
#*'''Account Name:''' Choose a name for the connection.&lt;br /&gt;
#*'''Host:''' URL of your site or the IP of the server.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''User:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel Password.[[#Additional Notes| (?) ]]&lt;br /&gt;
# Next, click on the Connection tab. Select the &amp;quot;Security&amp;quot; drop-down and then click &amp;quot;Auth TLS&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===SmartFTP===&lt;br /&gt;
&lt;br /&gt;
#Click File &amp;gt; &amp;quot;New Connection&amp;quot;&lt;br /&gt;
#Set the &amp;quot;Protocol&amp;quot; Field to &amp;quot;FTPS (Explicit)&amp;quot;&lt;br /&gt;
#Fill in the following fields:&lt;br /&gt;
#*'''Host:''' URL of your site or the IP of the server&lt;br /&gt;
#*'''User:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel Password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#Click 'OK' to connect.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===CyberDuck===&lt;br /&gt;
&lt;br /&gt;
On the “Open Connection” dialog, select the “FTP-SSL (Explicit AUTH TLS)” option. See the image below:&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Cyberduck.png]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===CuteFTP===&lt;br /&gt;
&lt;br /&gt;
#On the main menu, click File &amp;gt; New &amp;gt; FTPS (SSL) Site.&lt;br /&gt;
#Under the 'General' tab, enter the following:&lt;br /&gt;
#*'''Label:''' Choose a name for the connection.&lt;br /&gt;
#*'''Host Address:''' Your server IP.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Username:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Login method:''' Normal.&lt;br /&gt;
#Click the 'Type' tab at the top when the above information has been filled in.&lt;br /&gt;
#Select 'FTP with TLS/SSL (AUTH TLS - Explicit)' on the 'Protocol Type' drop-down. Leave the rest of the information as default.&lt;br /&gt;
#Click 'Connect'. When prompted, accept the SSL certificate.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FlashFXP===&lt;br /&gt;
&lt;br /&gt;
#Click 'Sites' &amp;gt; 'Site Manager'&lt;br /&gt;
#Click 'New Site' at the bottom left of the new window.&lt;br /&gt;
#Choose a name for your site and click 'OK'.&lt;br /&gt;
#Under 'Connection Type:' select 'FTP using Explicit SSL (Auth TLS)'.&lt;br /&gt;
#In the 'Address' box, type the URL of your site or the IP of the server (either will work).&lt;br /&gt;
#Enter the following:&lt;br /&gt;
#*'''Username:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#Click 'Apply', then 'Connect'.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===WISE-FTP===&lt;br /&gt;
&lt;br /&gt;
#Click File &amp;gt; Connect.&lt;br /&gt;
#Click 'New Site' at the top-left.&lt;br /&gt;
#*'''Profile Name:''' Choose a name for the connection.&lt;br /&gt;
#*'''Server Address:'''  URL of your site or the IP of the server.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Username:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Connection type:''' FTPES (explicit TLS/SSL).&lt;br /&gt;
#Any other information is optional. &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===WS_FTP PRO===&lt;br /&gt;
&lt;br /&gt;
New Connections:&lt;br /&gt;
&lt;br /&gt;
#Click 'Connections' &amp;gt; 'New Connection...'&lt;br /&gt;
#Choose a name for the connection.&lt;br /&gt;
#Under 'Connection Type:', select 'FTP/SSL (AUTH SSL)'.&lt;br /&gt;
#In the 'Server Address:' field, enter in the URL of your site or the IP of the server.[[#Additional Notes| (?) ]]&lt;br /&gt;
#'''Username:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#'''Password:''' Your cPanel password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#Click Finish.&lt;br /&gt;
&lt;br /&gt;
Existing Connections:&lt;br /&gt;
&lt;br /&gt;
#Click 'Connections' &amp;gt; 'Site Manager'.&lt;br /&gt;
#Click 'Edit' next to the site you would like to modify.&lt;br /&gt;
#Click 'Advanced', then change the 'Server Type' dropdown to 'FTP/SSL (AUTH SSL)'.&lt;br /&gt;
#Click OK.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Transmit===&lt;br /&gt;
&lt;br /&gt;
On the “FTP” tab, enter in the following:&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:TransmitFTP.png]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Additional Notes==&lt;br /&gt;
&lt;br /&gt;
Server information can be found in your Hostek.com welcome e-mail that you receive upon purchasing a service with Hostek. If you are missing this e-mail or any log-in information, please submit a ticket via [https://support.hostek.com https://support.hostek.com] and we'd be glad to send it once more.&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:Fz_tls_b.png&amp;diff=2242</id>
		<title>File:Fz tls b.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:Fz_tls_b.png&amp;diff=2242"/>
				<updated>2014-08-19T06:06:52Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Enabling_TLS_on_Common_FTP_Software&amp;diff=2241</id>
		<title>Enabling TLS on Common FTP Software</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Enabling_TLS_on_Common_FTP_Software&amp;diff=2241"/>
				<updated>2014-08-19T06:04:03Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Enabling TLS on Popular FTP Software */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
In today's world with a high magnitude of scripts automatically set to sniff for password data, there is a high demand for always using https on web sites. In the same way, we believe FTPS should be enforced for all FTP transactions.&lt;br /&gt;
&lt;br /&gt;
In this wiki we go through the steps to enable FTPS/TLS on popular and less common FTP clients.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Enabling TLS on Popular FTP Software==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===FileZilla===&lt;br /&gt;
&lt;br /&gt;
# Open your FileZilla client, then click 'File'-&amp;gt;'Site Manager'.&lt;br /&gt;
# In the Site Manager window, click 'New Site'. &lt;br /&gt;
# Input the FTP server information from your service's welcome e-mail.&lt;br /&gt;
# Under 'Encryption', select the 'Require Explicit FTP over TLS' option from the drop-down.&lt;br /&gt;
# Click 'OK', then you're done!&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
'''Please note:''' FileZilla does not trust any SSL certificate as valid automatically, even when the SSL certificate was signed by a trusted source (as our certificate is). The developers of FileZilla believed that it is up to individual users to decide if they will accept the certificate.&lt;br /&gt;
&lt;br /&gt;
You can safely accept the the certificate warning message you receive.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:fz_tls_a.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===WinSCP===&lt;br /&gt;
&lt;br /&gt;
# Create a new site in WinSCP, or edit your current one.&lt;br /&gt;
# Within the WinSCP Login box, choose 'FTP' as the File Protocol. &lt;br /&gt;
# Under 'Encryption:' select 'TLS Explicit encryption'.&lt;br /&gt;
# If your site is already set up with WinSCP, click 'Save' to make your changes permanent. Otherwise, simply fill in the information as per your welcome e-mail and click login.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Adobe Dreamweaver===&lt;br /&gt;
Below is an example FTP over SSL/TLS setup for Dreamweaver version 6.0 and above. Dreamweaver versions prior to CS5.5 do not allow for secure FTP. If you are in this situation, you will be required to use an external FTP program such as FileZilla.&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:DreamWeaverTLS.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FireFTP===&lt;br /&gt;
&lt;br /&gt;
# Open up Firefox and click on Tools &amp;gt; FireFTP&lt;br /&gt;
# Click on the &amp;quot;Main&amp;quot; tab. Set up your FTP connection as usual:&lt;br /&gt;
#*'''Account Name:''' Choose a name for the connection.&lt;br /&gt;
#*'''Host:''' URL of your site or the IP of the server.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''User:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel Password.[[#Additional Notes| (?) ]]&lt;br /&gt;
# Next, click on the Connection tab. Select the &amp;quot;Security&amp;quot; drop-down and then click &amp;quot;Auth TLS&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===SmartFTP===&lt;br /&gt;
&lt;br /&gt;
#Click File &amp;gt; &amp;quot;New Connection&amp;quot;&lt;br /&gt;
#Set the &amp;quot;Protocol&amp;quot; Field to &amp;quot;FTPS (Explicit)&amp;quot;&lt;br /&gt;
#Fill in the following fields:&lt;br /&gt;
#*'''Host:''' URL of your site or the IP of the server&lt;br /&gt;
#*'''User:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel Password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#Click 'OK' to connect.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===CyberDuck===&lt;br /&gt;
&lt;br /&gt;
On the “Open Connection” dialog, select the “FTP-SSL (Explicit AUTH TLS)” option. See the image below:&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:Cyberduck.png]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===CuteFTP===&lt;br /&gt;
&lt;br /&gt;
#On the main menu, click File &amp;gt; New &amp;gt; FTPS (SSL) Site.&lt;br /&gt;
#Under the 'General' tab, enter the following:&lt;br /&gt;
#*'''Label:''' Choose a name for the connection.&lt;br /&gt;
#*'''Host Address:''' Your server IP.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Username:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Login method:''' Normal.&lt;br /&gt;
#Click the 'Type' tab at the top when the above information has been filled in.&lt;br /&gt;
#Select 'FTP with TLS/SSL (AUTH TLS - Explicit)' on the 'Protocol Type' drop-down. Leave the rest of the information as default.&lt;br /&gt;
#Click 'Connect'. When prompted, accept the SSL certificate.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===FlashFXP===&lt;br /&gt;
&lt;br /&gt;
#Click 'Sites' &amp;gt; 'Site Manager'&lt;br /&gt;
#Click 'New Site' at the bottom left of the new window.&lt;br /&gt;
#Choose a name for your site and click 'OK'.&lt;br /&gt;
#Under 'Connection Type:' select 'FTP using Explicit SSL (Auth TLS)'.&lt;br /&gt;
#In the 'Address' box, type the URL of your site or the IP of the server (either will work).&lt;br /&gt;
#Enter the following:&lt;br /&gt;
#*'''Username:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#Click 'Apply', then 'Connect'.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===WISE-FTP===&lt;br /&gt;
&lt;br /&gt;
#Click File &amp;gt; Connect.&lt;br /&gt;
#Click 'New Site' at the top-left.&lt;br /&gt;
#*'''Profile Name:''' Choose a name for the connection.&lt;br /&gt;
#*'''Server Address:'''  URL of your site or the IP of the server.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Username:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Password:''' Your cPanel password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#*'''Connection type:''' FTPES (explicit TLS/SSL).&lt;br /&gt;
#Any other information is optional. &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===WS_FTP PRO===&lt;br /&gt;
&lt;br /&gt;
New Connections:&lt;br /&gt;
&lt;br /&gt;
#Click 'Connections' &amp;gt; 'New Connection...'&lt;br /&gt;
#Choose a name for the connection.&lt;br /&gt;
#Under 'Connection Type:', select 'FTP/SSL (AUTH SSL)'.&lt;br /&gt;
#In the 'Server Address:' field, enter in the URL of your site or the IP of the server.[[#Additional Notes| (?) ]]&lt;br /&gt;
#'''Username:''' Your cPanel username.[[#Additional Notes| (?) ]]&lt;br /&gt;
#'''Password:''' Your cPanel password.[[#Additional Notes| (?) ]]&lt;br /&gt;
#Click Finish.&lt;br /&gt;
&lt;br /&gt;
Existing Connections:&lt;br /&gt;
&lt;br /&gt;
#Click 'Connections' &amp;gt; 'Site Manager'.&lt;br /&gt;
#Click 'Edit' next to the site you would like to modify.&lt;br /&gt;
#Click 'Advanced', then change the 'Server Type' dropdown to 'FTP/SSL (AUTH SSL)'.&lt;br /&gt;
#Click OK.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Transmit===&lt;br /&gt;
&lt;br /&gt;
On the “FTP” tab, enter in the following:&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
[[File:TransmitFTP.png]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Additional Notes==&lt;br /&gt;
&lt;br /&gt;
Server information can be found in your Hostek.com welcome e-mail that you receive upon purchasing a service with Hostek. If you are missing this e-mail or any log-in information, please submit a ticket via [https://support.hostek.com https://support.hostek.com] and we'd be glad to send it once more.&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:Fz_tls_a.png&amp;diff=2240</id>
		<title>File:Fz tls a.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:Fz_tls_a.png&amp;diff=2240"/>
				<updated>2014-08-19T06:03:03Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:Fz_tls.png&amp;diff=2239</id>
		<title>File:Fz tls.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:Fz_tls.png&amp;diff=2239"/>
				<updated>2014-08-19T05:58:28Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Domain_Registration_and_Domain_Name_Management&amp;diff=2155</id>
		<title>Domain Registration and Domain Name Management</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Domain_Registration_and_Domain_Name_Management&amp;diff=2155"/>
				<updated>2014-06-03T03:50:08Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Transfer Your Domain Name from Another Registrar */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Basic Information==&lt;br /&gt;
*When you request that we register a domain name on your behalf, you will be the owner of the domain name (also called the domain name &amp;quot;Registrant&amp;quot;). We will register the domain in your name.&lt;br /&gt;
*'''How can I find out if a domain name is available for registration?'''&lt;br /&gt;
*'''Use our domain name search tool by clicking [https://cp.hostek.com/cart.php?a=add&amp;amp;domain=register Here]'''&lt;br /&gt;
*After registering a domain it typically takes between 24-72 hours for the domain to fully propagate and become accessible on the internet. This is the normal internet propagation time.&lt;br /&gt;
*If you had us register a domain name on your behalf, we'll begin sending you renewal notices a month before your domain name is set to expire.&lt;br /&gt;
&lt;br /&gt;
===What is a DNS transfer?===&lt;br /&gt;
A DNS transfer is the pointing of your domain name to different nameservers. If you have us register your domain name on your behalf, we will automatically point the domain name to our nameservers.&lt;br /&gt;
&lt;br /&gt;
If the domain name is already registered, you'll need to point the domain name to our nameservers in order for users to find your site on our servers by visiting the domain name in a browser. The domain must also be pointed to our nameservers before your email accounts on our mail server will function.&lt;br /&gt;
&lt;br /&gt;
===How Long Will It Take For My Site To Show?===&lt;br /&gt;
*If you are registering a new domain name the site will be available immediately after your order is set up.&lt;br /&gt;
*If you are pointing the nameservers to us it can take anywhere from 4 to 48 hours for the changes to completely propagate throughout the Internet.&lt;br /&gt;
*If you are transferring a domain to us we recommend changing the nameservers before making the transfer. '''(Domain Registration Transfers can take from 7 to 10 days to complete but nameserver changes will still take effect while your domain is transferring)'''&lt;br /&gt;
&lt;br /&gt;
===What is DNS Propagation?===&lt;br /&gt;
DNS propagation is the process in which new server information is updated in throughout the Internet. Since Internet Service Providers cache all DNS information and only update it every few days there is a delay when you make changes to the nameservers for your site. When your site has fully propagated it means that the new information has been updated on all DNS servers on the web and your site will be viewable by anyone on the web.&lt;br /&gt;
&lt;br /&gt;
==Check to see if Domain Name is Available==&lt;br /&gt;
Use our domain name search tool by clicking [https://cp.hostek.com/cart.php?a=add&amp;amp;domain=register Here]&lt;br /&gt;
&lt;br /&gt;
==Registrant contact information validation==&lt;br /&gt;
*Any domain that is registered or transferred to Hostek will need to be validated upon the purchase or transfer of a domain name or if the registrant's first name or last name has been modified. Should any of these occur, our registrar &amp;quot;OpenSRS&amp;quot; will send an email requiring an affirmative response from the registrant (customer). Failing to receive an affirmative response from the registrant within 15 days will result in the suspension of the name. The name will subsequently be placed on 'ClientHold' status, taking the domain (and related services) offline.  If a registrant has already validated their contact information, this process will not be initiated. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How to Register A Domain Name==&lt;br /&gt;
#To register a new domain name, you'll first have to log into your billing account at cp.hostek.com.&lt;br /&gt;
#Once logged in, click the '''Order''' link at the bottom of the '''Quick Navigation Links''' at the right hand of your screen.&lt;br /&gt;
#On the next page, click the '''Register Domain''' link under the '''Browse Products &amp;amp; Services''' section. This will take you to a page where you can enter the domain name you wish to register and check for its availability. If the domain shows it is available, click the '''Add to cart''' button to proceed with the order.&lt;br /&gt;
#At this point you can choose whether or not to add ID protection to your order. If you choose to add ID protection, then your contact information will not displayed when a WHOIS lookup is performed on the domain name. This page also lets you choose what name servers you want the domain to use. By default, the system will fill this in with the correct name servers for your hosting plan. If you manage your DNS elsewhere though, this will let you fill in the appropriate name servers. When you click the &amp;quot;Update Cart&amp;quot; button on this page, you'll be taken to the shopping cart.&lt;br /&gt;
#On the shopping cart page, you'd click the '''Checkout''' button and verify your billing information and choose the payment type. After you complete the order, you'll need to pay the Invoice that is generated in the '''My Invoices''' section of your account. Once the invoice is paid, our team will register the domain for you and send a confirmation email once complete. &lt;br /&gt;
&lt;br /&gt;
==Domain Extensions and Registration, Transfer, and Renewal Fees==&lt;br /&gt;
*'''Domain Registration, Transfer and Renewal fees can be found at our site [http://hostek.com/domainreg.asp Here]'''&lt;br /&gt;
&lt;br /&gt;
*'''To see if a domain is available for registration or transfer or use our domain name search tool by clicking [https://cp.hostek.com/cart.php?a=add&amp;amp;domain=register Here]'''&lt;br /&gt;
&lt;br /&gt;
==Information on .Pro==&lt;br /&gt;
*The .pro domains must be at least 4 characters long.&lt;br /&gt;
*http://registry.pro/pro/eligibility.shtml &lt;br /&gt;
#PRO is an exclusive top-level domain reserved for use exclusively by licensed business and service professionals and entities internationally. All applicants meeting the following qualifications may register a .PRO domain name: &lt;br /&gt;
*Provides professional services&lt;br /&gt;
*Admitted to or licensed by a government certification body or jurisdictional licensing entity recognized by a governmental body that regularly verifies the accuracy of its data&lt;br /&gt;
*In good standing with the licensing authority &lt;br /&gt;
*In addition, registrants will be asked to provide the following information related to their professional eligibility:&lt;br /&gt;
*Identification&lt;br /&gt;
*Contact information&lt;br /&gt;
*Profession-specific information such as license number &lt;br /&gt;
*To register your .PRO domain name today, please contact one of our authorized registrars&lt;br /&gt;
*http://registry.pro/pro/products.shtml (Listed below.)&lt;br /&gt;
#What information will RegistryPro require from me to activate my domain?&lt;br /&gt;
*You will need to provide: &lt;br /&gt;
**Your name&lt;br /&gt;
**Your profession&lt;br /&gt;
**Your jurisdictional country&lt;br /&gt;
**Your licensing authority&lt;br /&gt;
**Your license number&lt;br /&gt;
**A link to your licensing authority's Web site&lt;br /&gt;
&lt;br /&gt;
==Information on .IT==&lt;br /&gt;
*If you live in, or your business is in Italy you must provide the Registrant Fiscal Code&lt;br /&gt;
*If you live in, or your business is within a country in the European Union you must enter the Identity Document Number, or the numbers on an official form of identification.&lt;br /&gt;
&lt;br /&gt;
==Transferring a .co.uk==&lt;br /&gt;
&lt;br /&gt;
*In order to transfer a .UK domain to our registrar, you must first contact your current Registrar and ask them to change the IPS Tag to “TUCOWS-CA“.&lt;br /&gt;
*If the current Registrar is unable or unwilling to make the change, please contact Nominet directly (http://www.nominet.org.uk) and they will help make the change. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Transfer Your Domain Name from Another Registrar==&lt;br /&gt;
#Unlock the domain at the [https://wiki.hostek.com/Domain_Registration_and_Domain_Name_Management#Unlocking_Domains_at_other_registrars_-_Video_Tutorials other registrars.]&lt;br /&gt;
#After unlocking the domain, make sure your contact information for the domain is up-to-date&lt;br /&gt;
#Next you'll need to obtain the EPP (transfer authorization) your current registrar. Most registrars have a way to retrieve the code via your online account, but if you do not see this option then contact them directly.&lt;br /&gt;
#Once you have the EPP code, log in to your Hostek.com billing account at http://cp.hostek.com&lt;br /&gt;
#Enter the domain name you wish to transfer in the text box labeled '''Check Availability of a New Domain''', then hit the green '''Transfer''' button.&lt;br /&gt;
#On the next page, click the ''''Click to Continue'''' link&lt;br /&gt;
#Here you will enter the domain's EPP code, and if you wish, select the option for '''ID Protection'''. Also, be sure to enter your Hostek.com name servers if you want the domain to point to our servers after the transfer completes.&lt;br /&gt;
#Now you will be shown your order details. Please verify they are correct and click the ''''Check Out'''' button to place the order. When you pay the invoice that is generated, our Sales team will verify the order details and initiate the domain name transfer.&lt;br /&gt;
#After our team initiates the domain name transfer, you will receive a transfer approval email at the email address you specified in the domain's contact details. (The approval email is sent from OpenSRS.com, our registrar)&lt;br /&gt;
#You will need to approve the email from OpenSRS.com and re-enter the EPP code if they ask you to. The domain name transfer will complete within 7 days after you approve the transfer.&lt;br /&gt;
&lt;br /&gt;
==Transfer Your Domain to a Different Registrar==&lt;br /&gt;
A registrar transfer is the moving a domain name from one registrar to another. A registrar is the company that actually registers a domain name.&lt;br /&gt;
#You will need to log into your billing control panel at https://cp.hostek.com&lt;br /&gt;
#Click on the domains drop-down menu and click &amp;quot;My Domains&amp;quot;.&lt;br /&gt;
#Scroll down to your domain name and click &amp;quot;Manage Domain&amp;quot;&lt;br /&gt;
#Click the &amp;quot;Registrar Lock&amp;quot; tab, then click the &amp;quot;Disable Registrar Lock&amp;quot; button.&lt;br /&gt;
#Click on the &amp;quot;Management Tools&amp;quot; drop-down menu and select &amp;quot;Contact Information&amp;quot;&lt;br /&gt;
#You will need to update the Admin contact email address to an email address that you can receive emails at and click &amp;quot;Save Changes&amp;quot;.&lt;br /&gt;
#Click &amp;quot;Managenemt Tools&amp;quot; drop-down and select &amp;quot;Get EPP Code&amp;quot;. This will display the EPP code that you will need to provide to the registrar you are transferring to.&lt;br /&gt;
#Once you have initiated the transfer with the registrar and provided the EPP code you will receive a transfer approval email at the email address you specified.&lt;br /&gt;
&lt;br /&gt;
==How to update domain nameservers in client account==&lt;br /&gt;
#You will need to log into your billing control panel at http://cp.hostek.com. &lt;br /&gt;
#Click on '''My Domains''', in the '''Domains''' tab at the menu bar.&lt;br /&gt;
#Click on the '''Manage Domain''' tab to the right side of the domain.&lt;br /&gt;
#Click on the '''Register Lock''', then the '''Disable Register Lock''' tab. &lt;br /&gt;
#Next, click on '''Nameservers''', update the Nameservers and click one the '''Change Nameservers''' tab.&lt;br /&gt;
#You will then need to lock the domain back at the &amp;quot;Register Lock''' location.&lt;br /&gt;
*NOTE: The registrar lock must be unchecked to make these changes.&lt;br /&gt;
&lt;br /&gt;
==Register Nameservers==&lt;br /&gt;
If you registered your domain name with Hostek and want to register your own nameservers.&lt;br /&gt;
&lt;br /&gt;
#Create A records pointing to the IP address of the DNS servers you will mirror.&lt;br /&gt;
#*Example: ns1.your-domian.com (Name) &amp;gt;&amp;gt; A (Record Type) &amp;gt;&amp;gt; 123.123.123.123 (ip address)&lt;br /&gt;
#Submit a support request for the login details for manually editing your registration information including the control to register Name Servers and reference this article.&lt;br /&gt;
&lt;br /&gt;
==Unlocking Domains at other registrars - Video Tutorials==&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_000domains.html Transferring domain names away from 000domains.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_123reg.html Transferring domain names away from 123-reg.co.uk]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_1and1.html Transferring domain names away from 1and1.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_domainsite.html Transferring domain names away from domainsite.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_dotster.html Transferring domain names away from dotster.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_dynadot.html Transferring domain names away from dynadot.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_enom.html Transferring domain names away from enom.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_godaddy.html Transferring domain names away from godaddy.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_itsyourdomain.html Transferring domain names away from itsyourdomain.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_melbourneit.html Transferring domain names away from melbourneit.com.au]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_namebargain.html Transferring domain names away from namebargain.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_namecheap.html Transferring domain names away from namecheap.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_netfirms.html Transferring domain names away from netfirms.ca]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_netsol.html Transferring domain names away from networksolutions.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_opensrs.html Transferring domain names away from opensrs.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_regfly.html Transferring domain names away from registerfly.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_register.html Transferring domain names away from register.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_stargate.html Transferring domain names away from stargate.com]&lt;br /&gt;
&lt;br /&gt;
==Renewing Your Domain Name==&lt;br /&gt;
#If auto-renew is enabled for the domain an invoice will be generated 14 days before the expiration date. You can complete the renewal by paying the invoice before the expiration date or it will automatically bill on the actual due date. Note if your payment method is Paypal you will need to pay your invoice either before or on expiration date.&lt;br /&gt;
#If you want to renew it prior to the 2 weeks you will need to log into your billing control panel at http://cp.hostek.com, click on '''My Domains,''' then click on the gray button that says '''Manage Domain''' next to the domain you wish to renew and then click on '''Renew Now''' next to Recurring Amount in the Information page.&lt;br /&gt;
#This will create an invoice which you will need to go and pay to have the domain renewed. &lt;br /&gt;
#If auto-renew is disabled for the domain then click on the renew button. This will generate an invoice for the domain renewal. Once the invoice has been paid the domain will be renewed.&lt;br /&gt;
*If you wish to let the domain expire then click on the &amp;quot;Disable Auto Renew&amp;quot;'''Bold text''' NOTE Once auto renew is disabled an invoice will not generate for the domain and it will expire.&lt;br /&gt;
*If you disabled auto renew during the 14 days before the expiration date and wish to renew the domain name please click on the &amp;quot;'''Renew Domain'''&amp;quot; icon. (Not &amp;quot;Enable Auto Renew&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
==Domain Redemption Period==&lt;br /&gt;
*If the domain expires it may still be maintained in the registration database for a 5-day* grace period where it can be renewed at the normal renewal price. During this time all services such as hosting or email will not be active.&lt;br /&gt;
*After the grace period it will be deactivated and placed into a 30-day* Redemption Period. The cost to get a domain name out of redemption period is $110.00.&lt;br /&gt;
*Once the Redemption Period has elapsed the domain may be registered by another party. &lt;br /&gt;
*If your domain is in redemption period and you need to have it renewed. The cost to get a domain name out of redemption period is $110.00&lt;br /&gt;
*Here is a link to pay for the domain redemption  https://cp.hostek.com/cart.php?a=add&amp;amp;pid=286&lt;br /&gt;
&lt;br /&gt;
==Domain Registration Information vs. Domain Hosting Information==&lt;br /&gt;
*Note: This '''mostly''' applies to those who have ordered their Registration through Hostek.com.&lt;br /&gt;
#Domain Registration Information and your Domain's Hosting Information are completely separate; and must be maintained two different ways.&lt;br /&gt;
#*Registration Information is kept at the Registrar level. Depending on your privacy settings, it is set up much like a Phone Book entry, in that it is Public Ownership Information. Available to lookup around the internet.&lt;br /&gt;
#* Your Hosting Information with Hostek.com is kept within our own secure Billing System.&lt;br /&gt;
#Here are the respective processes to update each:&lt;br /&gt;
#*'''[https://wiki.hostek.com/Client_Control_Panel#How_to_edit_Domain_Registration_Contact_Details  Registration Information]'''&amp;lt;br clear=all&amp;gt;'''&lt;br /&gt;
#*'''[https://wiki.hostek.com/Client_Control_Panel#How_To_Edit.2FChange_My_Contact_Details  Hosting Information]'''&amp;lt;br clear=all&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
==Push Domains==&lt;br /&gt;
*This option means that domains registered in one Opensrs reseller account can be transferred over to another Opensrs reseller without being renewed for another year.&lt;br /&gt;
*In order for another reseller to push domains to our account, we need to authorize that reseller by adding their username to our allow list. Without this, any attempt to push domains to your account will fail.&lt;br /&gt;
*If you are transferring 1 - 10 domains from the reseller you are under to ours we can handle this for you. All we need is your resellers username and you will need ours. Please request and provide this information in a ticket by sending a email to support@hostek.com&lt;br /&gt;
*If you are transferring over 10 domains to us you will need to order each one from your client control panel at https://cp.hostek.com/clientarea.php. (If there is more then 10 you will have to order each domain separately and each one will be charged as a renewal and renewed for another year.)&lt;br /&gt;
*If you have a reseller account please contact us about our sub-reseller program. &lt;br /&gt;
&lt;br /&gt;
==How to get the EPP code==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;An EPP code is the authorization code that will allow you to initiate a transfer of your domain name from another registrar. Each registrar handles these slightly different. Here is the general process:&amp;lt;/p&amp;gt;&lt;br /&gt;
*Login to your current registrar that your domain is currently registered at&lt;br /&gt;
*Find the domain management section&lt;br /&gt;
*Make sure your domain name is unlocked&lt;br /&gt;
*Make sure that the admin contact email address is set to something that you have access too&lt;br /&gt;
*Now request EPP code (authorization code).  You should have a button or a link in the domain management section to do so&lt;br /&gt;
*The registrar will email the EPP code to the admin contact email address that is set for your domain. &lt;br /&gt;
*If you have problems obtaining it, please contact your registrar.&lt;br /&gt;
&lt;br /&gt;
==How to order multiple years of Domain Registration==&lt;br /&gt;
*Note: If you currently have a due invoice for the Domain's Registration, please contact support to get this cancelled. (https://support.hostek.com/ or email '''support@hostek.com''')&lt;br /&gt;
#Firstly, you'll want to log in to your Client Area (here: https://cp.hostek.com/)&lt;br /&gt;
#Click on '''Domains'''.&lt;br /&gt;
#Select '''Renew Domains'''.&lt;br /&gt;
#And then select the amount of years you wish to pay for from the '''drop-down menu''' on the right-side of the '''Domain Name'''.&lt;br /&gt;
#Click the '''Order Now''' button.&lt;br /&gt;
&lt;br /&gt;
==Order Requirements==&lt;br /&gt;
&lt;br /&gt;
*In order to have a product with us, the domain name's structure must be completely lowercase.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Sales]]&lt;br /&gt;
[[Category:Domain-Names]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Domain_Registration_and_Domain_Name_Management&amp;diff=2154</id>
		<title>Domain Registration and Domain Name Management</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Domain_Registration_and_Domain_Name_Management&amp;diff=2154"/>
				<updated>2014-06-03T03:46:40Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Transfer Your Domain Name from Another Registrar */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Basic Information==&lt;br /&gt;
*When you request that we register a domain name on your behalf, you will be the owner of the domain name (also called the domain name &amp;quot;Registrant&amp;quot;). We will register the domain in your name.&lt;br /&gt;
*'''How can I find out if a domain name is available for registration?'''&lt;br /&gt;
*'''Use our domain name search tool by clicking [https://cp.hostek.com/cart.php?a=add&amp;amp;domain=register Here]'''&lt;br /&gt;
*After registering a domain it typically takes between 24-72 hours for the domain to fully propagate and become accessible on the internet. This is the normal internet propagation time.&lt;br /&gt;
*If you had us register a domain name on your behalf, we'll begin sending you renewal notices a month before your domain name is set to expire.&lt;br /&gt;
&lt;br /&gt;
===What is a DNS transfer?===&lt;br /&gt;
A DNS transfer is the pointing of your domain name to different nameservers. If you have us register your domain name on your behalf, we will automatically point the domain name to our nameservers.&lt;br /&gt;
&lt;br /&gt;
If the domain name is already registered, you'll need to point the domain name to our nameservers in order for users to find your site on our servers by visiting the domain name in a browser. The domain must also be pointed to our nameservers before your email accounts on our mail server will function.&lt;br /&gt;
&lt;br /&gt;
===How Long Will It Take For My Site To Show?===&lt;br /&gt;
*If you are registering a new domain name the site will be available immediately after your order is set up.&lt;br /&gt;
*If you are pointing the nameservers to us it can take anywhere from 4 to 48 hours for the changes to completely propagate throughout the Internet.&lt;br /&gt;
*If you are transferring a domain to us we recommend changing the nameservers before making the transfer. '''(Domain Registration Transfers can take from 7 to 10 days to complete but nameserver changes will still take effect while your domain is transferring)'''&lt;br /&gt;
&lt;br /&gt;
===What is DNS Propagation?===&lt;br /&gt;
DNS propagation is the process in which new server information is updated in throughout the Internet. Since Internet Service Providers cache all DNS information and only update it every few days there is a delay when you make changes to the nameservers for your site. When your site has fully propagated it means that the new information has been updated on all DNS servers on the web and your site will be viewable by anyone on the web.&lt;br /&gt;
&lt;br /&gt;
==Check to see if Domain Name is Available==&lt;br /&gt;
Use our domain name search tool by clicking [https://cp.hostek.com/cart.php?a=add&amp;amp;domain=register Here]&lt;br /&gt;
&lt;br /&gt;
==Registrant contact information validation==&lt;br /&gt;
*Any domain that is registered or transferred to Hostek will need to be validated upon the purchase or transfer of a domain name or if the registrant's first name or last name has been modified. Should any of these occur, our registrar &amp;quot;OpenSRS&amp;quot; will send an email requiring an affirmative response from the registrant (customer). Failing to receive an affirmative response from the registrant within 15 days will result in the suspension of the name. The name will subsequently be placed on 'ClientHold' status, taking the domain (and related services) offline.  If a registrant has already validated their contact information, this process will not be initiated. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How to Register A Domain Name==&lt;br /&gt;
#To register a new domain name, you'll first have to log into your billing account at cp.hostek.com.&lt;br /&gt;
#Once logged in, click the '''Order''' link at the bottom of the '''Quick Navigation Links''' at the right hand of your screen.&lt;br /&gt;
#On the next page, click the '''Register Domain''' link under the '''Browse Products &amp;amp; Services''' section. This will take you to a page where you can enter the domain name you wish to register and check for its availability. If the domain shows it is available, click the '''Add to cart''' button to proceed with the order.&lt;br /&gt;
#At this point you can choose whether or not to add ID protection to your order. If you choose to add ID protection, then your contact information will not displayed when a WHOIS lookup is performed on the domain name. This page also lets you choose what name servers you want the domain to use. By default, the system will fill this in with the correct name servers for your hosting plan. If you manage your DNS elsewhere though, this will let you fill in the appropriate name servers. When you click the &amp;quot;Update Cart&amp;quot; button on this page, you'll be taken to the shopping cart.&lt;br /&gt;
#On the shopping cart page, you'd click the '''Checkout''' button and verify your billing information and choose the payment type. After you complete the order, you'll need to pay the Invoice that is generated in the '''My Invoices''' section of your account. Once the invoice is paid, our team will register the domain for you and send a confirmation email once complete. &lt;br /&gt;
&lt;br /&gt;
==Domain Extensions and Registration, Transfer, and Renewal Fees==&lt;br /&gt;
*'''Domain Registration, Transfer and Renewal fees can be found at our site [http://hostek.com/domainreg.asp Here]'''&lt;br /&gt;
&lt;br /&gt;
*'''To see if a domain is available for registration or transfer or use our domain name search tool by clicking [https://cp.hostek.com/cart.php?a=add&amp;amp;domain=register Here]'''&lt;br /&gt;
&lt;br /&gt;
==Information on .Pro==&lt;br /&gt;
*The .pro domains must be at least 4 characters long.&lt;br /&gt;
*http://registry.pro/pro/eligibility.shtml &lt;br /&gt;
#PRO is an exclusive top-level domain reserved for use exclusively by licensed business and service professionals and entities internationally. All applicants meeting the following qualifications may register a .PRO domain name: &lt;br /&gt;
*Provides professional services&lt;br /&gt;
*Admitted to or licensed by a government certification body or jurisdictional licensing entity recognized by a governmental body that regularly verifies the accuracy of its data&lt;br /&gt;
*In good standing with the licensing authority &lt;br /&gt;
*In addition, registrants will be asked to provide the following information related to their professional eligibility:&lt;br /&gt;
*Identification&lt;br /&gt;
*Contact information&lt;br /&gt;
*Profession-specific information such as license number &lt;br /&gt;
*To register your .PRO domain name today, please contact one of our authorized registrars&lt;br /&gt;
*http://registry.pro/pro/products.shtml (Listed below.)&lt;br /&gt;
#What information will RegistryPro require from me to activate my domain?&lt;br /&gt;
*You will need to provide: &lt;br /&gt;
**Your name&lt;br /&gt;
**Your profession&lt;br /&gt;
**Your jurisdictional country&lt;br /&gt;
**Your licensing authority&lt;br /&gt;
**Your license number&lt;br /&gt;
**A link to your licensing authority's Web site&lt;br /&gt;
&lt;br /&gt;
==Information on .IT==&lt;br /&gt;
*If you live in, or your business is in Italy you must provide the Registrant Fiscal Code&lt;br /&gt;
*If you live in, or your business is within a country in the European Union you must enter the Identity Document Number, or the numbers on an official form of identification.&lt;br /&gt;
&lt;br /&gt;
==Transferring a .co.uk==&lt;br /&gt;
&lt;br /&gt;
*In order to transfer a .UK domain to our registrar, you must first contact your current Registrar and ask them to change the IPS Tag to “TUCOWS-CA“.&lt;br /&gt;
*If the current Registrar is unable or unwilling to make the change, please contact Nominet directly (http://www.nominet.org.uk) and they will help make the change. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Transfer Your Domain Name from Another Registrar==&lt;br /&gt;
#Unlock the domain at the other registrar. [[Unlocking_Domains_at_other_registrars]]&lt;br /&gt;
#After unlocking the domain, make sure your contact information for the domain is up-to-date&lt;br /&gt;
#Next you'll need to obtain the EPP (transfer authorization) your current registrar. Most registrars have a way to retrieve the code via your online account, but if you do not see this option then contact them directly.&lt;br /&gt;
#Once you have the EPP code, log in to your Hostek.com billing account at http://cp.hostek.com&lt;br /&gt;
#Enter the domain name you wish to transfer in the text box labeled '''Check Availability of a New Domain''', then hit the green '''Transfer''' button.&lt;br /&gt;
#On the next page, click the ''''Click to Continue'''' link&lt;br /&gt;
#Here you will enter the domain's EPP code, and if you wish, select the option for '''ID Protection'''. Also, be sure to enter your Hostek.com name servers if you want the domain to point to our servers after the transfer completes.&lt;br /&gt;
#Now you will be shown your order details. Please verify they are correct and click the ''''Check Out'''' button to place the order. When you pay the invoice that is generated, our Sales team will verify the order details and initiate the domain name transfer.&lt;br /&gt;
#After our team initiates the domain name transfer, you will receive a transfer approval email at the email address you specified in the domain's contact details. (The approval email is sent from OpenSRS.com, our registrar)&lt;br /&gt;
#You will need to approve the email from OpenSRS.com and re-enter the EPP code if they ask you to. The domain name transfer will complete within 7 days after you approve the transfer.&lt;br /&gt;
&lt;br /&gt;
==Transfer Your Domain to a Different Registrar==&lt;br /&gt;
A registrar transfer is the moving a domain name from one registrar to another. A registrar is the company that actually registers a domain name.&lt;br /&gt;
#You will need to log into your billing control panel at https://cp.hostek.com&lt;br /&gt;
#Click on the domains drop-down menu and click &amp;quot;My Domains&amp;quot;.&lt;br /&gt;
#Scroll down to your domain name and click &amp;quot;Manage Domain&amp;quot;&lt;br /&gt;
#Click the &amp;quot;Registrar Lock&amp;quot; tab, then click the &amp;quot;Disable Registrar Lock&amp;quot; button.&lt;br /&gt;
#Click on the &amp;quot;Management Tools&amp;quot; drop-down menu and select &amp;quot;Contact Information&amp;quot;&lt;br /&gt;
#You will need to update the Admin contact email address to an email address that you can receive emails at and click &amp;quot;Save Changes&amp;quot;.&lt;br /&gt;
#Click &amp;quot;Managenemt Tools&amp;quot; drop-down and select &amp;quot;Get EPP Code&amp;quot;. This will display the EPP code that you will need to provide to the registrar you are transferring to.&lt;br /&gt;
#Once you have initiated the transfer with the registrar and provided the EPP code you will receive a transfer approval email at the email address you specified.&lt;br /&gt;
&lt;br /&gt;
==How to update domain nameservers in client account==&lt;br /&gt;
#You will need to log into your billing control panel at http://cp.hostek.com. &lt;br /&gt;
#Click on '''My Domains''', in the '''Domains''' tab at the menu bar.&lt;br /&gt;
#Click on the '''Manage Domain''' tab to the right side of the domain.&lt;br /&gt;
#Click on the '''Register Lock''', then the '''Disable Register Lock''' tab. &lt;br /&gt;
#Next, click on '''Nameservers''', update the Nameservers and click one the '''Change Nameservers''' tab.&lt;br /&gt;
#You will then need to lock the domain back at the &amp;quot;Register Lock''' location.&lt;br /&gt;
*NOTE: The registrar lock must be unchecked to make these changes.&lt;br /&gt;
&lt;br /&gt;
==Register Nameservers==&lt;br /&gt;
If you registered your domain name with Hostek and want to register your own nameservers.&lt;br /&gt;
&lt;br /&gt;
#Create A records pointing to the IP address of the DNS servers you will mirror.&lt;br /&gt;
#*Example: ns1.your-domian.com (Name) &amp;gt;&amp;gt; A (Record Type) &amp;gt;&amp;gt; 123.123.123.123 (ip address)&lt;br /&gt;
#Submit a support request for the login details for manually editing your registration information including the control to register Name Servers and reference this article.&lt;br /&gt;
&lt;br /&gt;
==Unlocking Domains at other registrars - Video Tutorials==&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_000domains.html Transferring domain names away from 000domains.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_123reg.html Transferring domain names away from 123-reg.co.uk]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_1and1.html Transferring domain names away from 1and1.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_domainsite.html Transferring domain names away from domainsite.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_dotster.html Transferring domain names away from dotster.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_dynadot.html Transferring domain names away from dynadot.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_enom.html Transferring domain names away from enom.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_godaddy.html Transferring domain names away from godaddy.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_itsyourdomain.html Transferring domain names away from itsyourdomain.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_melbourneit.html Transferring domain names away from melbourneit.com.au]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_namebargain.html Transferring domain names away from namebargain.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_namecheap.html Transferring domain names away from namecheap.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_netfirms.html Transferring domain names away from netfirms.ca]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_netsol.html Transferring domain names away from networksolutions.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_opensrs.html Transferring domain names away from opensrs.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_regfly.html Transferring domain names away from registerfly.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_register.html Transferring domain names away from register.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_stargate.html Transferring domain names away from stargate.com]&lt;br /&gt;
&lt;br /&gt;
==Renewing Your Domain Name==&lt;br /&gt;
#If auto-renew is enabled for the domain an invoice will be generated 14 days before the expiration date. You can complete the renewal by paying the invoice before the expiration date or it will automatically bill on the actual due date. Note if your payment method is Paypal you will need to pay your invoice either before or on expiration date.&lt;br /&gt;
#If you want to renew it prior to the 2 weeks you will need to log into your billing control panel at http://cp.hostek.com, click on '''My Domains,''' then click on the gray button that says '''Manage Domain''' next to the domain you wish to renew and then click on '''Renew Now''' next to Recurring Amount in the Information page.&lt;br /&gt;
#This will create an invoice which you will need to go and pay to have the domain renewed. &lt;br /&gt;
#If auto-renew is disabled for the domain then click on the renew button. This will generate an invoice for the domain renewal. Once the invoice has been paid the domain will be renewed.&lt;br /&gt;
*If you wish to let the domain expire then click on the &amp;quot;Disable Auto Renew&amp;quot;'''Bold text''' NOTE Once auto renew is disabled an invoice will not generate for the domain and it will expire.&lt;br /&gt;
*If you disabled auto renew during the 14 days before the expiration date and wish to renew the domain name please click on the &amp;quot;'''Renew Domain'''&amp;quot; icon. (Not &amp;quot;Enable Auto Renew&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
==Domain Redemption Period==&lt;br /&gt;
*If the domain expires it may still be maintained in the registration database for a 5-day* grace period where it can be renewed at the normal renewal price. During this time all services such as hosting or email will not be active.&lt;br /&gt;
*After the grace period it will be deactivated and placed into a 30-day* Redemption Period. The cost to get a domain name out of redemption period is $110.00.&lt;br /&gt;
*Once the Redemption Period has elapsed the domain may be registered by another party. &lt;br /&gt;
*If your domain is in redemption period and you need to have it renewed. The cost to get a domain name out of redemption period is $110.00&lt;br /&gt;
*Here is a link to pay for the domain redemption  https://cp.hostek.com/cart.php?a=add&amp;amp;pid=286&lt;br /&gt;
&lt;br /&gt;
==Domain Registration Information vs. Domain Hosting Information==&lt;br /&gt;
*Note: This '''mostly''' applies to those who have ordered their Registration through Hostek.com.&lt;br /&gt;
#Domain Registration Information and your Domain's Hosting Information are completely separate; and must be maintained two different ways.&lt;br /&gt;
#*Registration Information is kept at the Registrar level. Depending on your privacy settings, it is set up much like a Phone Book entry, in that it is Public Ownership Information. Available to lookup around the internet.&lt;br /&gt;
#* Your Hosting Information with Hostek.com is kept within our own secure Billing System.&lt;br /&gt;
#Here are the respective processes to update each:&lt;br /&gt;
#*'''[https://wiki.hostek.com/Client_Control_Panel#How_to_edit_Domain_Registration_Contact_Details  Registration Information]'''&amp;lt;br clear=all&amp;gt;'''&lt;br /&gt;
#*'''[https://wiki.hostek.com/Client_Control_Panel#How_To_Edit.2FChange_My_Contact_Details  Hosting Information]'''&amp;lt;br clear=all&amp;gt;'''&lt;br /&gt;
&lt;br /&gt;
==Push Domains==&lt;br /&gt;
*This option means that domains registered in one Opensrs reseller account can be transferred over to another Opensrs reseller without being renewed for another year.&lt;br /&gt;
*In order for another reseller to push domains to our account, we need to authorize that reseller by adding their username to our allow list. Without this, any attempt to push domains to your account will fail.&lt;br /&gt;
*If you are transferring 1 - 10 domains from the reseller you are under to ours we can handle this for you. All we need is your resellers username and you will need ours. Please request and provide this information in a ticket by sending a email to support@hostek.com&lt;br /&gt;
*If you are transferring over 10 domains to us you will need to order each one from your client control panel at https://cp.hostek.com/clientarea.php. (If there is more then 10 you will have to order each domain separately and each one will be charged as a renewal and renewed for another year.)&lt;br /&gt;
*If you have a reseller account please contact us about our sub-reseller program. &lt;br /&gt;
&lt;br /&gt;
==How to get the EPP code==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;An EPP code is the authorization code that will allow you to initiate a transfer of your domain name from another registrar. Each registrar handles these slightly different. Here is the general process:&amp;lt;/p&amp;gt;&lt;br /&gt;
*Login to your current registrar that your domain is currently registered at&lt;br /&gt;
*Find the domain management section&lt;br /&gt;
*Make sure your domain name is unlocked&lt;br /&gt;
*Make sure that the admin contact email address is set to something that you have access too&lt;br /&gt;
*Now request EPP code (authorization code).  You should have a button or a link in the domain management section to do so&lt;br /&gt;
*The registrar will email the EPP code to the admin contact email address that is set for your domain. &lt;br /&gt;
*If you have problems obtaining it, please contact your registrar.&lt;br /&gt;
&lt;br /&gt;
==How to order multiple years of Domain Registration==&lt;br /&gt;
*Note: If you currently have a due invoice for the Domain's Registration, please contact support to get this cancelled. (https://support.hostek.com/ or email '''support@hostek.com''')&lt;br /&gt;
#Firstly, you'll want to log in to your Client Area (here: https://cp.hostek.com/)&lt;br /&gt;
#Click on '''Domains'''.&lt;br /&gt;
#Select '''Renew Domains'''.&lt;br /&gt;
#And then select the amount of years you wish to pay for from the '''drop-down menu''' on the right-side of the '''Domain Name'''.&lt;br /&gt;
#Click the '''Order Now''' button.&lt;br /&gt;
&lt;br /&gt;
==Order Requirements==&lt;br /&gt;
&lt;br /&gt;
*In order to have a product with us, the domain name's structure must be completely lowercase.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Sales]]&lt;br /&gt;
[[Category:Domain-Names]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=WHMCS&amp;diff=2135</id>
		<title>WHMCS</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=WHMCS&amp;diff=2135"/>
				<updated>2014-05-06T05:19:08Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* WHMCS For Resellers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
== How to use WHMCS Billing Control Panel ==&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/httutorials/whmcs_eu_changepw.htm Changing your password]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://hostek.com/httutorials/whmcs_eu_ordermore.htm Ordering upgrades and product addons]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://hostek.com/httutorials/whmcs_eu_profile.htm Updating your profile]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==WHMCS For Resellers==&lt;br /&gt;
*Optional... ie, not required for resellers:  If you are a hosting reseller and wish to automate your billing, WHMCS is one of the most widely used billing control panels to handle this.  We also offer plugins for MochaPanel and cPanel that handle provisioning hosting accounts and domain registrations.&lt;br /&gt;
&lt;br /&gt;
We do not include the WHMCS license, but we will insure that we get you going and integrated successfully.  You can [http://www.whmcs.com/order-now/ order WHMCS] directly.&lt;br /&gt;
&lt;br /&gt;
If you are installing WHMCS onto a Windows-based account, please notify Support via the [http://support.hostek.com/ ticketing system]. The WHMCS database will need to be setup on an alternate MySQL server to ensure compatibility.&lt;br /&gt;
&lt;br /&gt;
==WHMCS For Resellers Demo==&lt;br /&gt;
*You can test out the control panel below.&lt;br /&gt;
*Login with http://demo.whmcs.com/admin/&lt;br /&gt;
*Username: Admin -or- Sal&lt;br /&gt;
*Password: demo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Control-Panels]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=SSH&amp;diff=1903</id>
		<title>SSH</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=SSH&amp;diff=1903"/>
				<updated>2014-01-06T05:49:54Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Generating SSH Keys */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==SSH==&lt;br /&gt;
The dedicated IP and port for SSH access on Linux VPS servers will be included in the email with server details. Alternatively we have an alternate port which can be used for SSH however this will need to be configured. Please email support for the alternate port number and follow the steps below.&lt;br /&gt;
&lt;br /&gt;
==Configuring alternate SSH port for your VPS==&lt;br /&gt;
*'''NOTE''' You must be familiar with editing Linux text files from a command prompt to proceed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#Contact support for the alternate SSH port to use.&lt;br /&gt;
#:If you have requested your VPS to not be behind our perimiter firewall and you are 100% managing your own firewall, then you can use any TCP port that you wish&lt;br /&gt;
#Add the alternate TCP port to the cPanel firewall:&lt;br /&gt;
##Log into WHM of your server&lt;br /&gt;
##Scroll down and select ''ConfigServer Security&amp;amp;Firewall''&lt;br /&gt;
##Click ''Firewall Configuration''&lt;br /&gt;
##Edit the TCP_IN line, adding the alternate SSH port, being careful to have comma before and after the number&lt;br /&gt;
##*Pay close attention to the formatting of the current entries in this line.  Syntax errors will result in your VPS firewall failing to restart&lt;br /&gt;
##Click Change button at the bottom&lt;br /&gt;
#Configure SSH to use the new port:&lt;br /&gt;
##SSH into your VPS on the default port 22&lt;br /&gt;
##Edit the /etc/ssh/sshd_config file&lt;br /&gt;
##Change the line &amp;quot;Port 22&amp;quot; to &amp;quot;Port ####&amp;quot; &amp;lt;sub&amp;gt;(without quotes)&amp;lt;/sub&amp;gt; where #### is the alternate port&lt;br /&gt;
##Save your changes&lt;br /&gt;
##Run the following command to restart the ssh service:&lt;br /&gt;
##:''service sshd restart''&lt;br /&gt;
##*'''NOTE''' Do not disconnect your ssh session after restarting the service until you verify with a new session that your changes are successful.  Otherwise you will not be able to correct any syntax errors in the sshd_config file&lt;br /&gt;
##While your SSH session is still open, launch a new ssh session to your server, connecting on the new port 4805&lt;br /&gt;
##*If you get a connection failed, check the /etc/ssh/sshd_config file for syntax errors and correct.  Run the command &amp;quot;''service sshd restart''&amp;quot; &amp;lt;sub&amp;gt;(without quotes)&amp;lt;/sub&amp;gt; after making any changes to the sshd_config file.&lt;br /&gt;
&lt;br /&gt;
==Generating SSH Keys==&lt;br /&gt;
&lt;br /&gt;
To connect via SSH you'll first need to download an SSH client such as Putty http://www.putty.org/&lt;br /&gt;
&lt;br /&gt;
To generate a new key:&lt;br /&gt;
#Log into the cPanel for your site&lt;br /&gt;
#Click SSL/TLS Manager&lt;br /&gt;
#Click &amp;quot;Generate, view, upload, or delete your private keys.&amp;quot;&lt;br /&gt;
#Ensure that the &amp;quot;Key Size&amp;quot; is set to 2,048 bits&lt;br /&gt;
#Click &amp;quot;Generate&amp;quot; to generate the new SSH key and automatically install it to the server.&lt;br /&gt;
&lt;br /&gt;
==View or Download SSH Key==&lt;br /&gt;
To view or download a key:&lt;br /&gt;
#Click View/Download next to the corresponding key in the appropriate table. You will be directed to a new page.&lt;br /&gt;
#Click Download Key to download the key. You can also copy the key and save it on your computer.&lt;br /&gt;
 &lt;br /&gt;
==Convert SSH private key==&lt;br /&gt;
To convert a private key and save it onto the server:&lt;br /&gt;
#Enter the key's passphrase into the box.&lt;br /&gt;
#Click Convert. You will be directed to a new page.&lt;br /&gt;
#Click Download Key to download the converted key to your desktop.&lt;br /&gt;
&lt;br /&gt;
==Authorize and Deauthorize SSH Key==&lt;br /&gt;
'''Note: You will need to authorize a key before using it to connect to the server.'''&lt;br /&gt;
To authorize or deauthorize a key:&lt;br /&gt;
Click Manage Authorization next to the corresponding key in the appropriate table. You will be directed to a new page.&lt;br /&gt;
Click Authorize or Deauthorize.&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux-VPS]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=SSH&amp;diff=1902</id>
		<title>SSH</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=SSH&amp;diff=1902"/>
				<updated>2014-01-06T05:49:19Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Generating SSH Keys */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==SSH==&lt;br /&gt;
The dedicated IP and port for SSH access on Linux VPS servers will be included in the email with server details. Alternatively we have an alternate port which can be used for SSH however this will need to be configured. Please email support for the alternate port number and follow the steps below.&lt;br /&gt;
&lt;br /&gt;
==Configuring alternate SSH port for your VPS==&lt;br /&gt;
*'''NOTE''' You must be familiar with editing Linux text files from a command prompt to proceed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#Contact support for the alternate SSH port to use.&lt;br /&gt;
#:If you have requested your VPS to not be behind our perimiter firewall and you are 100% managing your own firewall, then you can use any TCP port that you wish&lt;br /&gt;
#Add the alternate TCP port to the cPanel firewall:&lt;br /&gt;
##Log into WHM of your server&lt;br /&gt;
##Scroll down and select ''ConfigServer Security&amp;amp;Firewall''&lt;br /&gt;
##Click ''Firewall Configuration''&lt;br /&gt;
##Edit the TCP_IN line, adding the alternate SSH port, being careful to have comma before and after the number&lt;br /&gt;
##*Pay close attention to the formatting of the current entries in this line.  Syntax errors will result in your VPS firewall failing to restart&lt;br /&gt;
##Click Change button at the bottom&lt;br /&gt;
#Configure SSH to use the new port:&lt;br /&gt;
##SSH into your VPS on the default port 22&lt;br /&gt;
##Edit the /etc/ssh/sshd_config file&lt;br /&gt;
##Change the line &amp;quot;Port 22&amp;quot; to &amp;quot;Port ####&amp;quot; &amp;lt;sub&amp;gt;(without quotes)&amp;lt;/sub&amp;gt; where #### is the alternate port&lt;br /&gt;
##Save your changes&lt;br /&gt;
##Run the following command to restart the ssh service:&lt;br /&gt;
##:''service sshd restart''&lt;br /&gt;
##*'''NOTE''' Do not disconnect your ssh session after restarting the service until you verify with a new session that your changes are successful.  Otherwise you will not be able to correct any syntax errors in the sshd_config file&lt;br /&gt;
##While your SSH session is still open, launch a new ssh session to your server, connecting on the new port 4805&lt;br /&gt;
##*If you get a connection failed, check the /etc/ssh/sshd_config file for syntax errors and correct.  Run the command &amp;quot;''service sshd restart''&amp;quot; &amp;lt;sub&amp;gt;(without quotes)&amp;lt;/sub&amp;gt; after making any changes to the sshd_config file.&lt;br /&gt;
&lt;br /&gt;
==Generating SSH Keys==&lt;br /&gt;
&lt;br /&gt;
To connect via SSH you'll first need to download an SSH client such as Putty http://www.putty.org/&lt;br /&gt;
&lt;br /&gt;
To generate a new key:&lt;br /&gt;
#Log into the cPanel for your site&lt;br /&gt;
#Click SSL/TLS Manager&lt;br /&gt;
#Click Generate, view, upload, or delete your private keys.&lt;br /&gt;
#Ensure that the &amp;quot;Key Size&amp;quot; is set to 2,048 bits&lt;br /&gt;
#Click &amp;quot;Generate&amp;quot; to generate the new SSH key and automatically install it to the server.&lt;br /&gt;
&lt;br /&gt;
==View or Download SSH Key==&lt;br /&gt;
To view or download a key:&lt;br /&gt;
#Click View/Download next to the corresponding key in the appropriate table. You will be directed to a new page.&lt;br /&gt;
#Click Download Key to download the key. You can also copy the key and save it on your computer.&lt;br /&gt;
 &lt;br /&gt;
==Convert SSH private key==&lt;br /&gt;
To convert a private key and save it onto the server:&lt;br /&gt;
#Enter the key's passphrase into the box.&lt;br /&gt;
#Click Convert. You will be directed to a new page.&lt;br /&gt;
#Click Download Key to download the converted key to your desktop.&lt;br /&gt;
&lt;br /&gt;
==Authorize and Deauthorize SSH Key==&lt;br /&gt;
'''Note: You will need to authorize a key before using it to connect to the server.'''&lt;br /&gt;
To authorize or deauthorize a key:&lt;br /&gt;
Click Manage Authorization next to the corresponding key in the appropriate table. You will be directed to a new page.&lt;br /&gt;
Click Authorize or Deauthorize.&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux-VPS]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=WCP_(Windows_based_Control_Panel)&amp;diff=1775</id>
		<title>WCP (Windows based Control Panel)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=WCP_(Windows_based_Control_Panel)&amp;diff=1775"/>
				<updated>2013-11-11T23:55:23Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Adding Additional Control Panel Logins */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==How To Login To My WCP Control Panel==&lt;br /&gt;
#To manage your domain, login to the WCP Control Panel, using the details below&lt;br /&gt;
#URL: '''https://wcp.hostek.com'''/&lt;br /&gt;
#Username: &lt;br /&gt;
#Password: ** same as your cp.hostek.com password **&lt;br /&gt;
*You can also login to the control panel through your billing control panel https://cp.hostek.com/clientarea.php&lt;br /&gt;
#Click on  ''''My Services'''' 'Click the '''small Green arrow''' on the the notepad to the right'&lt;br /&gt;
#Now click the '''Login to Control Panel''' Icon'''&lt;br /&gt;
&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:ColdFusion]]&lt;br /&gt;
[[Category:Railo]]&lt;br /&gt;
&lt;br /&gt;
==Custom URL for the WCP Control Panel==&lt;br /&gt;
The WCP can als be accessed by wcp.your_domain.com&lt;br /&gt;
&lt;br /&gt;
Setup wcp.your_domain.com as an A record for &amp;quot;184.175.108.65&amp;quot; or as a CName record for &amp;quot;wcp.ezhostingserver.com&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===Resellers and VPS - WCP White label Settings===&lt;br /&gt;
Resellers and VPS customers can setup their logo in their Reseller control panel, however those additional features will only be avaialble when using the specific domain they configured in the reseller setttings. The reseller settings will be available using ANY url, and as mentioned within these settings the reseller &amp;quot;URL&amp;quot; can be setup and other whitelabel options making WCP the ultimate Windows Control Panel&lt;br /&gt;
&lt;br /&gt;
[[Category: Windows VPS]]&lt;br /&gt;
[[Category:Resellers]]&lt;br /&gt;
&lt;br /&gt;
==Adding Additional Control Panel Logins==&lt;br /&gt;
*This will allow you to set up additional control panel logins for you or for others involved in editing or managing your account. You can limit the Permissions or options available for them to manage.&lt;br /&gt;
#Login to the WCP Control Panel, using the details below&lt;br /&gt;
#URL: '''https://wcp.hostek.com'''/&lt;br /&gt;
#Username: &lt;br /&gt;
#Password: ** same as your cp.hostek.com password **&lt;br /&gt;
#Click on the '''Control panel Logins''' tab, then click on the '''Add''' icon.&lt;br /&gt;
#Put the &amp;quot;Username, Password and if you want them to have Limited Permission.&lt;br /&gt;
#If you want them to have Limited Permission then check the '''Limited Permission''' box. This will load a dropdown where you can select what privlages they have to manage.&lt;br /&gt;
#Once you are done click the '''Save''' icon at the bottom of the screen.&lt;br /&gt;
#Once it has been added you or they can login by going to https://wcp.hostek.com/Login.aspx and using the username and password that you set for it.&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:ColdFusion]]&lt;br /&gt;
[[Category:Railo]]&lt;br /&gt;
&lt;br /&gt;
==VPS and Unlimited Plans - Add Additional Domains==&lt;br /&gt;
Use these steps to add additional domains under your VPS or Windows Unlimited account.&lt;br /&gt;
&lt;br /&gt;
#Login to your WCP control panel&lt;br /&gt;
#*Windows Unlimited: For adding a third (or more) domain select any domain from the upper right hand corner dropdown box &amp;quot;Domains&amp;quot;.&lt;br /&gt;
#*'''VPS: Select a domain already created''' on your VPS, a good bet is your server name (ie server.your-domain.com) from the upper right hand corner dropdown box &amp;quot;Domains&amp;quot;.&lt;br /&gt;
#Within the &amp;quot;Domains&amp;quot; box click the &amp;quot;Addon Domains&amp;quot; icon.&lt;br /&gt;
#Click &amp;quot;Add&amp;quot; and enter the following:&lt;br /&gt;
#*Domain Name&lt;br /&gt;
#*Username&lt;br /&gt;
#*Password&lt;br /&gt;
#*VPS: If you've ordered static IP's select one from the &amp;quot;IP Address&amp;quot; box.&lt;br /&gt;
#Click &amp;quot;Save&amp;quot;&lt;br /&gt;
#To manage the domain, you can now select it from the domains list dropdown box.&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
&lt;br /&gt;
==Site Details==&lt;br /&gt;
We recommend you review the &amp;quot;Site Settings&amp;quot; which includes many important details about your domain including:&lt;br /&gt;
&lt;br /&gt;
WCP (login and select domain) &amp;gt; Website Settings &amp;gt; '''Site Details'''&lt;br /&gt;
&lt;br /&gt;
*Testing URL&lt;br /&gt;
*Primary and Secondary DNS&lt;br /&gt;
*Site IP&lt;br /&gt;
*Web Root Path&lt;br /&gt;
*FTP Root Path&lt;br /&gt;
===IIS Version &amp;amp; ColdFusion Version (if applicable)===&lt;br /&gt;
To get your domain's IIS Version and ColdFusion Version (if applicable) log in to WCP and under the Settings section, click on the Site Details option.&lt;br /&gt;
&lt;br /&gt;
==FTP Accounts==&lt;br /&gt;
*Adding or editing FTP accounts.&lt;br /&gt;
#click on the '''FTP Accounts''' tab.&lt;br /&gt;
#To edit one click on the little '''Pencil Icon''' to the left, to add one click on the '''Add FTP User''' tab.&lt;br /&gt;
#If you are adding one you will set the Username:, Password: and folder then click the #Click on the '''Save''' Icon.&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:ColdFusion]]&lt;br /&gt;
[[Category:Railo]]&lt;br /&gt;
&lt;br /&gt;
==File Manager== &lt;br /&gt;
*Basic File Operations, file uploading and editing now supported- Zip, GZip, and Tar Archive support.&lt;br /&gt;
#Click on the '''File Manager icon''', then the '''Login icon''' on the next screen.&lt;br /&gt;
#To create files or Directory's outside the WWW root folder right click and click on the '''Create File''' or '''Create Directory''' option.&lt;br /&gt;
#Click the '''Continue Icon''' to add this.&lt;br /&gt;
#To add/edit files in the WWWroot click on the '''wwwroot file'''.&lt;br /&gt;
#once you are in you can add, edit or delete by right clicking and clicking on the options given.&lt;br /&gt;
[[Category:ColdFusion]]&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
&lt;br /&gt;
==Password Protect Folders==&lt;br /&gt;
#Under the Files section click on '''Password Protect'''.&lt;br /&gt;
#Click on '''Manage Protected Folders'''.&lt;br /&gt;
#Browse to and click on the folder that you want to set this up on and check '''Enable Protection'''. &lt;br /&gt;
#Select a user from the list or click on '''Manage Users''', then click '''Add''', and enter username and password then Save. &lt;br /&gt;
&lt;br /&gt;
==IIS Settings==&lt;br /&gt;
*Setting up error pages, default pages, advanced settings, etc.&lt;br /&gt;
===Custom Error pages===&lt;br /&gt;
#Click on '''IIS Settings''' in your WCP&lt;br /&gt;
#Click the edit button next to the error page you want to change&lt;br /&gt;
#Uncheck the '''Use System Default''' checkbox &lt;br /&gt;
#Enter the path to your custom error page &lt;br /&gt;
#Click '''Save'''&lt;br /&gt;
===Mime Types===&lt;br /&gt;
#Click on '''IIS Settings''' in your WCP&lt;br /&gt;
#Scroll to the bottom of the window and click '''Add Mime Type'''&lt;br /&gt;
#Enter the extension for the Mime Type&lt;br /&gt;
#Enter the Mime Type information&lt;br /&gt;
#Click '''Save'''&lt;br /&gt;
*An example Mime Type is below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Extension: .mp3&lt;br /&gt;
Mime Type: audio/mpeg&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
More information here: https://wiki.hostek.com/Mime_types&lt;br /&gt;
&lt;br /&gt;
===Default Docs===&lt;br /&gt;
*Select a default document and drag it to the top position to set it as top priority&lt;br /&gt;
*Click '''Add''' to add a default doc&lt;br /&gt;
*Click the red '''X''' to delete a default doc&lt;br /&gt;
*Click a default doc and change the name&lt;br /&gt;
*For example: change '''&amp;quot;index.htm&amp;quot;''' to '''&amp;quot;index.asp&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
===Advanced===&lt;br /&gt;
====Recycle Application Pool====&lt;br /&gt;
If you see a Service Unavailable message on your site, or have a general need to recycle a site's IIS Application Pool, you can do so through this section of WCP. &lt;br /&gt;
#Click the '''IIS Settings''' icon in WCP&lt;br /&gt;
#Click the '''Advanced''' tab in the '''IIS Settings''' section&lt;br /&gt;
#Click the '''Recycle''' button.&lt;br /&gt;
&lt;br /&gt;
==PHP Settings==&lt;br /&gt;
If you notice you need a different version of php or want to check what version you are using you can update it to that version if it is installed to the server or can enable custom php.ini settings to use specifically for your domain.&lt;br /&gt;
#Click the configuration for the domain or subdomain you want updated.&lt;br /&gt;
#Select the version you wish to use.&lt;br /&gt;
#Check the checkbox if you want to enable a custom php.ini file&lt;br /&gt;
#Click save to save the settings.&lt;br /&gt;
&lt;br /&gt;
[[Category:ColdFusion]]&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
&lt;br /&gt;
==DNS Editor==&lt;br /&gt;
'''READ FIRST''' When a new domain is added to WCP all DNS records are also created (in most cases). Clicking on the DNS Editor will open a window with these records, for editing, adding and deleting. Most times nothing needs to be done other than pointing your domain to the Primary and Secondary DNS Servers listed under [https://wiki.hostek.com/WCP_(Windows_based_Control_Panel)#Site_Details WCP Site Details].&lt;br /&gt;
&lt;br /&gt;
===Create a new DNS record===&lt;br /&gt;
#Click '''Add DNS''' Record button&lt;br /&gt;
#Enter Name for record (If DNS record name is your domain name please leave this Name - text box blank as the control panel will automatically add your domain name)&lt;br /&gt;
#Choose the Record type (A, CNAME, MX, NS, TXT, SPF, SRV)&lt;br /&gt;
#Enter Data Type&lt;br /&gt;
#Generally leave the TTL (Time To Live) as the default 86400&lt;br /&gt;
#Click on the '''Save''' Icon.&lt;br /&gt;
&lt;br /&gt;
===Update DNS records===&lt;br /&gt;
#To update an existing DNS record click the '''Pencil''' icon next to the record you would like to update.&lt;br /&gt;
#You will then be able to change the Name of the record, the Type of record, Data of the record, and Time to Live.&lt;br /&gt;
#Once updated Click on the '''Save''' Icon.&lt;br /&gt;
&lt;br /&gt;
===SVR Record Fields===&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Name: _service._protocol&lt;br /&gt;
Type: SRV&lt;br /&gt;
Data: priority weight port address&lt;br /&gt;
TTL: 86400&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Name: _sip._udp&lt;br /&gt;
Type: SRV&lt;br /&gt;
Data: 10 5 4030 sip.mydomain.com&lt;br /&gt;
TTL: 86400&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===SPF Records===&lt;br /&gt;
An SPF Record (simply an entry into the DNS records) is used by mail servers to know if mail coming from an address at your domain is really allowed to be sent from the sending mail server.&lt;br /&gt;
&lt;br /&gt;
If you will be using our servers send email related to your domain, you would generally use an SPF record like the following:&amp;lt;pre&amp;gt;&amp;quot;v=spf1 a mx include:spf.hostek.com -all&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For our Resellers that don't want to use hostek.com, use an SPF Record like:&amp;lt;pre&amp;gt;&amp;quot;v=spf1 a mx include:spf.ezhostingserver.com -all&amp;quot;&amp;lt;/pre&amp;gt;&lt;br /&gt;
'''Steps to add an SPF Record to your domain:'''&lt;br /&gt;
Assuming that your DNS is managed with us:&lt;br /&gt;
#Log in to your hosting control panel at wcp.hostek.com&lt;br /&gt;
#Open the DNS Editor (DNS Manager) section&lt;br /&gt;
#Click on Add Record. &lt;br /&gt;
#Leave the Name field blank. &lt;br /&gt;
#For the Type, choose TXT&lt;br /&gt;
#For the Data enter the SPF Record detail as you need, using the sample provided above.&lt;br /&gt;
&lt;br /&gt;
'''Basic information related to some SPF Record options:'''&lt;br /&gt;
&lt;br /&gt;
The '''&amp;quot;-all&amp;quot;''' may be adjusted on a per customer basis to any of the following depending on their needs:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''-all''' = mail not sent from an address listed in the SPF record should be completely rejected (Hard Fail). Mail that IS sent from an address in the SPF record may be given a lower spam score by some servers.&lt;br /&gt;
&lt;br /&gt;
'''~all''' = mail not sent from an address listed in the SPF record should be given a higher spam score(Soft Fail). Mail that IS sent from an address in the SPF record may be given a lower spam score by some servers.&lt;br /&gt;
&lt;br /&gt;
'''?all''' = mail not sent from an address listed in the SPF record should be treated normally as if the domain did not have an spf record (Neutral). Mail that IS sent from an address in the SPF record may be given a lower spam score by some servers.&lt;br /&gt;
&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:ColdFusion]]&lt;br /&gt;
[[Category:Railo]]&lt;br /&gt;
&lt;br /&gt;
==Sub Domains==&lt;br /&gt;
*A sub-domain is like an extension of your domain name. For example, if your domain name were myfamily.com, a sub-domain would be in the following form: dad.myfamily.com or mom.myfamily.com etc.&lt;br /&gt;
*You can have a sub-domain pointed to any folder within your web site. If a visitor goes directly to that sub-domain he will be taken to that folder, not to your site's main page.&lt;br /&gt;
#Click on the '''Sub Domains icon'''&lt;br /&gt;
#Click &amp;quot;'''Add'''&amp;quot; sub Domain button &lt;br /&gt;
#Enter sub domain name in Name text box. This will automatically populate the Folder text box to a folder with the same name as the subdomain.&lt;br /&gt;
#If you wish this Subdomain to point to a different folder you can click on the folder icon and choose the directory you would like your Sub Domain to point to.&lt;br /&gt;
#Click on the &amp;quot;'''Save'''&amp;quot; Icon.&lt;br /&gt;
#This will create the sub domain record within your domains DNS zone, &lt;br /&gt;
*If the domains name servers are not pointed to us you will need to manually create this record where your domains DNS is hosted.&lt;br /&gt;
[[Category:Control-Panels]]&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:ColdFusion]]&lt;br /&gt;
[[Category:Railo]]&lt;br /&gt;
&lt;br /&gt;
==Domain Alias==&lt;br /&gt;
*This will allow you to point 2 domains to the same website. How to create a Domain&lt;br /&gt;
#To create a domain alias you will click on the ''Domain Aliases icon''&lt;br /&gt;
#Click '''Add Domain Alias''' button&lt;br /&gt;
#Enter your Alias Name&lt;br /&gt;
#Click on the &amp;quot;'''Save'''&amp;quot; Icon.&lt;br /&gt;
*You will need to be sure that your Domain Alias has been registered and has the name servers pointed to the name servers found beneath the Site Details icon.&lt;br /&gt;
&lt;br /&gt;
==Applications==&lt;br /&gt;
# Some helpful video tutorials showing how to install a select few applications easily within the WCP Control Panel are below:&lt;br /&gt;
&lt;br /&gt;
*Joomla - [http://hostek.com/tutorials/joomla_Installation_tutorial.html Installing Joomla Application]&lt;br /&gt;
&lt;br /&gt;
*Wordpress - [http://hostek.com/tutorials/wordpress_Installation_tutorial.html Installing Wordpress Application]&lt;br /&gt;
&lt;br /&gt;
*Mura - [http://hostek.com/tutorials/mura_Installation_tutorial.html Installing Mura Application]&lt;br /&gt;
&lt;br /&gt;
*Magento - [http://hostek.com/tutorials/magento_Installation_tutorial.html Installing Magento Application]&lt;br /&gt;
&lt;br /&gt;
*Oscommerce - [http://hostek.com/tutorials/oscommerce_Installation_tutorial.html Installing OsCommerce Application]&lt;br /&gt;
&lt;br /&gt;
==Email==&lt;br /&gt;
*Below is information on how to manage your email account within the WCP.&lt;br /&gt;
*'''FOR VPS''' You will also have &amp;quot;Admin&amp;quot; access to SmarterMail. Access webmail (click the webmail link in WCP) and login with user &amp;quot;admin&amp;quot; and the primary VPS password.&lt;br /&gt;
&lt;br /&gt;
==Email Users==&lt;br /&gt;
*Allows you to create Email users as well as log directly into users Webmail account&lt;br /&gt;
#Once you are logged into your WCP account, under the Email Section&lt;br /&gt;
#Click '''Users''' icon&lt;br /&gt;
#Click '''Add Email User''' button&lt;br /&gt;
#Enter email user name (Example: if you need the email address &amp;quot;admin@domain.com&amp;quot; enter the user &amp;quot;admin&amp;quot;)&lt;br /&gt;
#Enter password for Email user (**See note below regarding password requirements)&lt;br /&gt;
#Enter Display name (Usually set to the name of the person using the specific email account)&lt;br /&gt;
#Choose if you would like this user to have administrator rights&lt;br /&gt;
#Choose mail box size limit for this specific user&lt;br /&gt;
#Click on the '''Save'''&lt;br /&gt;
#'''NOTE Password requirements''' &lt;br /&gt;
*Minimum Length 6 Characters&lt;br /&gt;
*Must include Uppercase&lt;br /&gt;
*Must include Lowercase&lt;br /&gt;
*Must include Number&lt;br /&gt;
*Must include Special character&lt;br /&gt;
*Password cannot match username&lt;br /&gt;
&lt;br /&gt;
==Edit existing Email user==&lt;br /&gt;
#Once you are logged into your WCP account, under the Email Section&lt;br /&gt;
#Click '''Users''' icon&lt;br /&gt;
#Click '''pencil icon''' next to user to update&lt;br /&gt;
#Update information&lt;br /&gt;
#Click '''Save'''&lt;br /&gt;
&lt;br /&gt;
==Web mail==&lt;br /&gt;
#Once you are logged into your WCP account, under the Email Section&lt;br /&gt;
#Click '''Login button''' next to user you would like access the mail for&lt;br /&gt;
*Web Mail Provides links to access the Webmail program as well as to access mail before domain propagation to our mail server&lt;br /&gt;
#Click '''Web Mail icon'''&lt;br /&gt;
#If domain is propagated and pointed to our mail server you can click the '''webmail''' link to access the SmarterMail webmail log in screen.&lt;br /&gt;
#If you domain has not yet propagated to our mail server click the &amp;quot;Pr-Propagation Web Mail&amp;quot; link to access the SmarterMail webmail log in screen.&lt;br /&gt;
&lt;br /&gt;
==Mail Forwarding==&lt;br /&gt;
#Once you are logged into your WCP account, under the Email Section&lt;br /&gt;
*Allows you to set up an email alias.&lt;br /&gt;
#Click on the '''Forwarding button'''&lt;br /&gt;
#Enter Alias name&lt;br /&gt;
#Enter address for email to this Alias to be forwarded to&lt;br /&gt;
#Click on the '''Save Icon'''&lt;br /&gt;
&lt;br /&gt;
==MySQL database==&lt;br /&gt;
*MySQL Allow you to create a MySQL database under your domain&lt;br /&gt;
#Click on '''MySQL icon'''&lt;br /&gt;
#To add new database click '''Add MySQL Database'''&lt;br /&gt;
#Enter Database Name&lt;br /&gt;
#Enter Username&lt;br /&gt;
#Enter Password&lt;br /&gt;
#(If you need a coldfusion DSN place check in check box and provide Coldfusion DSN name)&lt;br /&gt;
#Click '''Save'''&lt;br /&gt;
&lt;br /&gt;
*To create new user for existing database&lt;br /&gt;
#Click '''MySQL icon'''&lt;br /&gt;
#Click '''Add new user button'''&lt;br /&gt;
#Enter Username&lt;br /&gt;
#Enter Password&lt;br /&gt;
#Place check mark in check box for each database you would like this user to have access to.&lt;br /&gt;
#To update the password on existing database user.&lt;br /&gt;
#Click '''MySQL icon'''&lt;br /&gt;
#Click '''pencil icon next to Username'''&lt;br /&gt;
#enter new password&lt;br /&gt;
#Click on the '''Save Icon'''.&lt;br /&gt;
&lt;br /&gt;
*To update the password on existing database user.&lt;br /&gt;
#Click '''MySQL icon'''&lt;br /&gt;
#Click pencil '''icon next to Username'''&lt;br /&gt;
#Enter new password&lt;br /&gt;
#Click on the '''Save''' Icon.&lt;br /&gt;
&lt;br /&gt;
==PhpMyAdmin==&lt;br /&gt;
*Allows you to log directly into your MySQL database to manage.&lt;br /&gt;
#Click on '''PhpMyAdmin link'''&lt;br /&gt;
#If you are not logged directly into your MySQL database simply enter the server your database is located on (Can be found by clicking the MySQL icon) and enter your Username and Password.&lt;br /&gt;
#Once logged in your Databases will be displayed on the Left, click on '''database name''' to manage that database.&lt;br /&gt;
*Here is a Video that will show how to create a MySQL database and how to Backup / Restore the database through PhpMyAdmin: [http://hostek.com/tutorials/managing_mysql.html PhpMyAdmin Backup and Restore Video]&lt;br /&gt;
&lt;br /&gt;
==MSSQL==&lt;br /&gt;
===To create MSSQL databases and users===&lt;br /&gt;
#Click '''MSSQL icon'''&lt;br /&gt;
#To add a new database click '''Add MSSQL''' database&lt;br /&gt;
#Enter Database Name&lt;br /&gt;
#Choose database size&lt;br /&gt;
#Enter or Choose existing Username&lt;br /&gt;
#Enter Password&lt;br /&gt;
#Choose '''Default Collation''' (Usually left as default)&lt;br /&gt;
#Choose '''Recovery Model''' (Usually left as Simple as we make daily full backups of all #databases which we keep for 7 days)&lt;br /&gt;
#Place a Check mark in the box for Coldfusion DataSource if ColdFusion DSN is needed.&lt;br /&gt;
#Enter ColdFusion DSN name.&lt;br /&gt;
#Click on the '''Save''' Icon.&lt;br /&gt;
&lt;br /&gt;
===To edit an existing MSSQL database===&lt;br /&gt;
#Click '''MSSQL icon'''&lt;br /&gt;
#Click '''Pencil icon''' next to database name to edit&lt;br /&gt;
#Edit field necessary&lt;br /&gt;
#Click on the '''Save''' Icon.&lt;br /&gt;
&lt;br /&gt;
===Changing the MSSQL Transaction Log (Recovery Model) Settings===&lt;br /&gt;
#Click '''MSSQL icon'''&lt;br /&gt;
#Click '''Pencil icon''' next to database name to edit&lt;br /&gt;
#Click the dropdown menu next to '''Recovery Model''' and select either '''Full''' or '''Simple'''&lt;br /&gt;
#Click on the '''Save''' Icon.&lt;br /&gt;
&lt;br /&gt;
===To edit password for existing MSSQL user===&lt;br /&gt;
#Click '''MSSQL icon'''&lt;br /&gt;
#Click '''Pencil next''' to user to edit&lt;br /&gt;
#Update password&lt;br /&gt;
#Click on the '''Save''' Icon.&lt;br /&gt;
&lt;br /&gt;
===To add new MSSQL user===&lt;br /&gt;
#Click '''MSSQL icon'''&lt;br /&gt;
#Click '''Add MSSQL''' User button&lt;br /&gt;
#Enter username&lt;br /&gt;
#Enter password&lt;br /&gt;
#Place checkmark next to each database this users needs access to&lt;br /&gt;
#Click on the '''Save''' Icon.&lt;br /&gt;
&lt;br /&gt;
===To make an MS SQL user the DB Owner===&lt;br /&gt;
#Click '''MSSQL icon'''&lt;br /&gt;
#Click '''Pencil icon''' next to database name to edit&lt;br /&gt;
#Select the owner you wish to be the DB Owner&lt;br /&gt;
#Click on the '''Save''' Icon.&lt;br /&gt;
&lt;br /&gt;
==MSSQL Tools (Shared Hosting)==&lt;br /&gt;
*Allows you to log directly into MyLittleAdmin to manage your MSSQL database or MyLittleBackup to backup or restore your MSSQL database.&lt;br /&gt;
#Click '''MSSQL Tools''' icon&lt;br /&gt;
#Select database to Manage/Backup/Restore&lt;br /&gt;
#Select User with access to database needed&lt;br /&gt;
#Choose myLittleAdmin button to manage your MSSQL database&lt;br /&gt;
#Choose myLittleBackup button to backup/restore your database&lt;br /&gt;
&lt;br /&gt;
==DataSources(DSN's)==&lt;br /&gt;
*Allows to create a DSN for an existing database for your domain.&lt;br /&gt;
#To create a MySQL or MSSQL DataSource&lt;br /&gt;
#Click '''DataSources''' (DSN's) icon&lt;br /&gt;
#Choose MySQL or MSSQL from drop down depending on the database this is connecting to&lt;br /&gt;
#Click '''Add DSN'''&lt;br /&gt;
#Choose DSN type Access/MySQL/MSSQL&lt;br /&gt;
#Enter DSN name&lt;br /&gt;
#Enter Database name DSN will be connecting to&lt;br /&gt;
#Enter Server (Can by found by viewing database DSN is for)&lt;br /&gt;
#Enter Username for database DSN is connecting to&lt;br /&gt;
#Enter Password for database DSN is connecting to&lt;br /&gt;
#Choose if it is a ColdFusion DSN&lt;br /&gt;
#Choose if you need Unicode Support&lt;br /&gt;
#Click on the '''Save''' Icon.&lt;br /&gt;
&lt;br /&gt;
*To create an Access DataSource&lt;br /&gt;
#Click '''DataSources''' (DSN's) icon&lt;br /&gt;
#Choose '''Access''' from drop down menu&lt;br /&gt;
#Enter DSN Name&lt;br /&gt;
#Click on Folder icon to choose correct directory Access Database is located in&lt;br /&gt;
#Enter Username (If one is set for your Access Database, if not this can be left blank)&lt;br /&gt;
#Enter Password (If one is protecting your Database, if not this can be left blank)&lt;br /&gt;
#Choose if it needs to be a ColdFusion DSN&lt;br /&gt;
#Click on the '''Save''' Icon.&lt;br /&gt;
&lt;br /&gt;
*To edit existing DSN&lt;br /&gt;
#Click '''DataSources''' (DSN's) icon&lt;br /&gt;
#Click pencil next to DSN to edit&lt;br /&gt;
#Update information&lt;br /&gt;
#Click on the '''Save''' Icon.&lt;br /&gt;
&lt;br /&gt;
==Security and SSL==&lt;br /&gt;
Installing a new certificate, or re-keying an existing certificate.&lt;br /&gt;
&lt;br /&gt;
===Dedicated SSL===&lt;br /&gt;
'''VPS Hosting''' Request a static IP for sites added to your server which require SSL, we will provision the IP on the server and assign it in WCP for use with installing a Dedicated SSL.&lt;br /&gt;
&lt;br /&gt;
'''Shared Hosting''' If ordering a new certificate from Hostek.com you will be assigned a static IP, if importing from another provider you will need to request a static IP be assigned before the certificate can be activated.&lt;br /&gt;
&lt;br /&gt;
#Login to WCP, (select the domain, in some cases), Security and SSL, '''Dedicated SSL (click)'''&lt;br /&gt;
#Click '''Generate CSR (Certificate Signing Request)'''&lt;br /&gt;
#Fill in the requested information.&lt;br /&gt;
#Click Create&lt;br /&gt;
#Copy the '''Certificate Signing Request (CSR)''', which should be used when placing a new SSL order or re-keying an existing certificate.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Shared SSL(shared hosting)===&lt;br /&gt;
#Login to WCP, (select the domain, in some cases), Security and SSL, '''Shared SSL (click)'''&lt;br /&gt;
#Click '''Enable'''&lt;br /&gt;
#The URL for your sites shared SSL will be provided. &lt;br /&gt;
&lt;br /&gt;
==Usage==&lt;br /&gt;
To view your account's quotas and how much resources you have available:&lt;br /&gt;
#Log in to WCP&lt;br /&gt;
#Click the '''Usage''' icon&lt;br /&gt;
&lt;br /&gt;
Here you can see the limits and amount used for the following resources: '''Site Disk Space, Site Bandwidth, Mail Disk Space, MySQL Disk Space,''' and '''MS SQL Disk Space''' (if applicable)&lt;br /&gt;
&lt;br /&gt;
[[Category:Control-Panels]]&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:ColdFusion]]&lt;br /&gt;
[[Category:Railo]]&lt;br /&gt;
[[Category:ColdFusion-VPS]]&lt;br /&gt;
[[Category:Railo-VPS]]&lt;br /&gt;
[[Category:Windows-VPS]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=IPhone&amp;diff=1766</id>
		<title>IPhone</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=IPhone&amp;diff=1766"/>
				<updated>2013-11-06T04:35:24Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* iphone POP3 setup */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
[[Category:iPhone-/-iPod-/-iPad-Email-Setup]]&lt;br /&gt;
&lt;br /&gt;
=iphone Email Setup=&lt;br /&gt;
&lt;br /&gt;
Found in this article are the steps needed for the '''iPhone''', the '''iPod''', and the'''iPad''' mail setup for '''hostek.com''' MailServers.&lt;br /&gt;
&lt;br /&gt;
*NOTE: In this tutorial, we are using the example domains within the images. Be sure to replace your domain and email information within the proper fields.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Tap on &amp;quot;'''Settings'''&amp;quot; icon (Fig 1).&lt;br /&gt;
[[File:home.PNG|200px|thumb|left|Fig 1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Tap on the menu item of Mail, Contacts, Calendar. (Fig 2)&lt;br /&gt;
[[File:Settings.PNG|200px|thumb|left|Fig 2]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Tap on &amp;quot;'''Add Account'''&amp;quot; (Fig 3)&lt;br /&gt;
[[File:mail_iOS7_02.png|200px|thumb|left|Fig 3]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*You will see a list of email accounts types, tap on &amp;quot;'''Other'''&amp;quot; at the bottom of the list. (Fig 4)&lt;br /&gt;
[[File:mail_iOS7_03.jpeg|200px|thumb|left|Fig 4]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*If you have an existing account, you will click on Add New Account, again. If you do not have an existing email account, the New Account Screen should appear. (Fig 5)&lt;br /&gt;
[[File:AddAccount.PNG|200px|thumb|left|Fig 5]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Complete the fields as follows: (Fig 6) &lt;br /&gt;
** Name: The name you want people to see when you send them email messages. Example; John or Joan Smith &lt;br /&gt;
** Address: Your full email address. Example; user@your_domain.com &lt;br /&gt;
** Password: Your email account password. (Case-sensitive)&lt;br /&gt;
** Description: How you want the account to show on the list of email accounts. Example; hostek.com account&lt;br /&gt;
&lt;br /&gt;
*Tap &amp;quot;'''Next'''&amp;quot; in the upper right corner to advance to the detailed account information screen.&lt;br /&gt;
&lt;br /&gt;
[[File:mail_iOS7_04.png|200px|thumb|left|Fig 6]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''If setting up IMAP please click the following link [https://wiki.hostek.com/IPhone#iphone_IMAP_Setup  IMAP Setup]'''&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
With IMAP setup there is no need to download the email when viewing email from multiple computers/devices, this is easier to identify unread emails.&lt;br /&gt;
&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
'''If setting up POP3 please click the following link [https://wiki.hostek.com/IPhone#iphone_POP3_setup  POP3 Setup]'''&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
With POP3 the email is downloaded from the server to each computer/device.&lt;br /&gt;
&lt;br /&gt;
=iphone IMAP Setup=&lt;br /&gt;
&lt;br /&gt;
*Ensure '''IMAP''' is selected at the top left. (Fig 1-1)&lt;br /&gt;
[[File:IMAP.png|200px|thumb|left|Fig 1-1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Scroll down and Under Incoming Mail Server, enter the following:&lt;br /&gt;
**Host Name: Enter the mail server's name (ex. mail1.hostek.com)&lt;br /&gt;
***For '''Windows Hosting''' customers, open WCP, then click on the Webmail icon. The &amp;quot;Pre-propagation Webmail URL&amp;quot; contains the mail server hostname. For example, &amp;quot;https://mail10.hostek.com/Login.aspx&amp;quot; should only be entered as &amp;quot;mail10.hostek.com&amp;quot;. &lt;br /&gt;
***For '''Linux Hosting''' customers, open cPanel, then click on Email Accounts. Click the More dropdown menu next to email user, then Configure Email Client. &lt;br /&gt;
**Username: Enter the full email address.&lt;br /&gt;
**Password: Enter your email account password (CaSe Sensitive)&lt;br /&gt;
[[File:Incoming.png|200px|thumb|left|Fig 1-1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Continue scrolling down and under Outgoing Mail Server, complete the following:&lt;br /&gt;
**Host Name: Enter the mail server's name (ex. mail1.hostek.com)&lt;br /&gt;
***For '''Windows Hosting''' customers, open WCP, then click on the Webmail icon. The &amp;quot;Pre-propagation Webmail URL&amp;quot; contains the mail server hostname. For example, &amp;quot;https://mail10.hostek.com/Login.aspx&amp;quot; should only be entered as &amp;quot;mail10.hostek.com&amp;quot;. &lt;br /&gt;
***For '''Linux Hosting''' customers, open cPanel, then click on Email Accounts. Click the More dropdown menu next to email user, then Configure Email Client. &lt;br /&gt;
**Username: Enter the full email address.&lt;br /&gt;
**Password: Enter your email account password (CaSe Sensitive)&lt;br /&gt;
*Tap '''Next''' in the upper right corner, the phone will verify your information.&lt;br /&gt;
[[File:outgoing.png|200px|thumb|left|Fig 1-1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*After verification you will be brought to the screen in (Fig 1-2), tap '''Save''' in the upper right corner to complete email setup for IMAP. &lt;br /&gt;
[[File:Done.jpg|200px|thumb|left|Fig 1-1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=iphone POP3 setup=&lt;br /&gt;
*Ensure '''POP3''' is selected at the top left. (Fig 2-1)&lt;br /&gt;
[[File:pop3.png|200px|thumb|left|Fig 1-1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Scroll down and Under Incoming Mail Server, enter the following:&lt;br /&gt;
**Host Name: Enter the mail server's name (ex. mail1.hostek.com)&lt;br /&gt;
***For '''Windows Hosting''' customers, open WCP, then click on the Webmail icon. The &amp;quot;Pre-propagation Webmail URL&amp;quot; contains the mail server hostname. For example, &amp;quot;https://mail10.hostek.com/Login.aspx&amp;quot; should only be entered as &amp;quot;mail10.hostek.com&amp;quot;. &lt;br /&gt;
***For '''Linux Hosting''' customers, open cPanel, then click on Email Accounts. Click the More dropdown menu next to email user, then Configure Email Client. &lt;br /&gt;
**Username: Enter the full email address.&lt;br /&gt;
**Password: Enter your email account password (CaSe Sensitive)&lt;br /&gt;
[[File:Incoming.png|200px|thumb|left|Fig 1-1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Continue scrolling down and under Outgoing Mail Server, complete the following:&lt;br /&gt;
**Host Name: Enter the mail server's name (ex. mail1.hostek.com)&lt;br /&gt;
***For '''Windows Hosting''' customers, open WCP, then click on the Webmail icon. The &amp;quot;Pre-propagation Webmail URL&amp;quot; contains the mail server hostname. For example, &amp;quot;https://mail10.hostek.com/Login.aspx&amp;quot; should only be entered as &amp;quot;mail10.hostek.com&amp;quot;. &lt;br /&gt;
***For '''Linux Hosting''' customers, open cPanel, then click on Email Accounts. Click the More dropdown menu next to email user, then Configure Email Client. &lt;br /&gt;
**Username: Enter the full email address.&lt;br /&gt;
**Password: Enter your email account password (CaSe Sensitive)&lt;br /&gt;
[[File:outgoing.png|200px|thumb|left|Fig 1-1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
**To complete setup tap '''Next''' in the upper right corner, the phone will verify your information and setup is complete.&lt;br /&gt;
&lt;br /&gt;
= iPhone / iPod App for Control Panel =&lt;br /&gt;
&lt;br /&gt;
We have an iPhone App for the WCP (Windows Control Panel).  You can review and download the app at http://itunes.apple.com/us/app/hostek/id497702422?ls=1&amp;amp;mt=8&lt;br /&gt;
[[Category: Control Panels]]&lt;br /&gt;
&lt;br /&gt;
= iPhone / iPod App for Control Panel for Resellers =&lt;br /&gt;
&lt;br /&gt;
We have created a white label version of our iPhone App for the WCP for our Resellers.  The white label app is called MochaPanel and can be branded by a reseller to have the reseller logo.  The MochaPanel version for Resellers and Reseller customers can be found at http://itunes.apple.com/us/app/mochapanel/id503347627?ls=1&amp;amp;mt=8&lt;br /&gt;
&lt;br /&gt;
[[category:Control Panels]]&lt;br /&gt;
[[category:Resellers]]&lt;br /&gt;
&lt;br /&gt;
= iPhone Calendar sync with SmarterMail =&lt;br /&gt;
NOTE: hostek.com is used in this example, so you will need to replace hostek.com with your domain.&lt;br /&gt;
&lt;br /&gt;
On your iPhone do the following:&lt;br /&gt;
# Go to Settings&lt;br /&gt;
# Go to Mail, Contact, Calendars&lt;br /&gt;
# Go to Add Account...&lt;br /&gt;
# Select Other&lt;br /&gt;
# Select Add CalDAV Account&lt;br /&gt;
# Server: mail.hostek.com/webdav (NOTE: The /webdav part will disappear after you tap the User Name field)&lt;br /&gt;
# User Name: enter your full email address (see screen shot for example)&lt;br /&gt;
# Password: enter your password for this email address&lt;br /&gt;
# Description: Leave or change as desired&lt;br /&gt;
# Select Next (NOTE: You will get a message about the certificate not being verified. Just accept the certificate).&lt;br /&gt;
# That's it. You should get a message it verified the account.&lt;br /&gt;
[[File:Iphone-calendar-sync.jpg]]&lt;br /&gt;
[[Category: Configuring-Email-Clients]]&lt;br /&gt;
[[category:CalDAV]]&lt;br /&gt;
[[Category: iPhone]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=IPhone&amp;diff=1765</id>
		<title>IPhone</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=IPhone&amp;diff=1765"/>
				<updated>2013-11-06T04:34:55Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* iphone IMAP Setup */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
[[Category:iPhone-/-iPod-/-iPad-Email-Setup]]&lt;br /&gt;
&lt;br /&gt;
=iphone Email Setup=&lt;br /&gt;
&lt;br /&gt;
Found in this article are the steps needed for the '''iPhone''', the '''iPod''', and the'''iPad''' mail setup for '''hostek.com''' MailServers.&lt;br /&gt;
&lt;br /&gt;
*NOTE: In this tutorial, we are using the example domains within the images. Be sure to replace your domain and email information within the proper fields.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Tap on &amp;quot;'''Settings'''&amp;quot; icon (Fig 1).&lt;br /&gt;
[[File:home.PNG|200px|thumb|left|Fig 1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Tap on the menu item of Mail, Contacts, Calendar. (Fig 2)&lt;br /&gt;
[[File:Settings.PNG|200px|thumb|left|Fig 2]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Tap on &amp;quot;'''Add Account'''&amp;quot; (Fig 3)&lt;br /&gt;
[[File:mail_iOS7_02.png|200px|thumb|left|Fig 3]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*You will see a list of email accounts types, tap on &amp;quot;'''Other'''&amp;quot; at the bottom of the list. (Fig 4)&lt;br /&gt;
[[File:mail_iOS7_03.jpeg|200px|thumb|left|Fig 4]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*If you have an existing account, you will click on Add New Account, again. If you do not have an existing email account, the New Account Screen should appear. (Fig 5)&lt;br /&gt;
[[File:AddAccount.PNG|200px|thumb|left|Fig 5]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Complete the fields as follows: (Fig 6) &lt;br /&gt;
** Name: The name you want people to see when you send them email messages. Example; John or Joan Smith &lt;br /&gt;
** Address: Your full email address. Example; user@your_domain.com &lt;br /&gt;
** Password: Your email account password. (Case-sensitive)&lt;br /&gt;
** Description: How you want the account to show on the list of email accounts. Example; hostek.com account&lt;br /&gt;
&lt;br /&gt;
*Tap &amp;quot;'''Next'''&amp;quot; in the upper right corner to advance to the detailed account information screen.&lt;br /&gt;
&lt;br /&gt;
[[File:mail_iOS7_04.png|200px|thumb|left|Fig 6]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''If setting up IMAP please click the following link [https://wiki.hostek.com/IPhone#iphone_IMAP_Setup  IMAP Setup]'''&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
With IMAP setup there is no need to download the email when viewing email from multiple computers/devices, this is easier to identify unread emails.&lt;br /&gt;
&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
'''If setting up POP3 please click the following link [https://wiki.hostek.com/IPhone#iphone_POP3_setup  POP3 Setup]'''&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
With POP3 the email is downloaded from the server to each computer/device.&lt;br /&gt;
&lt;br /&gt;
=iphone IMAP Setup=&lt;br /&gt;
&lt;br /&gt;
*Ensure '''IMAP''' is selected at the top left. (Fig 1-1)&lt;br /&gt;
[[File:IMAP.png|200px|thumb|left|Fig 1-1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Scroll down and Under Incoming Mail Server, enter the following:&lt;br /&gt;
**Host Name: Enter the mail server's name (ex. mail1.hostek.com)&lt;br /&gt;
***For '''Windows Hosting''' customers, open WCP, then click on the Webmail icon. The &amp;quot;Pre-propagation Webmail URL&amp;quot; contains the mail server hostname. For example, &amp;quot;https://mail10.hostek.com/Login.aspx&amp;quot; should only be entered as &amp;quot;mail10.hostek.com&amp;quot;. &lt;br /&gt;
***For '''Linux Hosting''' customers, open cPanel, then click on Email Accounts. Click the More dropdown menu next to email user, then Configure Email Client. &lt;br /&gt;
**Username: Enter the full email address.&lt;br /&gt;
**Password: Enter your email account password (CaSe Sensitive)&lt;br /&gt;
[[File:Incoming.png|200px|thumb|left|Fig 1-1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Continue scrolling down and under Outgoing Mail Server, complete the following:&lt;br /&gt;
**Host Name: Enter the mail server's name (ex. mail1.hostek.com)&lt;br /&gt;
***For '''Windows Hosting''' customers, open WCP, then click on the Webmail icon. The &amp;quot;Pre-propagation Webmail URL&amp;quot; contains the mail server hostname. For example, &amp;quot;https://mail10.hostek.com/Login.aspx&amp;quot; should only be entered as &amp;quot;mail10.hostek.com&amp;quot;. &lt;br /&gt;
***For '''Linux Hosting''' customers, open cPanel, then click on Email Accounts. Click the More dropdown menu next to email user, then Configure Email Client. &lt;br /&gt;
**Username: Enter the full email address.&lt;br /&gt;
**Password: Enter your email account password (CaSe Sensitive)&lt;br /&gt;
*Tap '''Next''' in the upper right corner, the phone will verify your information.&lt;br /&gt;
[[File:outgoing.png|200px|thumb|left|Fig 1-1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*After verification you will be brought to the screen in (Fig 1-2), tap '''Save''' in the upper right corner to complete email setup for IMAP. &lt;br /&gt;
[[File:Done.jpg|200px|thumb|left|Fig 1-1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=iphone POP3 setup=&lt;br /&gt;
*Ensure '''POP3''' is selected at the top left. (Fig 2-1)&lt;br /&gt;
[[File:pop3.png|200px|thumb|left|Fig 1-1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Scroll down and Under Incoming Mail Server, enter the following:&lt;br /&gt;
**Host Name: Host Name: mail15.hostek.com (Your Host name can be found  for '''Windows hosting''' customers by clicking on the Webmail icon in the control panel and for '''Linux hosting''' customers under Email Accounts &amp;gt;  More dropdown next to email user &amp;gt; Configure Email Client ).&lt;br /&gt;
**Username: Enter the full email address.&lt;br /&gt;
**Password: Enter your email account password (CaSe Sensitive)&lt;br /&gt;
[[File:Incoming.png|200px|thumb|left|Fig 1-1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Continue scrolling down and under Outgoing Mail Server, complete the following:&lt;br /&gt;
**Host Name: Host Name: mail15.hostek.com (Your Host name can be found  for '''Windows hosting''' customers by clicking on the Webmail icon in the control panel and for '''Linux hosting''' customers under Email Accounts &amp;gt;  More dropdown next to email user &amp;gt; Configure Email Client ).&lt;br /&gt;
**Username: Enter the full email address.&lt;br /&gt;
**Password: Enter your email account password (CaSe Sensitive)&lt;br /&gt;
[[File:outgoing.png|200px|thumb|left|Fig 1-1]]&amp;lt;br clear=all&amp;gt;&lt;br /&gt;
&lt;br /&gt;
**To complete setup tap '''Next''' in the upper right corner, the phone will verify your information and setup is complete.&lt;br /&gt;
&lt;br /&gt;
= iPhone / iPod App for Control Panel =&lt;br /&gt;
&lt;br /&gt;
We have an iPhone App for the WCP (Windows Control Panel).  You can review and download the app at http://itunes.apple.com/us/app/hostek/id497702422?ls=1&amp;amp;mt=8&lt;br /&gt;
[[Category: Control Panels]]&lt;br /&gt;
&lt;br /&gt;
= iPhone / iPod App for Control Panel for Resellers =&lt;br /&gt;
&lt;br /&gt;
We have created a white label version of our iPhone App for the WCP for our Resellers.  The white label app is called MochaPanel and can be branded by a reseller to have the reseller logo.  The MochaPanel version for Resellers and Reseller customers can be found at http://itunes.apple.com/us/app/mochapanel/id503347627?ls=1&amp;amp;mt=8&lt;br /&gt;
&lt;br /&gt;
[[category:Control Panels]]&lt;br /&gt;
[[category:Resellers]]&lt;br /&gt;
&lt;br /&gt;
= iPhone Calendar sync with SmarterMail =&lt;br /&gt;
NOTE: hostek.com is used in this example, so you will need to replace hostek.com with your domain.&lt;br /&gt;
&lt;br /&gt;
On your iPhone do the following:&lt;br /&gt;
# Go to Settings&lt;br /&gt;
# Go to Mail, Contact, Calendars&lt;br /&gt;
# Go to Add Account...&lt;br /&gt;
# Select Other&lt;br /&gt;
# Select Add CalDAV Account&lt;br /&gt;
# Server: mail.hostek.com/webdav (NOTE: The /webdav part will disappear after you tap the User Name field)&lt;br /&gt;
# User Name: enter your full email address (see screen shot for example)&lt;br /&gt;
# Password: enter your password for this email address&lt;br /&gt;
# Description: Leave or change as desired&lt;br /&gt;
# Select Next (NOTE: You will get a message about the certificate not being verified. Just accept the certificate).&lt;br /&gt;
# That's it. You should get a message it verified the account.&lt;br /&gt;
[[File:Iphone-calendar-sync.jpg]]&lt;br /&gt;
[[Category: Configuring-Email-Clients]]&lt;br /&gt;
[[category:CalDAV]]&lt;br /&gt;
[[Category: iPhone]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=DNS_-_Name_Servers&amp;diff=1672</id>
		<title>DNS - Name Servers</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=DNS_-_Name_Servers&amp;diff=1672"/>
				<updated>2013-10-02T00:47:44Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Name Server information */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
==Name Server information==&lt;br /&gt;
*Here is the Name Server information you need if you are registering a domain that we will host on our servers, or if you are switching a domain over to our servers.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Windows/ColdFusion/Railo on Windows Platforms:&lt;br /&gt;
Primary Name Server:&lt;br /&gt;
NS1.HOSTEK.COM&lt;br /&gt;
64.37.66.145 (if needed)&lt;br /&gt;
&lt;br /&gt;
Secondary Name Server:&lt;br /&gt;
NS2.HOSTEK.COM&lt;br /&gt;
64.73.203.254  (if needed)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Linux/ColdFusion on Linux/Railo on Linux Platforms:&lt;br /&gt;
Primary Name Server:&lt;br /&gt;
NS3.HOSTEK.COM&lt;br /&gt;
65.175.112.209 (if needed)&lt;br /&gt;
&lt;br /&gt;
Secondary Name Server:&lt;br /&gt;
NS4.HOSTEK.COM&lt;br /&gt;
74.127.47.237 (if needed)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Name Server information (Resellers)==&lt;br /&gt;
*If you are a reseller and want to provide your customers an alternate white label DNS, use this information, or create your own Name Servers as mirrors of either set.&lt;br /&gt;
&lt;br /&gt;
'''**Windows/ColdFusion/Railo on Windows Platforms:'''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Primary Name Server:&lt;br /&gt;
NS1.EZHOSTINGSERVER.COM&lt;br /&gt;
216.15.198.133 (if needed)&lt;br /&gt;
&lt;br /&gt;
Secondary Name Server:&lt;br /&gt;
NS2.EZHOSTINGSERVER.COM&lt;br /&gt;
216.15.198.134 (if needed)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''**Linux Resellers:'''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Primary Name Server:&lt;br /&gt;
NS7.EZHOSTINGSERVER.COM&lt;br /&gt;
64.201.98.101 (if needed)&lt;br /&gt;
&lt;br /&gt;
Secondary Name Server:&lt;br /&gt;
NS8.EZHOSTINGSERVER.COM&lt;br /&gt;
64.201.97.249 (if needed)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''**All Linux/ColdFusion on Linux/Railo on Linux Platforms set up before 07/15/2013:'''&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
Primary Name Server:&lt;br /&gt;
NS3.EZHOSTINGSERVER.COM&lt;br /&gt;
216.198.218.143 (if needed)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Secondary Name Server:&lt;br /&gt;
NS4.EZHOSTINGSERVER.COM&lt;br /&gt;
65.175.112.227 (if needed)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Updating Name Servers for Domain registered with Hostek.com==&lt;br /&gt;
#You would first need to contact support at &amp;quot;support.hostek.com&amp;quot; and request for your domain to be unlocked, please also provide the answer to your account security question for verification.&lt;br /&gt;
#You would then log into your billing control panel at http://cp.hostek.com.&lt;br /&gt;
#You will then click Domains at the top and choose My Domains.&lt;br /&gt;
#Next to the domain you wish to update the name servers for click &amp;quot;Manage Domain&amp;quot; and choose &amp;quot;Manage Name servers&amp;quot;.&lt;br /&gt;
#You will then update the DNS/Nameservers to the appropriate ones and click &amp;quot;Change Name servers&amp;quot;.&lt;br /&gt;
#The propagation of new name servers can take up to 24 hours to fully propagate.&lt;br /&gt;
&lt;br /&gt;
==Pointing a domain registered at another registrar to Hostek.com==&lt;br /&gt;
#You would first need to review your New Account Information Email to view the correct Name Servers for your hosting package&lt;br /&gt;
#You could also refer to this WIKI based on the package/nameservers above.&lt;br /&gt;
#Once you have the correct nameservers you will need to update them at your current registrar.&lt;br /&gt;
#You will need to login. unlock your domain name and update the DNS/Nameservers to the appropriate ones.&lt;br /&gt;
#If you cannot find where to do this at your current registrar please contact them and have them do it for you.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Updating Name Servers at other registrars - Video Tutorials ==&lt;br /&gt;
[http://hostek.com/tutorials/dns_000domains.html How to update the name servers at 000domains.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_123reg.html How to update the name servers at 123-reg.co.uk]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_1and1.html How to update the name servers at 1and1.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_domainsite.html How to update the name servers at domainsite.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_dotster.html How to update the name servers at dotster.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_dynadot.html How to update the name servers at dynadot.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_enom.html How to update the name servers at enom.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_godaddy.html How to update the name servers at godaddy.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_itsyourdomain.html How to update the name servers at itsyourdomain.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_melbourne.html How to update the name servers at melbourneit.com.au]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_namebargain.html How to update the name servers at namebargain.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_namecheap.html How to update the name servers at namecheap.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_netfirms.html How to update the name servers at netfirms.ca]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_netsol.html How to update the name servers at networksolutions.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_opensrs.html How to update the name servers at opensrs.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_regfly.html How to update the name servers at registerfly.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_register.html How to update the name servers at register.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_stargate.html How to update the name servers at stargate.com]&lt;br /&gt;
&lt;br /&gt;
== Creating Custom Name Servers at other registrars - Video Tutorials ==&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_000domains.html Creating private name servers at 000domains.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_123reg.html Creating private name servers at 123-reg.co.uk]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_1and1.html Creating private name servers at 1and1.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_domainsite.html Creating private name servers at domainsite.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_dotster.html Creating private name servers at dotster.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_dynadot.html Creating private name servers at dynadot.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_enom.html Creating private name servers at enom.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_godaddy.html Creating private name servers at godaddy.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_itsyourdomain.html Creating private name servers at itsyourdomain.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_melbourneit.html Creating private name servers at melbourneit.com.au]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_namebargain.html Creating private name servers at namebargain.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_namecheap.html Creating private name servers at namecheap.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_netfirms.html Creating private name servers at netfirms.ca]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_netsol.html Creating private name servers at networksolutions.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_opensrs.html Creating private name servers at opensrs.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_regfly.html Creating private name servers at registerfly.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_register.html Creating private name servers at register.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_private_stargate.html Creating private name servers at stargate.com]&lt;br /&gt;
&lt;br /&gt;
[[Category:Domain-Names]]&lt;br /&gt;
[[Category:Resellers]]&lt;br /&gt;
&lt;br /&gt;
== Custom Name Servers for VPS ==&lt;br /&gt;
[[Category:VPS]]&lt;br /&gt;
&lt;br /&gt;
===Cpanel VPS===&lt;br /&gt;
The best practice is to add custom Name Servers before adding domains to your cpanel VPS.&lt;br /&gt;
&lt;br /&gt;
#Set DNS A records for each of the name servers being created, NS1.yourdomain.com and NS2.yourdomain.com to use the VPS IP address.&lt;br /&gt;
#Login to the cpanel WebHost Manager usually http://your-server-ip:2086&lt;br /&gt;
#Click &amp;quot;Basic cPanel &amp;amp; WHM Setup&amp;quot; and scroll to the bottom to view/set the &amp;quot;Nameservers&amp;quot;.&lt;br /&gt;
#If you have already added domains to your cpanel server, edit each DNS zone setting any and all references for name servers to your new Name Server records, (ns3.hostek.com &amp;amp; ns4.hostek.com changed to ns1.yourdomain.com &amp;amp; ns2.yourdomain.com).&lt;br /&gt;
#SSH into your cpanel VPS and run this script to update cpanel so it will recognize your new Name Servers.&lt;br /&gt;
#*&amp;lt;pre&amp;gt;/usr/local/cpanel/scripts/updatenameserverips&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Register your Name Servers with the Cpanel server IP Address, at your registrar.&lt;br /&gt;
#*Videos: [https://wiki.hostek.com/DNS_(Name_Servers)#Creating_Custom_Name_Servers_at_other_registers_-_Video_Tutorials Setting custom name servers] for the most common registrars.&lt;br /&gt;
#*If you registered your domain name with Hostek submit a [https://support.hostek.com support request] for registering the Name Servers and reference this article and step.&lt;br /&gt;
#You can begin pointing domains hosted on your Cpanel VPS to use the custom Name Servers.&lt;br /&gt;
&lt;br /&gt;
*See the latest [http://docs.cpanel.net/twiki/bin/view/11_30/WHMDocs/WebHome WebHost Manager Documentation] for any changes in steps 2-6.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Windows VPS===&lt;br /&gt;
All our Windows VPS (ColdFusion included) will be equipped by default with our WCP (windows control panel) which includes integration with two of our own Name Servers. This way you will not have to install the DNS service on your own VPS server, saving bandwidth, installation and management. &lt;br /&gt;
&lt;br /&gt;
#Set DNS A records for each of the name servers being created, NS1.yourdomain.com and NS2.yourdomain.com use the IP Address for the DNS servers (Primary and Secondary) listed in the &amp;quot;Site Details&amp;quot; area of WCP. To find the IP Address for your primary and secondary reference our [https://wiki.hostek.com/DNS_(Name_Servers)#Name_Server_information Name Server information].&lt;br /&gt;
#Register your Name Servers with the IP Address for the primary and secondary DNS server in step 1, at your registrar.&lt;br /&gt;
#*Videos: [https://wiki.hostek.com/DNS_(Name_Servers)#Creating_Custom_Name_Servers_at_other_registers_-_Video_Tutorials Setting custom name servers] for the most common registrars.&lt;br /&gt;
#*If you registered your domain name with Hostek submit a [https://support.hostek.com support request] for registering the Name Servers and reference this article and step.&lt;br /&gt;
#You can begin pointing domains added through WCP to your custom Name Servers.&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Testing_Your_Web_Site_Before_Changing_DNS&amp;diff=1663</id>
		<title>Testing Your Web Site Before Changing DNS</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Testing_Your_Web_Site_Before_Changing_DNS&amp;diff=1663"/>
				<updated>2013-09-14T06:00:08Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: /* Windows PC (Windows 95 / 98 / Me / NT / 2000 / XP / 2003 / Vista / 7) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Using Your Computer's Hosts File to Test Your Web Site==&lt;br /&gt;
When migrating your site to a new server, you want to test your site before updating the DNS to point to the new server. To do this you can use your computer's '''hosts''' file to force your computer to visit the new server when visiting your domain name. &lt;br /&gt;
===Introduction===&lt;br /&gt;
Your computer's '''hosts''' file is a local repository for resolving a domain name to an IP, and this method predates modern DNS systems. The computer checks its hosts file before making any DNS requests to resolve a domain. This allows you to adjust your hosts file to force your computer to visit a different IP address when visiting your domain name. &lt;br /&gt;
===Example===&lt;br /&gt;
Below is example from a Windows hosts file that shows ''google.com'' and ''www.google.com'' pointing to a different IP address than what is reported by a DNS lookup.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Copyright (c) 1993-2009 Microsoft Corp.&lt;br /&gt;
#&lt;br /&gt;
# This is a sample HOSTS file used by Microsoft TCP/IP for Windows.&lt;br /&gt;
#&lt;br /&gt;
# This file contains the mappings of IP addresses to host names. Each&lt;br /&gt;
# entry should be kept on an individual line. The IP address should&lt;br /&gt;
# be placed in the first column followed by the corresponding host name.&lt;br /&gt;
# The IP address and the host name should be separated by at least one&lt;br /&gt;
# space.&lt;br /&gt;
#&lt;br /&gt;
# Additionally, comments (such as these) may be inserted on individual&lt;br /&gt;
# lines or following the machine name denoted by a '#' symbol.&lt;br /&gt;
#&lt;br /&gt;
# For example:&lt;br /&gt;
#&lt;br /&gt;
#      102.54.94.97     rhino.acme.com          # source server&lt;br /&gt;
#       38.25.63.10     x.acme.com              # x client host&lt;br /&gt;
&lt;br /&gt;
# localhost name resolution is handled within DNS itself.&lt;br /&gt;
#	127.0.0.1       localhost&lt;br /&gt;
#	::1             localhost&lt;br /&gt;
192.168.1.204 google.com&lt;br /&gt;
192.168.1.204 www.google.com&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
===How to Edit the Hosts File===&lt;br /&gt;
====Windows PC (Windows 95 / 98 / Me / NT / 2000 / XP / 2003 / Vista / 7)====&lt;br /&gt;
#Open Notepad as Administrator: &lt;br /&gt;
##Click the Start menu, open All Programs --&amp;gt; Accessories&lt;br /&gt;
##Right-click Notepad and click '''Run as Administrator'''&lt;br /&gt;
#In Notepad click File --&amp;gt; Open and find the hosts file at the appropriate location:&lt;br /&gt;
#*'''Windows NT / 2000 / XP / 2003 / Vista / 7''':&amp;lt;pre&amp;gt;C:\windows\system32\drivers\etc\hosts&amp;lt;/pre&amp;gt;&lt;br /&gt;
#*'''Windows 95 / 98 / Me''':&amp;lt;pre&amp;gt;C:\windows\hosts&amp;lt;/pre&amp;gt;&lt;br /&gt;
#*'''''Please note that the file type drop-down menu needs to be changed to &amp;quot;All Files&amp;quot; to see the hosts file:''''' [[Image:edit_hosts_file2.jpg]]&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
#On the last line add your entry as shown below then save and close Notepad. This example assumes we want to point '''domainname.com''' to '''132.232.249.198'''. &amp;lt;pre&amp;gt;132.232.249.198 domainname.com&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====Mac OS====&lt;br /&gt;
#Open a finder window and open your Applications folder&lt;br /&gt;
#Open the Utilities folder&lt;br /&gt;
#Locate the Terminal app and double-click it&lt;br /&gt;
#When the terminal opens, enter this command: &lt;br /&gt;
#*'''Mac OS 10.6 and higher''':&amp;lt;pre&amp;gt;sudo nano /etc/hosts&amp;lt;/pre&amp;gt;&lt;br /&gt;
#*'''Mac OS 10.5 and below''':&amp;lt;pre&amp;gt;sudo nano /private/etc/hosts&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Enter your Mac user's password when prompted&lt;br /&gt;
#On the last line add your entry as shown below. This example assumes we want to point '''domainname.com''' to '''132.232.249.198'''. &amp;lt;pre&amp;gt;132.232.249.198 domainname.com&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Press '''''ctrl'''''-'''''x''''', then press '''''y''''' when prompted to save your changes&lt;br /&gt;
&lt;br /&gt;
====Linux====&lt;br /&gt;
#SSH into your console or open your terminal if you run a GUI on your Linux machine.&lt;br /&gt;
#Enter this command: sudo nano /etc/hosts&lt;br /&gt;
#Enter your ''root'' password when prompted&lt;br /&gt;
#On the last line add your entry as shown below. This example assumes we want to point '''domainname.com''' to '''132.232.249.198'''. &amp;lt;pre&amp;gt;132.232.249.198 domainname.com&amp;lt;/pre&amp;gt;&lt;br /&gt;
#Press '''''ctrl'''''-'''''x''''', then press '''''y''''' when prompted to save your changes&lt;br /&gt;
'''''Note''': If you plan to test with the '''www''' version of your domain name, you must add an entry for the '''www''' version of your domain to the hosts file.&amp;lt;br /&amp;gt;You may also need to '''[[Flush_DNS_Resolver_Cache|flush your computer's DNS resolver cache]]''' after making these changes too.''&lt;br /&gt;
&lt;br /&gt;
===Further Reading===&lt;br /&gt;
*[http://www.bleepingcomputer.com/tutorials/hosts-files-explained/ The Hosts File and what it can do for you]&lt;br /&gt;
*[http://www.howtogeek.com/howto/27350/beginner-geek-how-to-edit-your-hosts-file/ Beginner Geek: How To Edit Your Hosts File]&lt;br /&gt;
*[http://support.microsoft.com/kb/228760 How to use a Hosts file to test a site that uses host headers on an Intranet]&lt;br /&gt;
*[http://support.apple.com/kb/ta27291 Mac OS X: How to Add Hosts to Local Hosts File]&lt;br /&gt;
&lt;br /&gt;
[[Category:Tutorials]]&lt;br /&gt;
[[Category:Resellers]]&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Railo]]&lt;br /&gt;
[[Category:Coldfusion]]&lt;br /&gt;
[[Category:VPS]]&lt;br /&gt;
[[Category:ColdFusion-VPS]]&lt;br /&gt;
[[Category:Linux-VPS]]&lt;br /&gt;
[[Category:Railo-VPS]]&lt;br /&gt;
[[Category:Windows-VPS]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:Edit_hosts_file2.jpg&amp;diff=1662</id>
		<title>File:Edit hosts file2.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:Edit_hosts_file2.jpg&amp;diff=1662"/>
				<updated>2013-09-14T05:55:18Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: Windows Notepad &amp;gt; Edit Hosts File&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Windows Notepad &amp;gt; Edit Hosts File&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:Edit_hosts_file.jpg&amp;diff=1661</id>
		<title>File:Edit hosts file.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:Edit_hosts_file.jpg&amp;diff=1661"/>
				<updated>2013-09-14T05:39:05Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: Windows Notepad &amp;gt; Edit Hosts File&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Windows Notepad &amp;gt; Edit Hosts File&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Category:Email-VPS&amp;diff=1624</id>
		<title>Category:Email-VPS</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Category:Email-VPS&amp;diff=1624"/>
				<updated>2013-08-21T06:46:59Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== SmarterMail VPS Information ===&lt;br /&gt;
&lt;br /&gt;
==== How many domains can be added for each SmarterMail VPS plan? ====&lt;br /&gt;
&lt;br /&gt;
=====The VPS-1 plan===== &lt;br /&gt;
Includes the free version of SmarterMail which will support a single (1) domain with up to 10 users within the single(1) domain.&lt;br /&gt;
&lt;br /&gt;
=====The VPS-250 plan===== &lt;br /&gt;
Includes the Enterprise version of SmarterMail and will support a 250 Mailboxes or Domains.&lt;br /&gt;
&lt;br /&gt;
*There is no additional charge for domains added up to 250 Domains.&lt;br /&gt;
&lt;br /&gt;
=====The VPS-1000 plan===== &lt;br /&gt;
Includes the Enterprise version of SmarterMail and will support a 1000 Mailboxes or Domains.&lt;br /&gt;
&lt;br /&gt;
*There is no additional charge for domains added up to 1000 Domains.&lt;br /&gt;
&lt;br /&gt;
====Moving from Shared to VPS hosted SmarterMail====&lt;br /&gt;
#Pre-setting the DNS records. &lt;br /&gt;
#*At your DNS provider edit the &amp;quot;mail&amp;quot; record setting the TTL to 600. If you do not have a &amp;quot;mail&amp;quot; record, create one as a CNAME, and point at the server listed under the domains MX record.&lt;br /&gt;
#*Ensure the MX record points to mail.your-domain.com.&lt;br /&gt;
#Ensure the domain has already been added to SmarterMail, this should be done through the WCP automatically and only have a single user &amp;quot;mailadmin&amp;quot; setup by default.&lt;br /&gt;
#Ensure you have the URL and login details for SmarterMail to login and manage ALL domains. The user will be &amp;quot;admin&amp;quot; if you don't have this login information contact support.&lt;br /&gt;
#*Example SmarterMail URL: mail.srv1-yourdomain-com.vps.ezhostingserver.com&lt;br /&gt;
#Request a ZIP copy of the SmarterMail domain. Our support should be able to copy this to your server, this process can take 20-30 min depending on the support activity at the time. We highly recommend doing this in the evening.&lt;br /&gt;
#Unzip the archive containing the domain, you should find either a folder named your-domain.com or sub folders such as Aliases, Users, Stats and some files. If you find domain.com, with the folders underneath copy the domain.com folder to C:\SmarterMail\Domains and confirm the overwrite. If the ZIP contained the Aliases, Users and Stats folders with files copy all the contents and browse into the domain.com directory and paste, confirming overwrite.&lt;br /&gt;
#Login to the SmarterMail admin portal, search the domain and click &amp;quot;Edit&amp;quot; which should open a new window, click the &amp;quot;Reload&amp;quot; button. Select the domain again in the admin portal and click &amp;quot;Manage&amp;quot; then under &amp;quot;Tools&amp;quot; select &amp;quot;Users&amp;quot; and verify all users exists. If they do not try restarting the SmarterMail Service on your VPS and repeat this process. &lt;br /&gt;
#*NOTE: The SmarterMail Webserver service should remain STOPPED, it is not needed when using IIS.&lt;br /&gt;
#Finalize the DNS by changing &amp;quot;mail&amp;quot; record in DNS to an &amp;quot;A&amp;quot; record and the VPS server IP for the record data, and TTL 14400.&lt;br /&gt;
#*Example: mail.yourdomain.com &amp;gt;&amp;gt; Type: A &amp;gt;&amp;gt; Data: 123.123.123.123 &amp;gt;&amp;gt; TTL 14400&lt;br /&gt;
&lt;br /&gt;
==== How can I migrate my smartermail accounts from another hosting provider? ====&lt;br /&gt;
&lt;br /&gt;
'''Things to do on the new SmarterMail VPS before the move:'''&lt;br /&gt;
- On the NEW SmarterMail server&lt;br /&gt;
  - Copy domainList.xml from the old server &lt;br /&gt;
  - Copy lastlogin.xml from the old server&lt;br /&gt;
  - Copy files from old to new server to have an initial base set of files&lt;br /&gt;
&lt;br /&gt;
'''Steps to start/complete the migration:'''&lt;br /&gt;
- On the NEW Mail server (right after midnight suggested)&lt;br /&gt;
  - copy all changed files to new server&lt;br /&gt;
- On OLD Mail server&lt;br /&gt;
  - stop spool, pop, imap (services via webmail)&lt;br /&gt;
  - stop IIS site&lt;br /&gt;
  - leave SmarterMail running (for SMTP - incoming messages will still be delivered to the spool)&lt;br /&gt;
- On NEW mail server&lt;br /&gt;
  - copy changed files again&lt;br /&gt;
  - restart New Mail Server&lt;br /&gt;
  - disable domain on OLD mail server&lt;br /&gt;
  - Add mail forwarding on OLD SmarterMail server to the NEW SmarterMail server  &lt;br /&gt;
  - Change DNS for any mail records (A and CNAME) and for the MX record&lt;br /&gt;
  - copy spool from OLD mail server over to NEW mail server&lt;br /&gt;
  - send test email using an outside email address&lt;br /&gt;
  - send test from webmail on New Mail Server to an outside address&lt;br /&gt;
&lt;br /&gt;
==== What if my current host uses an older version of SmarterMail? ====&lt;br /&gt;
No problem.  Let us know what version (we can handle version 3.x and after) you currently have and we can start at the same version, and then perform the upgrades to the latest version.&lt;br /&gt;
&lt;br /&gt;
====Anti-Virus====&lt;br /&gt;
&lt;br /&gt;
AVG Anti-Virus is installed by default on SmarterMail VPS's. This takes precedence over any SmarterMail Anti-Virus specific settings because AVG is installed directly within Windows and not &amp;quot;integrated&amp;quot; within SmarterMail. We do NOT  recommend installing or enabling the ClamAV option, because we find the AVG solution much more robust.&lt;br /&gt;
&lt;br /&gt;
To test if the AVG Anti-Virus is working for the SmarterMail VPS, simply send an email from any (non-filtered) smtp server to an email account on the SmarterMail VPS containing the [http://www.eicar.org/86-0-Intended-use.html Anti-Malware Testfile]. Simply place these ASCII characters into the TXT body of the email, and send. This mail should not arrive, being filtered by AVG. If the file is not filtered you should [https://support.hostek.com contact support] for assistance in tuning the AVG settings. &lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== SmarterMail VPS - Problems and Solutions ===&lt;br /&gt;
&lt;br /&gt;
==== After Migration some Email Blank/Empty ====&lt;br /&gt;
*Stop Smartermail Service&lt;br /&gt;
*Delete the mailbox.cfg from the affected folder or folders.&lt;br /&gt;
*Start Smartermail Service&lt;br /&gt;
&lt;br /&gt;
==== Unable to Upload Files to File Storage ====&lt;br /&gt;
When attempting to upload files to file storage, the upload process does not complete. This is usually accompanied by the error &amp;quot;Error uploading one or more files. Please verify that the file does not exist and is not of a restricted type.&amp;quot; To resolve this issue, these following changes need to be made:&lt;br /&gt;
*In IIS, set the SmarterMail Application Pool to use &amp;quot;Integrated Mode&amp;quot; instead of &amp;quot;Classic Mode&amp;quot;&lt;br /&gt;
*Recycle the SmarterMail application pool&lt;br /&gt;
*Edit the SmarterMail web.config file (usually located at &amp;quot;C:\Program Files (x86)\SmarterTools\SmarterMail\MRS&amp;quot;) with these two lines:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;add key=&amp;quot;MailServiceAddress&amp;quot; value=&amp;quot;127.0.0.1&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;add key=&amp;quot;MailServiceAddress&amp;quot; value=&amp;quot;IPC&amp;quot; /&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
*Save the web.config file&lt;br /&gt;
*Restart the SmarterMail Application service&lt;br /&gt;
*Logout, then log back in to SmarterMail &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Preparation &amp;amp; Setup===&lt;br /&gt;
&lt;br /&gt;
After the initial order is placed an email with the SmarterMail login details will be sent to the email address on file, usually in less than 24hrs.&lt;br /&gt;
&lt;br /&gt;
====Options for managing the SmarterMail Server====&lt;br /&gt;
The SmarterMail server will be ready to use. There are a few options on how domains can be setup. Read through these options so you will know how to proceed. RDP service is DISABLED for SmarterMail VPS servers.&lt;br /&gt;
&lt;br /&gt;
#SmarterMail managed using the web portal. This process is easy:&lt;br /&gt;
##Browse to the IP address of the server, domains can be added directly through the SmarterMail Admin portal.&lt;br /&gt;
##Add individual user accounts either directly through the Admin Portal or by logging into the &amp;quot;management&amp;quot; using the email account setup during the process of adding the domain.&lt;br /&gt;
#SmarterMail can be integrated into our Control Panel (WCP), with which domains can be easily added, users managed and DNS management will be provided (clicking Domain Information, will provide the DNS servers). For this option submit a request to our support team.&lt;br /&gt;
#SmarterMail can be used along side Shared or VPS web hosting, simply request our support to configure your specific domain or reseller account to use your SmarterMail VPS.&lt;br /&gt;
&lt;br /&gt;
See the [http://help.smartertools.com/ SmarterMail documents] for more details on managing your VPS.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Setup appropriate MX and A records====&lt;br /&gt;
&lt;br /&gt;
When your domain is added to the SmarterMail server and DNS for your domain is not provided by Hostek, the following steps will configure the domain's DNS to allow browsing directly to the webmail portal using '''mail.yourdomain.com''' and allow mail to be delivered to the server for the domain.&lt;br /&gt;
&lt;br /&gt;
#Create an &amp;quot;'''A'''&amp;quot; record named &amp;quot;'''mail'''&amp;quot; (or the prefix you prefer) pointing to the IP address of your SmarterMail server.&lt;br /&gt;
#Create an &amp;quot;'''MX'''&amp;quot; record pointing to &amp;quot;'''mail.yourdomain.com'''&amp;quot; (if you used a different prefix than use &amp;quot;'''yourprefix.yourdomain.com'''&amp;quot;).&lt;br /&gt;
#Login to your SmarterMail VPS and verify the hostname is the same as the domain name you selected. Found under '''Settings''' &amp;gt;&amp;gt; '''General Settings''' &amp;gt;&amp;gt; '''Hostname'''.&lt;br /&gt;
#If, when you have pointed the hostname to the server IP address and waited for the DNS propagation to complete (usually 4hrs), the SmarterMail admin page does not load, please contact support.&lt;br /&gt;
&lt;br /&gt;
====Adding Domains====&lt;br /&gt;
&lt;br /&gt;
#Login to with the SmarterMail Admin user.&lt;br /&gt;
#Select the option to to &amp;quot;Add Domain&amp;quot;&lt;br /&gt;
#*Adding a domain may be different depending on the version of SmarterMail, so check the documentation for your specific version.&lt;br /&gt;
#When completing the new domain configuration you will be required to provide an &amp;quot;Domain Administrator&amp;quot; we recommend providing a generic user for management or assigning this level of permission to the person responsible for managing the domain.&lt;br /&gt;
&lt;br /&gt;
=====Adding Users=====&lt;br /&gt;
&lt;br /&gt;
There are two ways to add users depending on the login.&lt;br /&gt;
&lt;br /&gt;
SmarterMail Primary Admin&lt;br /&gt;
#Select the domain, and click &amp;quot;Manage&amp;quot;&lt;br /&gt;
#*Alternate: Login with the DOMAIN Admin (configured when setting up the domain for the first time)&lt;br /&gt;
#Navigate to Settings &amp;gt;&amp;gt; Domain Settings &amp;gt;&amp;gt; Users&lt;br /&gt;
#*Add the user with app appropriate settings.&lt;br /&gt;
&lt;br /&gt;
====To setup SmarterMail for SSL or TLS====&lt;br /&gt;
&lt;br /&gt;
This wiki covers setting up TLS or SSL for SmarterMail for v11, for more version specific help refer to the SmarterMail documentation. This applies to SmarterMail VPS and Windows VPS with SmarterMail Add-on. &lt;br /&gt;
&lt;br /&gt;
#Complete the order for the SSL certificate. We recommend mail.domain.com. &lt;br /&gt;
#For Windows VPS with SmarterMail, log into the server via Remote Desktop.&lt;br /&gt;
#*The SSL Certificate should have already been setup within IIS, for accessing https://mail.domain.com securely. Export the certificate in a non-browsable directory (example: c:\certs).&lt;br /&gt;
#*Skip the next step.&lt;br /&gt;
#For SmarterMail VPS ONLY, request the path to your PKEY file from support after the certificate has been installed.&lt;br /&gt;
#Log into SmarterMail as the Server Administrator &amp;lt;b&amp;gt;'i.e. admin'.&amp;lt;/b&amp;gt;&lt;br /&gt;
#Within the SmarterMail Admin panel, select '''Settings''' &amp;gt; '''Bindings''' &amp;gt; '''Ports'''.&lt;br /&gt;
#Set the Protocol, Encryption, Name, Port, Certificate Path (enter the path to your PKEY file) and Description. NOTE: Any custom ports not using the default or alternate ports pre-allowed through our firewalls may require additional support to configure.&lt;br /&gt;
#Select '''Settings''' &amp;gt; '''Bindings''' &amp;gt; '''IP Addresses'''&lt;br /&gt;
#For each IP Address that you want to use with the SSL /TLS service, right-click and choose '''Edit'''.  Then, check the new Port that was added and click '''Save'''.&lt;br /&gt;
#Test, use an SSL/TLS capable email client to test these new configurations.&lt;br /&gt;
&lt;br /&gt;
===Maintenance===&lt;br /&gt;
&lt;br /&gt;
====How to Increase Email Disk Space for a Domain====&lt;br /&gt;
There will come a time when your domain may reach its limit for email space and you may need to increase it to allow new email messages to be sent and received for that domain.&lt;br /&gt;
&lt;br /&gt;
# Login to your SmarterMail with your admin login.&lt;br /&gt;
# In the left hand menu select '''Domains''' (The Globe).&lt;br /&gt;
# Select the domain by clicking the checkbox for that domain.&lt;br /&gt;
# Click on '''Actions''' at the top then select '''Edit'''.&lt;br /&gt;
# Click the '''Limits''' tab in the pop-up window that opens up.&lt;br /&gt;
# Adjust the Disk Space field to the appropriate size you need.&amp;lt;br /&amp;gt;'''NOTE:''' This value is in MB. You may set it to 0 to be unlimited and just be limited to your servers a lotted space.&lt;br /&gt;
# Click '''Save''' to allow the changes to take full effect.&lt;br /&gt;
&lt;br /&gt;
====Blacklist Removal====&lt;br /&gt;
&lt;br /&gt;
See: https://wiki.hostek.com/Email#Email_Maintenance&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=IPhone&amp;diff=1613</id>
		<title>IPhone</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=IPhone&amp;diff=1613"/>
				<updated>2013-08-13T02:54:12Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
[[Category:iPhone-/-iPod-/-iPad-Email-Setup]]&lt;br /&gt;
&lt;br /&gt;
=iPhone / iPod / iPad Email Setup=&lt;br /&gt;
&lt;br /&gt;
Here are the steps needed for iPhone/iPod/iPad Email set up to be used with the Hostek.com mail servers:&lt;br /&gt;
&lt;br /&gt;
NOTE: In this example, I am using the domain name of sampledomain.com. Be sure to replace sampledomain.com with your domain name below.  Also, you will want to use mail.sampledomain.com in place of mail10.hostek.com in the example.&lt;br /&gt;
&lt;br /&gt;
First, go to Settings and turn Wi-Fi OFF (turn back on after completing all steps below)&lt;br /&gt;
&lt;br /&gt;
Go to Mail, Contact, Calendars to begin the tutorial.&lt;br /&gt;
&lt;br /&gt;
== Step One ==&lt;br /&gt;
&lt;br /&gt;
[[File:iphone2.jpg]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Select &amp;quot;Add Mail Account&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Step Two ==&lt;br /&gt;
&lt;br /&gt;
[[File:iphone1.jpg]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Select &amp;quot;Other&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Step Three ==&lt;br /&gt;
&lt;br /&gt;
[[File:iphone3.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Select Mail Account, and then enter the following:&lt;br /&gt;
&lt;br /&gt;
- Name&lt;br /&gt;
&lt;br /&gt;
- Email address&lt;br /&gt;
&lt;br /&gt;
- Password&lt;br /&gt;
&lt;br /&gt;
- Description&lt;br /&gt;
&lt;br /&gt;
Select &amp;quot;Next&amp;quot;, then choose IMAP or POP (sample image in step 4 is based on IMAP; POP is the same except for the Port in Advanced).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Step Four ==&lt;br /&gt;
&lt;br /&gt;
[[File:iphone4.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Enter your Incoming Mail Server Information&lt;br /&gt;
&lt;br /&gt;
- Host Name: mail.sampledomain.com&lt;br /&gt;
&lt;br /&gt;
- Username: (enter your full email address)&lt;br /&gt;
&lt;br /&gt;
- Password: (enter the password you assigned to this account)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Step Five ==&lt;br /&gt;
&lt;br /&gt;
[[File:iphone5.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Under &amp;quot;Outgoing Mail Server&amp;quot;, enter the following:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- Host Name: mail.your_domain.com&lt;br /&gt;
&lt;br /&gt;
- Username: (enter your full email address)&lt;br /&gt;
&lt;br /&gt;
- Password: (enter the password you assigned to this account)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Step Six ==&lt;br /&gt;
&lt;br /&gt;
[[File:iphone6.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Select &amp;quot;Save&amp;quot; (iPhone will attempt to verify the account information... this can take 1-2 minutes initially)&lt;br /&gt;
&lt;br /&gt;
NOTE: You may get a message about &amp;quot;Secure Connection Failed&amp;quot;... just hit Continue (you'll likely then get the same message again, related to SMTP this time)... just hit Continue again. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Step Seven ==&lt;br /&gt;
&lt;br /&gt;
[[File:iphone7.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
After the account is setup, go back into the account.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Step Eight ==&lt;br /&gt;
&lt;br /&gt;
[[File:iphone8.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Under the &amp;quot;Outgoing Mail Server&amp;quot; section select on &amp;quot;SMTP&amp;quot;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Step Nine ==&lt;br /&gt;
&lt;br /&gt;
[[File:iphone9.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Under &amp;quot;Primary Mail Server&amp;quot;, enter the following:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
- Set Use SSL to ON&lt;br /&gt;
&lt;br /&gt;
- Set Authentication to &amp;quot;Password&amp;quot;&lt;br /&gt;
&lt;br /&gt;
- Change Server Port to 465&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;NOTE:&amp;lt;/b&amp;gt; If you are on a VPS Mail Server, and there is no SSL Certificate for your mail server, than you will keep SSL switched &amp;lt;b&amp;gt;OFF&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Select on the &amp;quot;SMTP&amp;quot; at the top-left to go back, then select &amp;quot;Email Address&amp;quot; at the top-left to go back once more.&lt;br /&gt;
&lt;br /&gt;
== Step Ten ==&lt;br /&gt;
&lt;br /&gt;
[[File:iphone10.jpg]]&lt;br /&gt;
&lt;br /&gt;
Select &amp;quot;Advanced&amp;quot;&lt;br /&gt;
&lt;br /&gt;
- Set &amp;quot;Use SSL&amp;quot; to ON&lt;br /&gt;
&lt;br /&gt;
- Change Server Port to &amp;quot;993&amp;quot; for IMAP, &amp;quot;995&amp;quot; for POP.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Congratulations! Your new email account setup is complete. You may now re-enable your 'Wi-Fi' setting.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: Configuring-Email-Clients]]&lt;br /&gt;
&lt;br /&gt;
= iPhone / iPod App for Control Panel =&lt;br /&gt;
&lt;br /&gt;
We have an iPhone App for the WCP (Windows Control Panel).  You can review and download the app at http://itunes.apple.com/us/app/hostek/id497702422?ls=1&amp;amp;mt=8&lt;br /&gt;
[[Category: Control Panels]]&lt;br /&gt;
&lt;br /&gt;
= iPhone / iPod App for Control Panel for Resellers =&lt;br /&gt;
&lt;br /&gt;
We have created a white label version of our iPhone App for the WCP for our Resellers.  The white label app is called MochaPanel and can be branded by a reseller to have the reseller logo.  The MochaPanel version for Resellers and Reseller customers can be found at http://itunes.apple.com/us/app/mochapanel/id503347627?ls=1&amp;amp;mt=8&lt;br /&gt;
&lt;br /&gt;
[[category:Control Panels]]&lt;br /&gt;
[[category:Resellers]]&lt;br /&gt;
&lt;br /&gt;
= iPhone Calendar sync with SmarterMail =&lt;br /&gt;
NOTE: hostek.com is used in this example, so you will need to replace hostek.com with your domain.&lt;br /&gt;
&lt;br /&gt;
On your iPhone do the following:&lt;br /&gt;
# Go to Settings&lt;br /&gt;
# Go to Mail, Contact, Calendars&lt;br /&gt;
# Go to Add Account...&lt;br /&gt;
# Select Other&lt;br /&gt;
# Select Add CalDAV Account&lt;br /&gt;
# Server: mail.hostek.com/webdav (NOTE: The /webdav part will disappear after you tap the User Name field)&lt;br /&gt;
# User Name: enter your full email address (see screen shot for example)&lt;br /&gt;
# Password: enter your password for this email address&lt;br /&gt;
# Description: Leave or change as desired&lt;br /&gt;
# Select Next (NOTE: You will get a message about the certificate not being verified. Just accept the certificate).&lt;br /&gt;
# That's it. You should get a message it verified the account.&lt;br /&gt;
[[File:Iphone-calendar-sync.jpg]]&lt;br /&gt;
[[Category: Configuring-Email-Clients]]&lt;br /&gt;
[[category:CalDAV]]&lt;br /&gt;
[[Category: iPhone]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Reseller_FAQ&amp;diff=1591</id>
		<title>Reseller FAQ</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Reseller_FAQ&amp;diff=1591"/>
				<updated>2013-07-29T01:12:37Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
===How will support issues be handled?===&lt;br /&gt;
&lt;br /&gt;
We will support you and you will support your clients. Any issue that your client has, for which you require our assistance, should go from your client to you, then from you to us via our online support ticket system at support.hostek.com.&lt;br /&gt;
&lt;br /&gt;
===Will Clients have their own Control Panel===&lt;br /&gt;
&lt;br /&gt;
Yes. Your clients would have access to a control panel.&lt;br /&gt;
&lt;br /&gt;
The URL would depend on the type of reseller account you have and the platform.&lt;br /&gt;
&lt;br /&gt;
If the reseller account is a Linux Reseller account, you will get the url from your cPanel login that they would need.&lt;br /&gt;
&lt;br /&gt;
If you are a Windows or ColdFusion reseller...&lt;br /&gt;
&lt;br /&gt;
http://wcp.ezhostingserver.com&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''NOTE:''' We automatically create a wcp.your_domain.com entry in the DNS for this. If you have the DNS pointed to our servers, your customers can go to http://wcp.your_domain.com to login (using your domain instead of your_domain.com of course)&lt;br /&gt;
&lt;br /&gt;
===Will each resold domain have a unique IP address?===&lt;br /&gt;
&lt;br /&gt;
On our Windows Reseller accounts all domains are able to get a dedicated IP address for no extra charge, but it will need to be requested through our support system at support.hostek.com&lt;br /&gt;
&lt;br /&gt;
On our Linux Reseller accounts there will be an additional $1 per month charge per dedicated IP address requested.&lt;br /&gt;
&lt;br /&gt;
===Can my clients maintain their own email accounts?===&lt;br /&gt;
&lt;br /&gt;
Yes. Your customers will have full access to the web mail administration for their email accounts.&lt;br /&gt;
&lt;br /&gt;
===Can I have my own Name Servers?===&lt;br /&gt;
&lt;br /&gt;
For our reseller customers, yes. We can help you get the Name Servers in place for you to use your own Name Servers for your customers.&lt;br /&gt;
&lt;br /&gt;
===How do I additional a domain to my reseller account?===&lt;br /&gt;
&lt;br /&gt;
You would log into your Control Panel and add the domain.&amp;lt;br/&amp;gt;&lt;br /&gt;
Once you are logged in, you can &amp;quot;Add Domain&amp;quot; to your account.&lt;br /&gt;
&lt;br /&gt;
===Does every additional domain get their own email accounts?===&lt;br /&gt;
&lt;br /&gt;
Yes.&amp;lt;br/&amp;gt;&lt;br /&gt;
'''Windows and Coldfusion Resellers'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Each domain will have a total of 2000MB of e-mail disk space.&lt;br /&gt;
&lt;br /&gt;
'''Linux Resellers'''&amp;lt;br/&amp;gt;&lt;br /&gt;
Each domain gets email but the space is part of their hosting space as well.&lt;br /&gt;
&lt;br /&gt;
===How is the disk space of my Reseller Plan divided among my customers?===&lt;br /&gt;
That is up to you. You can split up the entire allotment of disk space under your reseller plan among all of your clients however you see fit.&lt;br /&gt;
[[Category:Resellers]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Domain_Registration_and_Domain_Name_Management&amp;diff=1532</id>
		<title>Domain Registration and Domain Name Management</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Domain_Registration_and_Domain_Name_Management&amp;diff=1532"/>
				<updated>2013-07-08T04:16:56Z</updated>
		
		<summary type="html">&lt;p&gt;Chrisw: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Basic Information==&lt;br /&gt;
*When you request that we register a domain name on your behalf, you will be the owner of the domain name (also called the domain name &amp;quot;Registrant&amp;quot;). We will register the domain in your name.&lt;br /&gt;
*'''How can I find out if a domain name is available for registration?'''&lt;br /&gt;
*'''Use our domain name search tool by clicking [https://cp.hostek.com/cart.php?a=add&amp;amp;domain=register Here]'''&lt;br /&gt;
*After registering a domain it typically takes between 24-72 hours for the domain to fully propagate and become accessible on the internet. This is the normal internet propagation time.&lt;br /&gt;
*If you had us register a domain name on your behalf, we'll begin sending you renewal notices a month before your domain name is set to expire.&lt;br /&gt;
&lt;br /&gt;
===What is a DNS transfer?===&lt;br /&gt;
A DNS transfer is the pointing of your domain name to different nameservers. If you have us register your domain name on your behalf, we will automatically point the domain name to our nameservers.&lt;br /&gt;
&lt;br /&gt;
If the domain name is already registered, you'll need to point the domain name to our nameservers in order for users to find your site on our servers by visiting the domain name in a browser. The domain must also be pointed to our nameservers before your email accounts on our mail server will function.&lt;br /&gt;
&lt;br /&gt;
===How Long Will It Take For My Site To Show?===&lt;br /&gt;
*If you are registering a new domain name the site will be available immediately after your order is set up.&lt;br /&gt;
*If you are pointing the nameservers to us it can take anywhere from 4 to 48 hours for the changes to completely propagate throughout the Internet.&lt;br /&gt;
*If you are transferring a domain to us we recommend changing the nameservers before making the transfer. '''(Domain Registration Transfers can take from 7 to 10 days to complete but nameserver changes will still take effect while your domain is transferring)'''&lt;br /&gt;
&lt;br /&gt;
===What is DNS Propagation?===&lt;br /&gt;
DNS propagation is the process in which new server information is updated in throughout the Internet. Since Internet Service Providers cache all DNS information and only update it every few days there is a delay when you make changes to the nameservers for your site. When your site has fully propagated it means that the new information has been updated on all DNS servers on the web and your site will be viewable by anyone on the web.&lt;br /&gt;
&lt;br /&gt;
==Check to see if Domain Name is Available==&lt;br /&gt;
Use our domain name search tool by clicking [https://cp.hostek.com/cart.php?a=add&amp;amp;domain=register Here]&lt;br /&gt;
&lt;br /&gt;
==How to Register A Domain Name==&lt;br /&gt;
#To register a new domain name, you'll first have to log into your billing account at cp.hostek.com.&lt;br /&gt;
#Once logged in, click the '''Order''' link at the bottom of the '''Quick Navigation Links''' at the right hand of your screen.&lt;br /&gt;
#On the next page, click the '''Register Domain''' link under the '''Browse Products &amp;amp; Services''' section. This will take you to a page where you can enter the domain name you wish to register and check for its availability. If the domain shows it is available, click the '''Add to cart''' button to proceed with the order.&lt;br /&gt;
#At this point you can choose whether or not to add ID protection to your order. If you choose to add ID protection, then your contact information will not displayed when a WHOIS lookup is performed on the domain name. This page also lets you choose what name servers you want the domain to use. By default, the system will fill this in with the correct name servers for your hosting plan. If you manage your DNS elsewhere though, this will let you fill in the appropriate name servers. When you click the &amp;quot;Update Cart&amp;quot; button on this page, you'll be taken to the shopping cart.&lt;br /&gt;
#On the shopping cart page, you'd click the '''Checkout''' button and verify your billing information and choose the payment type. After you complete the order, you'll need to pay the Invoice that is generated in the '''My Invoices''' section of your account. Once the invoice is paid, our team will register the domain for you and send a confirmation email once complete. &lt;br /&gt;
&lt;br /&gt;
==Domain Extensions and Registration Fees==&lt;br /&gt;
Domain Registration, Transfer and Renewal fees are:&lt;br /&gt;
*.com- $10.50/year&lt;br /&gt;
*.net- $10.97/year&lt;br /&gt;
*.org- $10.98/year&lt;br /&gt;
*.info - $10/year&lt;br /&gt;
*.mobi - $12.50/year&lt;br /&gt;
*.biz - $10.95year&lt;br /&gt;
*.us - $13/year&lt;br /&gt;
*.ca - $16/year&lt;br /&gt;
*.name - $19.95/year&lt;br /&gt;
*.co.uk - 2yr ONLY - $35.00/2years&lt;br /&gt;
*.tv - $50/year&lt;br /&gt;
*.eu- $14.95/year&lt;br /&gt;
*.org.uk -2yr ONLY $35.00/2years&lt;br /&gt;
*.ch - $39.95/year&lt;br /&gt;
*.com.mx - $40.00/year&lt;br /&gt;
*.co - $31.00/year&lt;br /&gt;
&lt;br /&gt;
*'''To see if a domain is available for registration use our domain name search tool by clicking [https://cp.hostek.com/cart.php?a=add&amp;amp;domain=register Here]'''&lt;br /&gt;
&lt;br /&gt;
==Information on .Pro==&lt;br /&gt;
*The .pro domains must be at least 4 characters long.&lt;br /&gt;
*http://registry.pro/pro/eligibility.shtml &lt;br /&gt;
#PRO is an exclusive top-level domain reserved for use exclusively by licensed business and service professionals and entities internationally. All applicants meeting the following qualifications may register a .PRO domain name: &lt;br /&gt;
*Provides professional services&lt;br /&gt;
*Admitted to or licensed by a government certification body or jurisdictional licensing entity recognized by a governmental body that regularly verifies the accuracy of its data&lt;br /&gt;
*In good standing with the licensing authority &lt;br /&gt;
*In addition, registrants will be asked to provide the following information related to their professional eligibility:&lt;br /&gt;
*Identification&lt;br /&gt;
*Contact information&lt;br /&gt;
*Profession-specific information such as license number &lt;br /&gt;
*To register your .PRO domain name today, please contact one of our authorized registrars&lt;br /&gt;
*http://registry.pro/pro/products.shtml (Listed below.)&lt;br /&gt;
#What information will RegistryPro require from me to activate my domain?&lt;br /&gt;
*You will need to provide: &lt;br /&gt;
**Your name&lt;br /&gt;
**Your profession&lt;br /&gt;
**Your jurisdictional country&lt;br /&gt;
**Your licensing authority&lt;br /&gt;
**Your license number&lt;br /&gt;
**A link to your licensing authority's Web site&lt;br /&gt;
&lt;br /&gt;
==Information on .IT==&lt;br /&gt;
*If you live in, or your business is in Italy you must provide the Registrant Fiscal Code&lt;br /&gt;
*If you live in, or your business is within a country in the European Union you must enter the Identity Document Number, or the numbers on an official form of identification.&lt;br /&gt;
&lt;br /&gt;
==Transferring a .co.uk==&lt;br /&gt;
&lt;br /&gt;
*In order to transfer a .UK domain to our registrar, you must first contact your current Registrar and ask them to change the IPS Tag to “TUCOWS-CA“.&lt;br /&gt;
*If the current Registrar is unable or unwilling to make the change, please contact Nominet directly (http://www.nominet.org.uk) and they will help make the change. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Transfer Your Domain Name from Another Registrar==&lt;br /&gt;
#Unlock the domain at the other registrar. [[Unlocking_Domains_at_other_registrars_-_Video_Tutorials|Video Tutorials]]&lt;br /&gt;
#After unlocking the domain, make sure your contact information for the domain is up-to-date&lt;br /&gt;
#Next you'll need to obtain the EPP (transfer authorization) your current registrar. Most registrars have a way to retrieve the code via your online account, but if you do not see this option then contact them directly.&lt;br /&gt;
#Once you have the EPP code, log in to your Hostek.com billing account at http://cp.hostek.com&lt;br /&gt;
#Click the ''''Order'''' link in the ''''Quick Navigation'''' section&lt;br /&gt;
#On the next page, click the ''''Transfer Domain'''' link&lt;br /&gt;
#Now you can enter your domain name and click the 'Check Availability' button to continue&lt;br /&gt;
#Make sure the domain says it is available for transfer and click the ''''Add to cart'''' button to proceed with the order&lt;br /&gt;
#Here you will enter the domain's EPP code, and if you wish, select the option for ''''Domain Privacy''''. Also, be sure to enter your Hostek.com name servers if you want the domain to point to our servers after the transfer completes.&lt;br /&gt;
#Now you will be shown your order details. Please verify they are correct and click the ''''Check Out'''' button to place the order. When you pay the invoice that is generated, our Sales team will verify the order details and initiate the domain name transfer.&lt;br /&gt;
#After our team initiates the domain name transfer, you will receive a transfer approval email at the email address you specified in the domain's contact details. (The approval email is sent from OpenSRS.com, our registrar)&lt;br /&gt;
#You will need to approve the email from OpenSRS.com and re-enter the EPP code if they ask you to. The domain name transfer will complete within 7 days after you approve the transfer.&lt;br /&gt;
&lt;br /&gt;
==Transfer Your Domain to a Different Registrar==&lt;br /&gt;
A registrar transfer is the moving a domain name from one registrar to another. A registrar is the company that actually registers a domain name.&lt;br /&gt;
#You will need to log into your billing control panel at https://cp.hostek.com&lt;br /&gt;
#Click on the domains drop-down menu and click &amp;quot;My Domains&amp;quot;.&lt;br /&gt;
#Scroll down to your domain name and click &amp;quot;Manage Domain&amp;quot;&lt;br /&gt;
#Click the &amp;quot;Registrar Lock&amp;quot; tab, then click the &amp;quot;Disable Registrar Lock&amp;quot; button.&lt;br /&gt;
#Click on the &amp;quot;Management Tools&amp;quot; drop-down menu and select &amp;quot;Contact Information&amp;quot;&lt;br /&gt;
#You will need to update the Admin contact email address to an email address that you can receive emails at and click &amp;quot;Save Changes&amp;quot;.&lt;br /&gt;
#Click &amp;quot;Managenemt Tools&amp;quot; drop-down and select &amp;quot;Get EPP Code&amp;quot;. This will display the EPP code that you will need to provide to the registrar you are transferring to.&lt;br /&gt;
#Once you have initiated the transfer with the registrar and provided the EPP code you will receive a transfer approval email at the email address you specified.&lt;br /&gt;
&lt;br /&gt;
==How to update domain nameservers in WHMCS==&lt;br /&gt;
#You will need to log into your billing control panel at http://cp.hostek.com. &lt;br /&gt;
#Click on '''My Domains''', in the '''Domains''' tab at the menu bar.&lt;br /&gt;
#Click on the '''Manage Domain''' tab to the right side of the domain.&lt;br /&gt;
#Click on the '''Register Lock''', then the '''Disable Register Lock''' tab. &lt;br /&gt;
#Next, click on '''Nameservers''', update the Nameservers and click one the '''Change Nameservers''' tab.&lt;br /&gt;
#You will then need to lock the domain back at the &amp;quot;Register Lock''' location.&lt;br /&gt;
*NOTE: The registrar lock must be unchecked to make these changes.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Register Nameservers==&lt;br /&gt;
If you registered your domain name with Hostek and want to register your own nameservers.&lt;br /&gt;
&lt;br /&gt;
#Create A records pointing to the IP address of the DNS servers you will mirror.&lt;br /&gt;
#*Example: ns1.your-domian.com (Name) &amp;gt;&amp;gt; A (Record Type) &amp;gt;&amp;gt; 123.123.123.123 (ip address)&lt;br /&gt;
#Submit a support request for the login details for manually editing your registration information including the control to register Name Servers and reference this article.&lt;br /&gt;
&lt;br /&gt;
==Unlocking Domains at other registrars - Video Tutorials==&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_000domains.html Transferring domain names away from 000domains.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_123reg.html Transferring domain names away from 123-reg.co.uk]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_1and1.html Transferring domain names away from 1and1.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_domainsite.html Transferring domain names away from domainsite.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_dotster.html Transferring domain names away from dotster.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_dynadot.html Transferring domain names away from dynadot.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_enom.html Transferring domain names away from enom.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_godaddy.html Transferring domain names away from godaddy.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_itsyourdomain.html Transferring domain names away from itsyourdomain.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_melbourneit.html Transferring domain names away from melbourneit.com.au]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_namebargain.html Transferring domain names away from namebargain.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_namecheap.html Transferring domain names away from namecheap.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_netfirms.html Transferring domain names away from netfirms.ca]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_netsol.html Transferring domain names away from networksolutions.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_opensrs.html Transferring domain names away from opensrs.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_regfly.html Transferring domain names away from registerfly.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_register.html Transferring domain names away from register.com]&lt;br /&gt;
&lt;br /&gt;
[http://hostek.com/tutorials/dns_transfer_stargate.html Transferring domain names away from stargate.com]&lt;br /&gt;
&lt;br /&gt;
==Renewing Your Domain Name==&lt;br /&gt;
#If auto-renew is enabled for the domain an invoice will be generated 14 days before the expiration date. You can complete the renewal by paying the invoice before the expiration date or it will automatically bill on the actual due date. Note if your payment method is Paypal you will need to pay your invoice either before or on expiration date.&lt;br /&gt;
#If you want to renew it prior to the 2 weeks you will need to log into your billing control panel at http://cp.hostek.com, click on '''My Domains,''' then click on the gray button that says '''Manage Domain''' next to the domain you wish to renew and then click on '''Renew Now''' next to Recurring Amount in the Information page.&lt;br /&gt;
#This will create an invoice which you will need to go and pay to have the domain renewed. &lt;br /&gt;
#If auto-renew is disabled for the domain then click on the renew button. This will generate an invoice for the domain renewal. Once the invoice has been paid the domain will be renewed.&lt;br /&gt;
*If you wish to let the domain expire then click on the &amp;quot;Disable Auto Renew&amp;quot;'''Bold text''' NOTE Once auto renew is disabled an invoice will not generate for the domain and it will expire.&lt;br /&gt;
*If you disabled auto renew during the 14 days before the expiration date and wish to renew the domain name please click on the &amp;quot;'''Renew Domain'''&amp;quot; icon. (Not &amp;quot;Enable Auto Renew&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
==Domain Redemption Period==&lt;br /&gt;
*If the domain expires it may still be maintained in the registration database for a 5-day* grace period where it can be renewed at the normal renewal price. During this time all services such as hosting or email will not be active.&lt;br /&gt;
*After the grace period it will be deactivated and placed into a 30-day* Redemption Period. The cost to get a domain name out of redemption period is $110.00.&lt;br /&gt;
*Once the Redemption Period has elapsed the domain may be registered by another party. &lt;br /&gt;
*If your domain is in redemption period and you need to have it renewed. The cost to get a domain name out of redemption period is $110.00&lt;br /&gt;
*Here is a link to pay for the domain redemption  https://cp.hostek.com/cart.php?a=add&amp;amp;pid=286&lt;br /&gt;
&lt;br /&gt;
==Push Domains==&lt;br /&gt;
*This option means that domains registered in one Opensrs reseller account can be transferred over to another Opensrs reseller without being renewed for another year.&lt;br /&gt;
*In order for another reseller to push domains to our account, we need to authorize that reseller by adding their username to our allow list. Without this, any attempt to push domains to your account will fail.&lt;br /&gt;
*If you are transferring 1 - 10 domains from the reseller you are under to ours we can handle this for you. All we need is your resellers username and you will need ours. Please request and provide this information in a ticket by sending a email to support@hostek.com&lt;br /&gt;
*If you are transferring over 10 domains to us you will need to order each one from your client control panel at https://cp.hostek.com/clientarea.php. (If there is more then 10 you will have to order each domain separately and each one will be charged as a renewal and renewed for another year.)&lt;br /&gt;
*If you have a reseller account please contact us about our sub-reseller program. &lt;br /&gt;
&lt;br /&gt;
==How to get the EPP code==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;An EPP code is the authorization code that will allow you to initiate a transfer of your domain name from another registrar. Each registrar handles these slightly different. Here is the general process:&amp;lt;/p&amp;gt;&lt;br /&gt;
*Login to your current registrar that your domain is currently registered at&lt;br /&gt;
*Find the domain management section&lt;br /&gt;
*Make sure your domain name is unlocked&lt;br /&gt;
*Make sure that the admin contact email address is set to something that you have access too&lt;br /&gt;
*Now request EPP code (authorization code).  You should have a button or a link in the domain management section to do so&lt;br /&gt;
*The registrar will email the EPP code to the admin contact email address that is set for your domain. &lt;br /&gt;
*If you have problems obtaining it, please contact your registrar.&lt;br /&gt;
&lt;br /&gt;
==Order Requirements==&lt;br /&gt;
&lt;br /&gt;
*In order to have a product with us, the domain name's structure must be completely lowercase.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Sales]]&lt;br /&gt;
[[Category:Domain-Names]]&lt;/div&gt;</summary>
		<author><name>Chrisw</name></author>	</entry>

	</feed>