<?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=Daniellem</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=Daniellem"/>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/Special:Contributions/Daniellem"/>
		<updated>2026-05-05T05:35:56Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.24.2</generator>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Testing_Your_Web_Site_Before_Changing_DNS&amp;diff=3831</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=3831"/>
				<updated>2019-05-13T15:58:13Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: /* Introduction */&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. The '''hosts''' file essentially acts as a custom configuration for you only. After we help you configure it, it will sit between your computer and the Internet and override what is currently set up on the Internet with the custom configuration you have in said file. This is why you can access your website before DNS has propagated, or even before DNS has been changed at all.&lt;br /&gt;
&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/ 8 /10 )====&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;
##Windows might ask if you want to let Notepad have administrator privileges, you'll click on &amp;quot;Yes&amp;quot;.&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/ 8 /10''':&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 '''0.0.0.0'''.&lt;br /&gt;
##If you get an error when you go to save the file, you might need to temporarily disable any Anti-Virus running while you make this change. (Normally you don't want anyone or anything modifying this file.)&lt;br /&gt;
#*Where you will replace &amp;quot;'''0.0.0.0'''&amp;quot; with the IP Address of your site in our system. The IP Address that you need to use can be found in your cPanel, WCP, or New Account Information email.&lt;br /&gt;
&amp;lt;pre&amp;gt;0.0.0.0 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 '''0.0.0.0'''.&lt;br /&gt;
#*Where you will replace &amp;quot;'''0.0.0.0'''&amp;quot; with the IP Address of your site in our system. The IP Address that you need to use can be found in your cPanel, WCP, or New Account Information email.&lt;br /&gt;
&amp;lt;pre&amp;gt;0.0.0.0 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 '''0.0.0.0'''.&lt;br /&gt;
#*Where you will replace &amp;quot;'''0.0.0.0'''&amp;quot; with the IP Address of your site in our system. The IP Address that you need to use can be found in your cPanel, WCP, or New Account Information email.&lt;br /&gt;
&amp;lt;pre&amp;gt;0.0.0.0 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>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=MySQL_remote_access&amp;diff=3830</id>
		<title>MySQL remote access</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=MySQL_remote_access&amp;diff=3830"/>
				<updated>2019-04-22T21:27:12Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: /* Restricting All Access to MySQL Root From Remote Addresses */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
===Windows VPS - Unable to connect to mysql remotely===&lt;br /&gt;
&lt;br /&gt;
#Verify you have port 3306 open in the VPS firewall. You can open it following the directions in this wiki: [[MySQL_remote_access_for_root_user#Granting_remote_access_to_root_user|Granting remote access to MySQL root user]]&lt;br /&gt;
#Verify any [https://wiki.hostek.com/Firewall_Options_-_VPS/Dedicated#Restricting_Access_to_a_Port restrictions for access based on IP] in the Windows Firewall, this may be locked down to hostek.com management servers only. You will need to add your IP as an allowed IP. To find your IP address, visit http://hostek.com/ip, and add to the &amp;quot;scope&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How to verify what hosts a user can connect from===&lt;br /&gt;
#For Windows VPSs, log into your VPS via RDP.  For Linux VPSs, log into your VPS via SSH&lt;br /&gt;
#Open a mysql command prompt&lt;br /&gt;
#*On Linux, just run the command '''mysql -u root -p'''.  You will be prompted for the mysql root password.&lt;br /&gt;
#*On Windows, open a command prompt and run the command '''mysql -u root -p'''.  You will be prompted for the mysql root password.&lt;br /&gt;
#You should now be at a mysql command prompt.  Run the following commands in order:&lt;br /&gt;
#:''use mysql'';&lt;br /&gt;
#:''select user,host from user where user='username';&lt;br /&gt;
#*So for example, you want to verify what hosts the user ''foo'' can connect from.  The command sequence would be:&lt;br /&gt;
#:''use mysql'';&lt;br /&gt;
#:''select user,host from user where user='foo';&lt;br /&gt;
&lt;br /&gt;
===Granting remote access to root user===&lt;br /&gt;
To grant remote  access to the mysql root user on your VPS, follow this procedure:&lt;br /&gt;
&lt;br /&gt;
#For Windows VPSs, log into your VPS via RDP.  For Linux VPSs, log into your VPS via SSH&lt;br /&gt;
#Open a mysql command prompt&lt;br /&gt;
#*On Linux, just run the command '''mysql -u root -p'''.  You will be prompted for the mysql root password.&lt;br /&gt;
#*On Windows, open a command prompt and run the command '''mysql -u root -p'''.  You will be prompted for the mysql root password.&lt;br /&gt;
#You should now be at a mysql command prompt.  Run the following commands in order:&lt;br /&gt;
#:''use mysql'';&lt;br /&gt;
#:''GRANT ALL PRIVILEGES ON *.* TO 'root'@'REMOTE_IP' IDENTIFIED BY 'PASSWORD' WITH GRANT OPTION;''&lt;br /&gt;
#:''flush privileges''&lt;br /&gt;
#*So for example, the remote public IP address you are connecting from is 1.2.3.4 and the mysql password is &amp;quot;WEON#@fasdpnq23?$$@&amp;quot;.  The command sequence you would run would be:&lt;br /&gt;
#:''use mysql'';&lt;br /&gt;
#:''GRANT ALL PRIVILEGES ON *.* TO 'root'@'1.2.3.4' IDENTIFIED BY 'WEON#@fasdpnq23?$$@' WITH GRANT OPTION;''&lt;br /&gt;
#:''flush privileges''&lt;br /&gt;
#*[[http://hostek.com/ip Click here]] to determine what your public IP address is.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please not that it is not advisable to use the '''root''' username for admin purposes, as this is the default and easily guessed by potential attackers.  For improved security, it is advisable to use a different username for administrative purposes (you should also avoid using '''admin''' or '''administrator''').  There is no technical reason to use '''root''' as the admin username for mysql.&lt;br /&gt;
&lt;br /&gt;
===Restricting ALL Remote Access to MySQL===&lt;br /&gt;
&lt;br /&gt;
There are two simple ways to disable access to the 'root' MySQL user from all external connections. In this section, we'll go over both methods and how to implement them.&lt;br /&gt;
&lt;br /&gt;
'''Method #1: Restricting via Firewall'''&lt;br /&gt;
&lt;br /&gt;
The first method is simple for both Windows and Linux VPSs. It effectively blocks off the port used for MySQL transactions to the outside world so that MySQL will only work for requests inside the server.&lt;br /&gt;
&lt;br /&gt;
On Windows: &lt;br /&gt;
#Connect via RDP to your VPS, then click the Start icon and search '''Windows Defender Firewall with Advanced Security'''. Click the result.&lt;br /&gt;
#Click the '''Inbound Rules''' tab on the top-left. Under the list of '''Inbound Rules''', there should be one entitled '''MySQL'''. Double-click it.&lt;br /&gt;
#On the new pop-up, click the checkmark next to '''Enabled''' to disable the rule and close off external access to your server's MySQL port. &lt;br /&gt;
#Click '''OK''' to save your changes.&lt;br /&gt;
&lt;br /&gt;
On Linux/cPanel:&lt;br /&gt;
#After logging in to WHM, search for '''ConfigServer Security &amp;amp; Firewall''' at the top-left. Click the result.&lt;br /&gt;
#Scroll down until you find a section called '''Firewall Configuration''' and click it.&lt;br /&gt;
#Scroll down on the new page until you see a section called '''IPv4 Port Settings'''. In this section, you should see a box next to the letters '''TCP_IN'''.&lt;br /&gt;
#Search through the numbers/ports in that box until you find '''3306'''. Delete it and the comma after it to close off external access to your server's MySQL port.&lt;br /&gt;
#Scroll all the way down to the bottom of the page and click '''Change'''. On the new page, click '''Restart csf+lfd''' to apply your changes.&lt;br /&gt;
&lt;br /&gt;
'''Method #2: Restricting via MySQL Configuration'''&lt;br /&gt;
&lt;br /&gt;
This method leaves the firewall alone and instead uses the 'skip-networking' command in MySQL that tells the service to not listen for incoming connections at all.&lt;br /&gt;
&lt;br /&gt;
On Windows:&lt;br /&gt;
#Connect via RDP to your VPS, then click the '''Start''' icon. Search for '''Services''' and click the result.&lt;br /&gt;
#Scroll through this list until you see a service labeled '''MySQL'''. Right-click and choose '''Properties'''.&lt;br /&gt;
#You should see a line that says '''Path to executable:'''. Under this path, look for the text '''--defaults-file='''. This is the path to your MySQL configuration file. Keep the '''Services''' window open. &lt;br /&gt;
#Open a new Windows File Explorer window and navigate to the path of the MySQL configuration file you found in step #3. For example, '''C:\MySQL\my.ini'''. The file should always be named '''my.ini'''. Edit this file.&lt;br /&gt;
#Under the text '''[mysqld]''', enter the following line: '''skip-networking'''. Save the file, and switch back to your '''Services''' window.&lt;br /&gt;
#Restart the MySQL service to save your changes by right-clicking it and choosing '''Restart'''.&lt;br /&gt;
&lt;br /&gt;
On Linux/cPanel:&lt;br /&gt;
#Log into your server via SSH.&lt;br /&gt;
#Edit the '''/etc/my.cnf''' file by typing ''nano /etc/my.cnf''&lt;br /&gt;
#You should see the text '''[mysqld]''' at the top of the file. Right under this text, insert the following line: '''skip-networking'''. &lt;br /&gt;
#Save the file by pressing '''CTRL+O'''. Hit enter, then press '''CTRL+X''' to close the file.&lt;br /&gt;
#Restart the MySQL service to apply your changes with the command '''service mysql restart'''. Note: If you get an error, try using the '''service mysqld restart''' or '''service mariadb restart''' commands.&lt;br /&gt;
&lt;br /&gt;
[[Category:VPS]]&lt;br /&gt;
[[category:Databases-MySQL]]&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=MySQL_remote_access&amp;diff=3829</id>
		<title>MySQL remote access</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=MySQL_remote_access&amp;diff=3829"/>
				<updated>2019-04-22T21:26:20Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
===Windows VPS - Unable to connect to mysql remotely===&lt;br /&gt;
&lt;br /&gt;
#Verify you have port 3306 open in the VPS firewall. You can open it following the directions in this wiki: [[MySQL_remote_access_for_root_user#Granting_remote_access_to_root_user|Granting remote access to MySQL root user]]&lt;br /&gt;
#Verify any [https://wiki.hostek.com/Firewall_Options_-_VPS/Dedicated#Restricting_Access_to_a_Port restrictions for access based on IP] in the Windows Firewall, this may be locked down to hostek.com management servers only. You will need to add your IP as an allowed IP. To find your IP address, visit http://hostek.com/ip, and add to the &amp;quot;scope&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
===How to verify what hosts a user can connect from===&lt;br /&gt;
#For Windows VPSs, log into your VPS via RDP.  For Linux VPSs, log into your VPS via SSH&lt;br /&gt;
#Open a mysql command prompt&lt;br /&gt;
#*On Linux, just run the command '''mysql -u root -p'''.  You will be prompted for the mysql root password.&lt;br /&gt;
#*On Windows, open a command prompt and run the command '''mysql -u root -p'''.  You will be prompted for the mysql root password.&lt;br /&gt;
#You should now be at a mysql command prompt.  Run the following commands in order:&lt;br /&gt;
#:''use mysql'';&lt;br /&gt;
#:''select user,host from user where user='username';&lt;br /&gt;
#*So for example, you want to verify what hosts the user ''foo'' can connect from.  The command sequence would be:&lt;br /&gt;
#:''use mysql'';&lt;br /&gt;
#:''select user,host from user where user='foo';&lt;br /&gt;
&lt;br /&gt;
===Granting remote access to root user===&lt;br /&gt;
To grant remote  access to the mysql root user on your VPS, follow this procedure:&lt;br /&gt;
&lt;br /&gt;
#For Windows VPSs, log into your VPS via RDP.  For Linux VPSs, log into your VPS via SSH&lt;br /&gt;
#Open a mysql command prompt&lt;br /&gt;
#*On Linux, just run the command '''mysql -u root -p'''.  You will be prompted for the mysql root password.&lt;br /&gt;
#*On Windows, open a command prompt and run the command '''mysql -u root -p'''.  You will be prompted for the mysql root password.&lt;br /&gt;
#You should now be at a mysql command prompt.  Run the following commands in order:&lt;br /&gt;
#:''use mysql'';&lt;br /&gt;
#:''GRANT ALL PRIVILEGES ON *.* TO 'root'@'REMOTE_IP' IDENTIFIED BY 'PASSWORD' WITH GRANT OPTION;''&lt;br /&gt;
#:''flush privileges''&lt;br /&gt;
#*So for example, the remote public IP address you are connecting from is 1.2.3.4 and the mysql password is &amp;quot;WEON#@fasdpnq23?$$@&amp;quot;.  The command sequence you would run would be:&lt;br /&gt;
#:''use mysql'';&lt;br /&gt;
#:''GRANT ALL PRIVILEGES ON *.* TO 'root'@'1.2.3.4' IDENTIFIED BY 'WEON#@fasdpnq23?$$@' WITH GRANT OPTION;''&lt;br /&gt;
#:''flush privileges''&lt;br /&gt;
#*[[http://hostek.com/ip Click here]] to determine what your public IP address is.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Please not that it is not advisable to use the '''root''' username for admin purposes, as this is the default and easily guessed by potential attackers.  For improved security, it is advisable to use a different username for administrative purposes (you should also avoid using '''admin''' or '''administrator''').  There is no technical reason to use '''root''' as the admin username for mysql.&lt;br /&gt;
&lt;br /&gt;
===Restricting All Access to MySQL Root From Remote Addresses===&lt;br /&gt;
&lt;br /&gt;
There are two simple ways to disable access to the 'root' MySQL user from all external connections. In this section, we'll go over both methods and how to implement them.&lt;br /&gt;
&lt;br /&gt;
'''Method #1: Restricting via Firewall'''&lt;br /&gt;
&lt;br /&gt;
The first method is simple for both Windows and Linux VPSs. It effectively blocks off the port used for MySQL transactions to the outside world so that MySQL will only work for requests inside the server.&lt;br /&gt;
&lt;br /&gt;
On Windows: &lt;br /&gt;
&lt;br /&gt;
#Connect via RDP to your VPS, then click the Start icon and search '''Windows Defender Firewall with Advanced Security'''. Click the result.&lt;br /&gt;
#Click the '''Inbound Rules''' tab on the top-left. Under the list of '''Inbound Rules''', there should be one entitled '''MySQL'''. Double-click it.&lt;br /&gt;
#On the new pop-up, click the checkmark next to '''Enabled''' to disable the rule and close off external access to your server's MySQL port. &lt;br /&gt;
#Click '''OK''' to save your changes.&lt;br /&gt;
&lt;br /&gt;
On Linux/cPanel:&lt;br /&gt;
&lt;br /&gt;
#After logging in to WHM, search for '''ConfigServer Security &amp;amp; Firewall''' at the top-left. Click the result.&lt;br /&gt;
#Scroll down until you find a section called '''Firewall Configuration''' and click it.&lt;br /&gt;
#Scroll down on the new page until you see a section called '''IPv4 Port Settings'''. In this section, you should see a box next to the letters '''TCP_IN'''.&lt;br /&gt;
#Search through the numbers/ports in that box until you find '''3306'''. Delete it and the comma after it to close off external access to your server's MySQL port.&lt;br /&gt;
#Scroll all the way down to the bottom of the page and click '''Change'''. On the new page, click '''Restart csf+lfd''' to apply your changes.&lt;br /&gt;
&lt;br /&gt;
'''Method #2: Restricting via MySQL Configuration'''&lt;br /&gt;
&lt;br /&gt;
This method leaves the firewall alone and instead uses the 'skip-networking' command in MySQL that tells the service to not listen for incoming connections at all.&lt;br /&gt;
&lt;br /&gt;
On Windows:&lt;br /&gt;
#Connect via RDP to your VPS, then click the '''Start''' icon. Search for '''Services''' and click the result.&lt;br /&gt;
#Scroll through this list until you see a service labeled '''MySQL'''. Right-click and choose '''Properties'''.&lt;br /&gt;
#You should see a line that says '''Path to executable:'''. Under this path, look for the text '''--defaults-file='''. This is the path to your MySQL configuration file. Keep the '''Services''' window open. &lt;br /&gt;
#Open a new Windows File Explorer window and navigate to the path of the MySQL configuration file you found in step #3. For example, '''C:\MySQL\my.ini'''. The file should always be named '''my.ini'''. Edit this file.&lt;br /&gt;
#Under the text '''[mysqld]''', enter the following line: '''skip-networking'''. Save the file, and switch back to your '''Services''' window.&lt;br /&gt;
#Restart the MySQL service to save your changes by right-clicking it and choosing '''Restart'''.&lt;br /&gt;
&lt;br /&gt;
On Linux/cPanel:&lt;br /&gt;
#Log into your server via SSH.&lt;br /&gt;
#Edit the '''/etc/my.cnf''' file by typing ''nano /etc/my.cnf''&lt;br /&gt;
#You should see the text '''[mysqld]''' at the top of the file. Right under this text, insert the following line: '''skip-networking'''. &lt;br /&gt;
#Save the file by pressing '''CTRL+O'''. Hit enter, then press '''CTRL+X''' to close the file.&lt;br /&gt;
#Restart the MySQL service to apply your changes with the command '''service mysql restart'''. Note: If you get an error, try using the '''service mysqld restart''' or '''service mariadb restart''' commands.&lt;br /&gt;
&lt;br /&gt;
[[Category:VPS]]&lt;br /&gt;
[[category:Databases-MySQL]]&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=CloudLinux&amp;diff=3828</id>
		<title>CloudLinux</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=CloudLinux&amp;diff=3828"/>
				<updated>2019-04-09T19:21:34Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
== What is CloudLinux ==&lt;br /&gt;
* More stable - Less downtime&lt;br /&gt;
* More secure&lt;br /&gt;
&lt;br /&gt;
CloudLinux is a Kernel-level technology that helps provide for a more stable hosting environment.   This is accomplished by protecting your site against the bad neighbor effect. What this means is that CloudLinux will prevent a single site from crashing a server, making your site unresponsive.  When a single customer's site starts consuming too much of the generous amount of server resources, CloudLinux will throttle just that site to allow it to continue operating up to a safe server level, while at the same time fully protecting your site from 'bad neighbor'.&lt;br /&gt;
&lt;br /&gt;
==CloudLinux CageFS Software==&lt;br /&gt;
&lt;br /&gt;
CageFS further increases security on top of the kernel-level benefits described above. It is a virtualized file system and a set of tools to contain each user in its own 'cage'. Once installed, each account on the server will have its own fully functional CageFS, with all the system files, tools, etc. With CageFS, only safe binaries are available to the user. Said user will not see any other accounts on the server and would have no way to detect the presence of other users &amp;amp; their user names on the server. CageFS also prevents a user from seeing server configuration files, such as Apache config files.&lt;br /&gt;
&lt;br /&gt;
At the same time, the user's environment will be fully functional, and they should not feel in any way restricted. No adjustments to a user's scripts are needed. CageFS will cage any scripts execution done via Apache (suexec, suPHP, mod_fcgid, mod_fastcgi), LiteSpeed Web Server, Cron Jobs, SSH, and many more services.&lt;br /&gt;
&lt;br /&gt;
==Cloudlinux PHP Selector==&lt;br /&gt;
&lt;br /&gt;
Hostek.com uses CloudLinux on all of our shared servers, but a license to add it to a VPS is completely optional. One of the benefits (among the others outlined above) is access to something called 'cl.selector', AKA CloudLinux PHP selector. This allows us to change PHP versions on a per-site basis (for example, you might require PHP version 5.5 on one website, and 5.6 on another. Without cl.selector, this would not be possible) as well as change the PHP modules per-site. &lt;br /&gt;
&lt;br /&gt;
CloudLinux offers a very simple to install and use PHP selector. The first step in the install process is to set up a CloudLinux license. At current, these are $13.95 a month for our VPS customers. CloudLinux boasts not only accessibility via the various reliable plugins it offers (like the PHP selector) but increases server security, and allows you to limit resource usage across all accounts on your VPS with an in-WHM menu.&lt;br /&gt;
&lt;br /&gt;
To access the PHP selector, simply click the 'Select PHP Version' button in the control panel for any site. Once done, use the drop-down to select the PHP version you need and then click 'set as current'.&lt;br /&gt;
&lt;br /&gt;
Get with our support team today if you would like the CloudLinux PHP Selector to your VPS, or any of the other software included in the CloudLinux Suite.&lt;br /&gt;
&lt;br /&gt;
== What to do if your site is being throttled by CloudLinux ==&lt;br /&gt;
This would be a very rare situation.  However, if your site is the one potentially causing server problems (ie, the 'bad neighbor), which means your site is being throttled and seems to work sometimes and not others, or maybe just not working for the most part, this means your site is consuming too many server resources.  We have these throttle limits so high that if your site is hitting these limits, generally it should not be on any shared hosting environment.  &lt;br /&gt;
&lt;br /&gt;
The one exception to that would be if your site has hundreds or thousands of pages and a bot is heavily crawling your site.  If that is the case, we suggest you add a Crawl-Delay setting to your robots.txt file to slow down the bots.  Generally setting the Crawl-Delay to 10 will suffice.&lt;br /&gt;
&lt;br /&gt;
In the rare case that your site does get throttled by CloudLinux, we suggest looking at your log files to see what may be causing the problem.  If you just have a ton of traffic (ie, way beyound normal shared hosting) then you really need to get a VPS asap.  If you have a run-away script, then you should review the code for that to see if you can find/fix the problem.  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=LiteSpeed_Cache_(LSCache)&amp;diff=3821</id>
		<title>LiteSpeed Cache (LSCache)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=LiteSpeed_Cache_(LSCache)&amp;diff=3821"/>
				<updated>2018-08-09T15:09:53Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: /* Frequently Asked Questions */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
&lt;br /&gt;
LiteSpeed Cache (LSCache) is a server-level caching solution offered by an alternative to Apache called LiteSpeed. While LiteSpeed itself offers many advantages, LSCache works hand-in-hand with LiteSpeed to create an even more efficient and fast environment for your website. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==LiteSpeed Cache for WordPress (LSCWP)==&lt;br /&gt;
&lt;br /&gt;
LiteSpeed Cache for WordPress is a highly customizable web server-level caching plugin that utilizes LiteSpeed Cache. It is designed to dramatically increase WordPress site speed with little to no configuration necessary. As mentioned earlier, by caching at the web server layer, overhead is cut drastically allowing caching to be done more quickly and efficiently than in any other caching solution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Installation on a Shared cPanel Server===&lt;br /&gt;
&lt;br /&gt;
If you are on a shared cPanel/Linux server and have been directed to this page via e-mail, you are part of our beta LSCWP program! We strongly encourage you to take advantage of this free speed-boosting plugin. To do so, please perform the following steps:&lt;br /&gt;
&lt;br /&gt;
#Log into your WordPress website.&lt;br /&gt;
#Click 'Plugins' on the left.&amp;lt;br /&amp;gt;[[File:LSCache1r.png]]&lt;br /&gt;
#'''Very Important:''' Deactivate any other caching plugins like W3 Total Cache on your website, so that LiteSpeed Cache is the only WordPress caching plugin enabled. If you skip this step, LiteSpeed Cache will not work.&lt;br /&gt;
#Still within the WordPress admin, scroll down on the left until you see LiteSpeed Cache. Click that.&amp;lt;br /&amp;gt;[[File:LSCache2.png]]&lt;br /&gt;
#Click the 'DB Optimizer' tab on the new page.&amp;lt;br /&amp;gt;[[File:LSCache3.png]]&lt;br /&gt;
#Click the 'Clean All' button. After that, click 'Optimize Tables' button.&amp;lt;br /&amp;gt;[[File:LSCache4.png]]&lt;br /&gt;
#That's it! You have activated LiteSpeed Cache and optimized your WordPress database at the same time. You can either go through all the pages on your site so that they get cached, or you can let the automated crawler do so (see FAQ).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Installation on a VPS===&lt;br /&gt;
&lt;br /&gt;
''Note: This section is for clients whom have purchased their own private server. If your website is on a Hostek.com shared server, please read the section above.'' &lt;br /&gt;
&lt;br /&gt;
As a prerequisite, your server must have LiteSpeed with LSCache. To get this speed-boosting upgrade, [https://support.hostek.com/ please contact Hostek.com support by clicking here] and mention this wiki page.&lt;br /&gt;
&lt;br /&gt;
#Login into WHM for your server (http://&amp;lt;Your Server's IP&amp;gt;:2086/).&lt;br /&gt;
#At the top-left, type in 'LiteSpeed'. There should be one result (LiteSpeed Web Server), click it.&lt;br /&gt;
#Under 'LiteSpeed Cache for WordPress Management', click 'Manage Cache Installations'.&lt;br /&gt;
#In this section, click 'scan'. LiteSpeed will now scan for all of the WordPress sites on the server.&lt;br /&gt;
#Once the scan is finished, go back to the 'Manage Cache Installations' page. &lt;br /&gt;
#Simply check the box on the left for the websites(s) you want to enable LiteSpeed Cache for, then scroll back up and click 'Enable Selected'. This will install the LiteSpeed WordPress plugin and connect configs on the LiteSpeed back-end for the sites you chose.&lt;br /&gt;
#Next, log into the site's WordPress admin, then go to Plugins.&lt;br /&gt;
#'''Very Important:''' Deactivate any other caching plugins like W3 Total Cache on your website, so that LiteSpeed Cache is the only one. If you skip this step, LiteSpeed Cache will not work.&lt;br /&gt;
#Still within the WordPress admin, scroll down on the left until you see LiteSpeed Cache. Click that. &lt;br /&gt;
#Click the 'DB Optimizer' tab on this new page, then click the 'Clean All' button. After that, click 'Optimize Tables' button at the bottom-right. &lt;br /&gt;
#That's it! You have activated LiteSpeed Cache and optimized your WordPress database at the same time. You can either go through all the pages on your site so that they get cached, or you can let the automated crawler do so (see FAQ). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
&lt;br /&gt;
''Please Note: Other caching plugins are not compatible with LSCache. See final question for more details.''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''&amp;quot;Why is LSCWP/LSCache faster than other caching plugins?&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
Unlike most other caching plugins, LSCache works by caching pages on a server-level. It can do this because it has access to LiteSpeed, and through that the server as a whole. The first time a page loads it may load at normal rates, for that's the time it is getting placed into the server cache. After that, it will load almost instantly for everyone, as it is pulled from the server cache instead of the web server. Normal caching plugins work by caching pages on a client/browser level, which is much less efficient, as every person browsing the site will have to load the pages themselves before they are cached on their local machine instead of the server. &lt;br /&gt;
&lt;br /&gt;
'''&amp;quot;How do I configure LSCache?&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
You can modify a plethora of technical features by going to Plugins -&amp;gt; LiteSpeed Cache -&amp;gt; Settings. There are many tabs of configuration variables you and your developers can modify at that location. This is not to say you need to-- LSCache comes out-of-the-box with many settings already configured to optimal values for most websites.&lt;br /&gt;
&lt;br /&gt;
'''&amp;quot;If a page is changed, will the changed be cached again automatically?&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
LSCache comes with what is called a ''crawler'' that checks each page of your website for changes. When it detects that a cached page is changed, it will re-cache the page automatically. It does this every 400 seconds, so changes you make will indeed quickly be cached once more. This 400 second value can be changed by going to Plugins -&amp;gt; LiteSpeed Cache -&amp;gt; Settings as mentioned in the previous question.&lt;br /&gt;
&lt;br /&gt;
'''&amp;quot;Is there a way to force a page to re-cache?&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
To 'force-reload' a page into the cache, all it will take is simply loading the page once through the browser. LSCache will detect that it hasn't been cached before (or if a different version of it was cached) and it will automatically update. The aforementioned crawler will also do this every 400 seconds.&lt;br /&gt;
&lt;br /&gt;
'''&amp;quot;Why Can't I use other caching plugins in conjunction with LSCache?&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
LSCache uses certain protocols that do not work when other caching plugins like W3 Total Cache are enabled. Please only enable one at a time, though for the reasons above we strongly suggest sticking with LSCache as your main WordPress caching solution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you have a question that is not listed, [https://support.hostek.com/ please feel free to contact Hostek.com support by clicking here.]&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=LiteSpeed_Cache_(LSCache)&amp;diff=3820</id>
		<title>LiteSpeed Cache (LSCache)</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=LiteSpeed_Cache_(LSCache)&amp;diff=3820"/>
				<updated>2018-06-27T19:11:50Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: /* Installation on a Shared cPanel/Linux Server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
&lt;br /&gt;
LiteSpeed Cache (LSCache) is a server-level caching solution offered by an alternative to Apache called LiteSpeed. While LiteSpeed itself offers many advantages, LSCache works hand-in-hand with LiteSpeed to create an even more efficient and fast environment for your website. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==LiteSpeed Cache for WordPress (LSCWP)==&lt;br /&gt;
&lt;br /&gt;
LiteSpeed Cache for WordPress is a highly customizable web server-level caching plugin that utilizes LiteSpeed Cache. It is designed to dramatically increase WordPress site speed with little to no configuration necessary. As mentioned earlier, by caching at the web server layer, overhead is cut drastically allowing caching to be done more quickly and efficiently than in any other caching solution.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Installation on a Shared cPanel Server===&lt;br /&gt;
&lt;br /&gt;
If you are on a shared cPanel/Linux server and have been directed to this page via e-mail, you are part of our beta LSCWP program! We strongly encourage you to take advantage of this free speed-boosting plugin. To do so, please perform the following steps:&lt;br /&gt;
&lt;br /&gt;
#Log into your WordPress website.&lt;br /&gt;
#Click 'Plugins' on the left.&amp;lt;br /&amp;gt;[[File:LSCache1r.png]]&lt;br /&gt;
#'''Very Important:''' Deactivate any other caching plugins like W3 Total Cache on your website, so that LiteSpeed Cache is the only WordPress caching plugin enabled. If you skip this step, LiteSpeed Cache will not work.&lt;br /&gt;
#Still within the WordPress admin, scroll down on the left until you see LiteSpeed Cache. Click that.&amp;lt;br /&amp;gt;[[File:LSCache2.png]]&lt;br /&gt;
#Click the 'DB Optimizer' tab on the new page.&amp;lt;br /&amp;gt;[[File:LSCache3.png]]&lt;br /&gt;
#Click the 'Clean All' button. After that, click 'Optimize Tables' button.&amp;lt;br /&amp;gt;[[File:LSCache4.png]]&lt;br /&gt;
#That's it! You have activated LiteSpeed Cache and optimized your WordPress database at the same time. You can either go through all the pages on your site so that they get cached, or you can let the automated crawler do so (see FAQ).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
===Installation on a VPS===&lt;br /&gt;
&lt;br /&gt;
''Note: This section is for clients whom have purchased their own private server. If your website is on a Hostek.com shared server, please read the section above.'' &lt;br /&gt;
&lt;br /&gt;
As a prerequisite, your server must have LiteSpeed with LSCache. To get this speed-boosting upgrade, [https://support.hostek.com/ please contact Hostek.com support by clicking here] and mention this wiki page.&lt;br /&gt;
&lt;br /&gt;
#Login into WHM for your server (http://&amp;lt;Your Server's IP&amp;gt;:2086/).&lt;br /&gt;
#At the top-left, type in 'LiteSpeed'. There should be one result (LiteSpeed Web Server), click it.&lt;br /&gt;
#Under 'LiteSpeed Cache for WordPress Management', click 'Manage Cache Installations'.&lt;br /&gt;
#In this section, click 'scan'. LiteSpeed will now scan for all of the WordPress sites on the server.&lt;br /&gt;
#Once the scan is finished, go back to the 'Manage Cache Installations' page. &lt;br /&gt;
#Simply check the box on the left for the websites(s) you want to enable LiteSpeed Cache for, then scroll back up and click 'Enable Selected'. This will install the LiteSpeed WordPress plugin and connect configs on the LiteSpeed back-end for the sites you chose.&lt;br /&gt;
#Next, log into the site's WordPress admin, then go to Plugins.&lt;br /&gt;
#'''Very Important:''' Deactivate any other caching plugins like W3 Total Cache on your website, so that LiteSpeed Cache is the only one. If you skip this step, LiteSpeed Cache will not work.&lt;br /&gt;
#Still within the WordPress admin, scroll down on the left until you see LiteSpeed Cache. Click that. &lt;br /&gt;
#Click the 'DB Optimizer' tab on this new page, then click the 'Clean All' button. After that, click 'Optimize Tables' button at the bottom-right. &lt;br /&gt;
#That's it! You have activated LiteSpeed Cache and optimized your WordPress database at the same time. You can either go through all the pages on your site so that they get cached, or you can let the automated crawler do so (see FAQ). &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
=== Frequently Asked Questions ===&lt;br /&gt;
&lt;br /&gt;
'''&amp;quot;Why is LSCWP faster than other caching plugins?&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
Unlike most other caching plugins, LSCache works by caching pages on a server-level. It can do this because it has access to LiteSpeed, and through that the server as a whole. The first time a page loads it may load at normal rates, for that's the time it is getting placed into the server cache. After that, it will load almost instantly for everyone, as it is pulled from the server cache instead of the web server. Normal caching plugins work by caching pages on a client/browser level, which is much less efficient, as every person browsing the site will have to load the pages themselves before they are cached on their local machine instead of the server. &lt;br /&gt;
&lt;br /&gt;
'''&amp;quot;If a page is changed, will the changed be cached again automatically?&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
LSCache comes with what is called a '''crawler''' that checks each page of your website for changes. When it detects that a cached page is changed, it will re-cache the page automatically. It does this every 400 seconds, so changes you make will indeed quickly be cached once more. You can modify this 400-second value as well as a plethora of other technical features by going to Plugins -&amp;gt; LiteSpeed Cache -&amp;gt; Settings. There are many tabs of configuration variables you and your developers can modify at that location. This is not to say you need to-- LSCWP comes out-of-the-box with all settings configured at optimal values for most websites.&lt;br /&gt;
&lt;br /&gt;
'''&amp;quot;Is there a way to force a page to re-cache?&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
To 'force-reload' a page into the cache, all it will take is simply loading the page once through the browser. LSCache will detect that it hasn't been cached before (or if a different version of it was cached) and it will automatically update. The aforementioned crawler will also do this every 400 seconds.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
If you have a question that is not listed here, [https://support.hostek.com/ please feel free to contact Hostek.com support by clicking here.]&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=FileZilla_FTP_Client&amp;diff=3167</id>
		<title>FileZilla FTP Client</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=FileZilla_FTP_Client&amp;diff=3167"/>
				<updated>2017-04-05T16:37:37Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: /* Downloading */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
&lt;br /&gt;
This guide will help you download, install, and set up the widely-used FileZilla FTP software. If you have any questions about any step of this process, [https://support.hostek.com/ please feel free to contact Hostek.com support by clicking here.]&lt;br /&gt;
&lt;br /&gt;
==Downloading==&lt;br /&gt;
&lt;br /&gt;
Picking the right version of FileZilla is rather simple. &lt;br /&gt;
&lt;br /&gt;
#First, we'll start by going to the download page here: &lt;br /&gt;
#*[https://filezilla-project.org/download.php?show_all=1 https://filezilla-project.org/download.php]&lt;br /&gt;
#The next step will depend on what operating system you have on your computer. If it is Windows, click the link under the bold title '''Windows (64bit)'''. If your operating system is Mac OS, click the link under the bold title '''Mac OS X'''.&lt;br /&gt;
#*'''Note:''' For this part of the guide, we'll be assuming that your operating system is Windows. Install and setup should be the extremely similar on Mac OS once FileZilla is downloaded, however.&lt;br /&gt;
#Since my computer is Windows, I've clicked the link titled 'FileZilla_3.25.1_win64-setup.exe' and it is now downloaded to my computer. Navigate to the location it was downloaded, then double-click to run the FileZilla installer.&lt;br /&gt;
&lt;br /&gt;
==Installing==&lt;br /&gt;
&lt;br /&gt;
#For the first step of the FileZilla installer, click 'I agree'. &lt;br /&gt;
#*[[File:FileZillaInstall1.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Next, click 'Only for me (username)', then click Next &amp;gt;.&lt;br /&gt;
#*[[File:FileZillaInstall2.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Next, ensure all the boxes in the image below are checked, then click Next &amp;gt;.&lt;br /&gt;
#*[[File:FileZillaInstall3.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Next, select the location you want to install FileZilla, or leave it at default. Click Next &amp;gt; when you are done.&lt;br /&gt;
#*[[File:FileZillaInstall4.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Then, choose the name of the Start Menu Folder, or leave it at default. Click Install when ready.&lt;br /&gt;
#*[[File:FileZillaInstall5.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#After ensuring the box 'Start FileZilla now' is checked, click Finish.&lt;br /&gt;
#*[[File:FileZillaInstall6.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Setting Up your First Domain==&lt;br /&gt;
 &lt;br /&gt;
#Click the button at the top-left of the window labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''1.'''&amp;lt;/span&amp;gt; in the image below.&lt;br /&gt;
#*[[File:FileZillaUsage1a.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Click on New Site as outlined in the image below.&lt;br /&gt;
#*[[File:FileZillaUsage2.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Refer to the following image, then the explanation of each labeled box below it.&lt;br /&gt;
#*[[File:FileZillaUsage3.png]]&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''1.'''&amp;lt;/span&amp;gt; - This will be the label for your website's FTP connection. Name it whatever you would like.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''2.'''&amp;lt;/span&amp;gt; - This is the Host IP of your website's FTP. You should be able to find this information in your website's 'New Account' e-mail Hostek.com sent when you registered with us.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''3.'''&amp;lt;/span&amp;gt; - This is the FTP protocol for your site. Keep it on the default 'FTP - File Transfer Protocol' for now.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''4.'''&amp;lt;/span&amp;gt; - This is the encryption for your FTP connection. Keep it on the default 'Use explicit FTP over TLS if available' for now.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''5.'''&amp;lt;/span&amp;gt; - This is how we're going to log into the FTP server. Select 'Normal' from the drop-down.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''6.'''&amp;lt;/span&amp;gt; - This is the FTP username for your website. You should be able to find this information in your website's 'New Account' e-mail Hostek.com sent when you registered with us.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''7.'''&amp;lt;/span&amp;gt; - This is the password for your FTP connection. As above, you should be able to find this information in your website's 'New Account' e-mail Hostek.com sent when you registered with us.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''8.'''&amp;lt;/span&amp;gt; - Once you've done the above, click this button labeled 'OK' to save.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Click the little arrow in the top-left as shown in the picture below, then click what you labeled your new site.&lt;br /&gt;
#*[[File:FileZillaUsage4.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#You may get a pop-up as seen below. This is just telling you that the FTP connection is secured by encryption. Make sure the box labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''1.'''&amp;lt;/span&amp;gt; is checked, then click OK.&lt;br /&gt;
#*[[File:FileZillaUsage5.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#You should now be connected to your website via FTP! See the image below for a brief explanation of the different areas inside FileZilla.&lt;br /&gt;
#*[[File:FileZillaUsage6.png]]&lt;br /&gt;
#**The box labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; is your computer's files. The box labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; is your site's files. You may drag and drop from &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; to &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; to upload files, or drag and drop from &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; to &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; to download files. &lt;br /&gt;
#**Use the box above &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; to navigate through your computer's files. Use the box above &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; to navigate through your site's files.&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=FileZilla_FTP_Client&amp;diff=3166</id>
		<title>FileZilla FTP Client</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=FileZilla_FTP_Client&amp;diff=3166"/>
				<updated>2017-04-05T16:36:34Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
&lt;br /&gt;
This guide will help you download, install, and set up the widely-used FileZilla FTP software. If you have any questions about any step of this process, [https://support.hostek.com/ please feel free to contact Hostek.com support by clicking here.]&lt;br /&gt;
&lt;br /&gt;
==Downloading==&lt;br /&gt;
&lt;br /&gt;
Picking the right version of FileZilla is rather simple. &lt;br /&gt;
&lt;br /&gt;
#First, we'll start by going to the download page here: &lt;br /&gt;
#*[https://filezilla-project.org/download.php?show_all=1 https://filezilla-project.org/download.php]&lt;br /&gt;
#The next step will depend on what operating system you have on your computer. If it is Windows, click the link under the bold title '''Windows (64bit)'''. If your operating system is Mac OS, click the link under the bold title '''Mac OS X'''.&lt;br /&gt;
#*'''Note:''' For this part of the guide, we'll be assuming that your operating system is Windows. &lt;br /&gt;
#Since my computer is Windows, I've clicked the link titled 'FileZilla_3.25.1_win64-setup.exe' and it is now downloaded to my computer. Navigate to the location it was downloaded, then double-click to run the FileZilla installer.&lt;br /&gt;
&lt;br /&gt;
==Installing==&lt;br /&gt;
&lt;br /&gt;
#For the first step of the FileZilla installer, click 'I agree'. &lt;br /&gt;
#*[[File:FileZillaInstall1.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Next, click 'Only for me (username)', then click Next &amp;gt;.&lt;br /&gt;
#*[[File:FileZillaInstall2.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Next, ensure all the boxes in the image below are checked, then click Next &amp;gt;.&lt;br /&gt;
#*[[File:FileZillaInstall3.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Next, select the location you want to install FileZilla, or leave it at default. Click Next &amp;gt; when you are done.&lt;br /&gt;
#*[[File:FileZillaInstall4.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Then, choose the name of the Start Menu Folder, or leave it at default. Click Install when ready.&lt;br /&gt;
#*[[File:FileZillaInstall5.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#After ensuring the box 'Start FileZilla now' is checked, click Finish.&lt;br /&gt;
#*[[File:FileZillaInstall6.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Setting Up your First Domain==&lt;br /&gt;
 &lt;br /&gt;
#Click the button at the top-left of the window labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''1.'''&amp;lt;/span&amp;gt; in the image below.&lt;br /&gt;
#*[[File:FileZillaUsage1a.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Click on New Site as outlined in the image below.&lt;br /&gt;
#*[[File:FileZillaUsage2.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Refer to the following image, then the explanation of each labeled box below it.&lt;br /&gt;
#*[[File:FileZillaUsage3.png]]&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''1.'''&amp;lt;/span&amp;gt; - This will be the label for your website's FTP connection. Name it whatever you would like.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''2.'''&amp;lt;/span&amp;gt; - This is the Host IP of your website's FTP. You should be able to find this information in your website's 'New Account' e-mail Hostek.com sent when you registered with us.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''3.'''&amp;lt;/span&amp;gt; - This is the FTP protocol for your site. Keep it on the default 'FTP - File Transfer Protocol' for now.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''4.'''&amp;lt;/span&amp;gt; - This is the encryption for your FTP connection. Keep it on the default 'Use explicit FTP over TLS if available' for now.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''5.'''&amp;lt;/span&amp;gt; - This is how we're going to log into the FTP server. Select 'Normal' from the drop-down.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''6.'''&amp;lt;/span&amp;gt; - This is the FTP username for your website. You should be able to find this information in your website's 'New Account' e-mail Hostek.com sent when you registered with us.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''7.'''&amp;lt;/span&amp;gt; - This is the password for your FTP connection. As above, you should be able to find this information in your website's 'New Account' e-mail Hostek.com sent when you registered with us.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''8.'''&amp;lt;/span&amp;gt; - Once you've done the above, click this button labeled 'OK' to save.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Click the little arrow in the top-left as shown in the picture below, then click what you labeled your new site.&lt;br /&gt;
#*[[File:FileZillaUsage4.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#You may get a pop-up as seen below. This is just telling you that the FTP connection is secured by encryption. Make sure the box labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''1.'''&amp;lt;/span&amp;gt; is checked, then click OK.&lt;br /&gt;
#*[[File:FileZillaUsage5.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#You should now be connected to your website via FTP! See the image below for a brief explanation of the different areas inside FileZilla.&lt;br /&gt;
#*[[File:FileZillaUsage6.png]]&lt;br /&gt;
#**The box labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; is your computer's files. The box labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; is your site's files. You may drag and drop from &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; to &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; to upload files, or drag and drop from &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; to &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; to download files. &lt;br /&gt;
#**Use the box above &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; to navigate through your computer's files. Use the box above &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; to navigate through your site's files.&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=FileZilla_FTP_Client&amp;diff=3165</id>
		<title>FileZilla FTP Client</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=FileZilla_FTP_Client&amp;diff=3165"/>
				<updated>2017-04-05T16:36:03Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: /* Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
&lt;br /&gt;
This guide will help you download, install, and set up the widely-used FileZilla FTP software. If you have any questions about any step of this process, [https://support.hostek.com/| please feel free to contact Hostek.com support by clicking here.]&lt;br /&gt;
&lt;br /&gt;
==Downloading==&lt;br /&gt;
&lt;br /&gt;
Picking the right version of FileZilla is rather simple. &lt;br /&gt;
&lt;br /&gt;
#First, we'll start by going to the download page here: &lt;br /&gt;
#*[https://filezilla-project.org/download.php?show_all=1 https://filezilla-project.org/download.php]&lt;br /&gt;
#The next step will depend on what operating system you have on your computer. If it is Windows, click the link under the bold title '''Windows (64bit)'''. If your operating system is Mac OS, click the link under the bold title '''Mac OS X'''.&lt;br /&gt;
#*'''Note:''' For this part of the guide, we'll be assuming that your operating system is Windows. &lt;br /&gt;
#Since my computer is Windows, I've clicked the link titled 'FileZilla_3.25.1_win64-setup.exe' and it is now downloaded to my computer. Navigate to the location it was downloaded, then double-click to run the FileZilla installer.&lt;br /&gt;
&lt;br /&gt;
==Installing==&lt;br /&gt;
&lt;br /&gt;
#For the first step of the FileZilla installer, click 'I agree'. &lt;br /&gt;
#*[[File:FileZillaInstall1.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Next, click 'Only for me (username)', then click Next &amp;gt;.&lt;br /&gt;
#*[[File:FileZillaInstall2.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Next, ensure all the boxes in the image below are checked, then click Next &amp;gt;.&lt;br /&gt;
#*[[File:FileZillaInstall3.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Next, select the location you want to install FileZilla, or leave it at default. Click Next &amp;gt; when you are done.&lt;br /&gt;
#*[[File:FileZillaInstall4.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Then, choose the name of the Start Menu Folder, or leave it at default. Click Install when ready.&lt;br /&gt;
#*[[File:FileZillaInstall5.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#After ensuring the box 'Start FileZilla now' is checked, click Finish.&lt;br /&gt;
#*[[File:FileZillaInstall6.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Setting Up your First Domain==&lt;br /&gt;
 &lt;br /&gt;
#Click the button at the top-left of the window labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''1.'''&amp;lt;/span&amp;gt; in the image below.&lt;br /&gt;
#*[[File:FileZillaUsage1a.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Click on New Site as outlined in the image below.&lt;br /&gt;
#*[[File:FileZillaUsage2.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Refer to the following image, then the explanation of each labeled box below it.&lt;br /&gt;
#*[[File:FileZillaUsage3.png]]&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''1.'''&amp;lt;/span&amp;gt; - This will be the label for your website's FTP connection. Name it whatever you would like.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''2.'''&amp;lt;/span&amp;gt; - This is the Host IP of your website's FTP. You should be able to find this information in your website's 'New Account' e-mail Hostek.com sent when you registered with us.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''3.'''&amp;lt;/span&amp;gt; - This is the FTP protocol for your site. Keep it on the default 'FTP - File Transfer Protocol' for now.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''4.'''&amp;lt;/span&amp;gt; - This is the encryption for your FTP connection. Keep it on the default 'Use explicit FTP over TLS if available' for now.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''5.'''&amp;lt;/span&amp;gt; - This is how we're going to log into the FTP server. Select 'Normal' from the drop-down.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''6.'''&amp;lt;/span&amp;gt; - This is the FTP username for your website. You should be able to find this information in your website's 'New Account' e-mail Hostek.com sent when you registered with us.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''7.'''&amp;lt;/span&amp;gt; - This is the password for your FTP connection. As above, you should be able to find this information in your website's 'New Account' e-mail Hostek.com sent when you registered with us.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''8.'''&amp;lt;/span&amp;gt; - Once you've done the above, click this button labeled 'OK' to save.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Click the little arrow in the top-left as shown in the picture below, then click what you labeled your new site.&lt;br /&gt;
#*[[File:FileZillaUsage4.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#You may get a pop-up as seen below. This is just telling you that the FTP connection is secured by encryption. Make sure the box labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''1.'''&amp;lt;/span&amp;gt; is checked, then click OK.&lt;br /&gt;
#*[[File:FileZillaUsage5.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#You should now be connected to your website via FTP! See the image below for a brief explanation of the different areas inside FileZilla.&lt;br /&gt;
#*[[File:FileZillaUsage6.png]]&lt;br /&gt;
#**The box labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; is your computer's files. The box labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; is your site's files. You may drag and drop from &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; to &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; to upload files, or drag and drop from &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; to &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; to download files. &lt;br /&gt;
#**Use the box above &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; to navigate through your computer's files. Use the box above &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; to navigate through your site's files.&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=FileZilla_FTP_Client&amp;diff=3164</id>
		<title>FileZilla FTP Client</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=FileZilla_FTP_Client&amp;diff=3164"/>
				<updated>2017-04-05T16:31:00Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: /* Downloading */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
&lt;br /&gt;
This guide will help you download, install, and set up the widely-used FileZilla FTP software. If you have any questions about any step of this process, [http://support.hostek.com/| please feel free to contact Hostek.com support by clicking here.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Downloading==&lt;br /&gt;
&lt;br /&gt;
Picking the right version of FileZilla is rather simple. &lt;br /&gt;
&lt;br /&gt;
#First, we'll start by going to the download page here: &lt;br /&gt;
#*[https://filezilla-project.org/download.php?show_all=1 https://filezilla-project.org/download.php]&lt;br /&gt;
#The next step will depend on what operating system you have on your computer. If it is Windows, click the link under the bold title '''Windows (64bit)'''. If your operating system is Mac OS, click the link under the bold title '''Mac OS X'''.&lt;br /&gt;
#*'''Note:''' For this part of the guide, we'll be assuming that your operating system is Windows. &lt;br /&gt;
#Since my computer is Windows, I've clicked the link titled 'FileZilla_3.25.1_win64-setup.exe' and it is now downloaded to my computer. Navigate to the location it was downloaded, then double-click to run the FileZilla installer.&lt;br /&gt;
&lt;br /&gt;
==Installing==&lt;br /&gt;
&lt;br /&gt;
#For the first step of the FileZilla installer, click 'I agree'. &lt;br /&gt;
#*[[File:FileZillaInstall1.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Next, click 'Only for me (username)', then click Next &amp;gt;.&lt;br /&gt;
#*[[File:FileZillaInstall2.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Next, ensure all the boxes in the image below are checked, then click Next &amp;gt;.&lt;br /&gt;
#*[[File:FileZillaInstall3.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Next, select the location you want to install FileZilla, or leave it at default. Click Next &amp;gt; when you are done.&lt;br /&gt;
#*[[File:FileZillaInstall4.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Then, choose the name of the Start Menu Folder, or leave it at default. Click Install when ready.&lt;br /&gt;
#*[[File:FileZillaInstall5.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#After ensuring the box 'Start FileZilla now' is checked, click Finish.&lt;br /&gt;
#*[[File:FileZillaInstall6.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Setting Up your First Domain==&lt;br /&gt;
 &lt;br /&gt;
#Click the button at the top-left of the window labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''1.'''&amp;lt;/span&amp;gt; in the image below.&lt;br /&gt;
#*[[File:FileZillaUsage1a.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Click on New Site as outlined in the image below.&lt;br /&gt;
#*[[File:FileZillaUsage2.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Refer to the following image, then the explanation of each labeled box below it.&lt;br /&gt;
#*[[File:FileZillaUsage3.png]]&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''1.'''&amp;lt;/span&amp;gt; - This will be the label for your website's FTP connection. Name it whatever you would like.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''2.'''&amp;lt;/span&amp;gt; - This is the Host IP of your website's FTP. You should be able to find this information in your website's 'New Account' e-mail Hostek.com sent when you registered with us.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''3.'''&amp;lt;/span&amp;gt; - This is the FTP protocol for your site. Keep it on the default 'FTP - File Transfer Protocol' for now.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''4.'''&amp;lt;/span&amp;gt; - This is the encryption for your FTP connection. Keep it on the default 'Use explicit FTP over TLS if available' for now.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''5.'''&amp;lt;/span&amp;gt; - This is how we're going to log into the FTP server. Select 'Normal' from the drop-down.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''6.'''&amp;lt;/span&amp;gt; - This is the FTP username for your website. You should be able to find this information in your website's 'New Account' e-mail Hostek.com sent when you registered with us.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''7.'''&amp;lt;/span&amp;gt; - This is the password for your FTP connection. As above, you should be able to find this information in your website's 'New Account' e-mail Hostek.com sent when you registered with us.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''8.'''&amp;lt;/span&amp;gt; - Once you've done the above, click this button labeled 'OK' to save.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Click the little arrow in the top-left as shown in the picture below, then click what you labeled your new site.&lt;br /&gt;
#*[[File:FileZillaUsage4.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#You may get a pop-up as seen below. This is just telling you that the FTP connection is secured by encryption. Make sure the box labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''1.'''&amp;lt;/span&amp;gt; is checked, then click OK.&lt;br /&gt;
#*[[File:FileZillaUsage5.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#You should now be connected to your website via FTP! See the image below for a brief explanation of the different areas inside FileZilla.&lt;br /&gt;
#*[[File:FileZillaUsage6.png]]&lt;br /&gt;
#**The box labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; is your computer's files. The box labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; is your site's files. You may drag and drop from &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; to &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; to upload files, or drag and drop from &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; to &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; to download files. &lt;br /&gt;
#**Use the box above &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; to navigate through your computer's files. Use the box above &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; to navigate through your site's files.&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=FileZilla_FTP_Client&amp;diff=3163</id>
		<title>FileZilla FTP Client</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=FileZilla_FTP_Client&amp;diff=3163"/>
				<updated>2017-04-05T16:28:32Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: Created page with &amp;quot;==Summary==  This guide will help you download, install, and set up the widely-used FileZilla FTP software. If you have any questions about any step of this process, [http://s...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
&lt;br /&gt;
This guide will help you download, install, and set up the widely-used FileZilla FTP software. If you have any questions about any step of this process, [http://support.hostek.com/| please feel free to contact Hostek.com support by clicking here.]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Downloading==&lt;br /&gt;
&lt;br /&gt;
Picking the right version of FileZilla is rather simple. &lt;br /&gt;
&lt;br /&gt;
#First, we'll start by going to the download page here: &lt;br /&gt;
#*[https://filezilla-project.org/download.php?show_all=1 https://filezilla-project.org/download.php]&lt;br /&gt;
#The next step will depend on what operating system you have on your computer. If it is Windows, click the link under the bold title '''Windows (64bit)'''. If your operating system is Mac OS, click the link under the bold title '''Mac OS X'''.&lt;br /&gt;
#*'''Note:''' For this part of the guide, we'll be assuming that your operating system is Windows. Please see the Mac OS X section below if you're running an Apple Mac computer.&lt;br /&gt;
#Since my computer is Windows, I've clicked the link titled 'FileZilla_3.25.1_win64-setup.exe' and it is now downloaded to my computer. Navigate to the location it was downloaded, then double-click to run the FileZilla installer.&lt;br /&gt;
&lt;br /&gt;
==Installing==&lt;br /&gt;
&lt;br /&gt;
#For the first step of the FileZilla installer, click 'I agree'. &lt;br /&gt;
#*[[File:FileZillaInstall1.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Next, click 'Only for me (username)', then click Next &amp;gt;.&lt;br /&gt;
#*[[File:FileZillaInstall2.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Next, ensure all the boxes in the image below are checked, then click Next &amp;gt;.&lt;br /&gt;
#*[[File:FileZillaInstall3.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Next, select the location you want to install FileZilla, or leave it at default. Click Next &amp;gt; when you are done.&lt;br /&gt;
#*[[File:FileZillaInstall4.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Then, choose the name of the Start Menu Folder, or leave it at default. Click Install when ready.&lt;br /&gt;
#*[[File:FileZillaInstall5.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#After ensuring the box 'Start FileZilla now' is checked, click Finish.&lt;br /&gt;
#*[[File:FileZillaInstall6.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Setting Up your First Domain==&lt;br /&gt;
 &lt;br /&gt;
#Click the button at the top-left of the window labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''1.'''&amp;lt;/span&amp;gt; in the image below.&lt;br /&gt;
#*[[File:FileZillaUsage1a.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Click on New Site as outlined in the image below.&lt;br /&gt;
#*[[File:FileZillaUsage2.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Refer to the following image, then the explanation of each labeled box below it.&lt;br /&gt;
#*[[File:FileZillaUsage3.png]]&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''1.'''&amp;lt;/span&amp;gt; - This will be the label for your website's FTP connection. Name it whatever you would like.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''2.'''&amp;lt;/span&amp;gt; - This is the Host IP of your website's FTP. You should be able to find this information in your website's 'New Account' e-mail Hostek.com sent when you registered with us.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''3.'''&amp;lt;/span&amp;gt; - This is the FTP protocol for your site. Keep it on the default 'FTP - File Transfer Protocol' for now.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''4.'''&amp;lt;/span&amp;gt; - This is the encryption for your FTP connection. Keep it on the default 'Use explicit FTP over TLS if available' for now.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''5.'''&amp;lt;/span&amp;gt; - This is how we're going to log into the FTP server. Select 'Normal' from the drop-down.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''6.'''&amp;lt;/span&amp;gt; - This is the FTP username for your website. You should be able to find this information in your website's 'New Account' e-mail Hostek.com sent when you registered with us.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''7.'''&amp;lt;/span&amp;gt; - This is the password for your FTP connection. As above, you should be able to find this information in your website's 'New Account' e-mail Hostek.com sent when you registered with us.&lt;br /&gt;
#** &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''8.'''&amp;lt;/span&amp;gt; - Once you've done the above, click this button labeled 'OK' to save.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#Click the little arrow in the top-left as shown in the picture below, then click what you labeled your new site.&lt;br /&gt;
#*[[File:FileZillaUsage4.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#You may get a pop-up as seen below. This is just telling you that the FTP connection is secured by encryption. Make sure the box labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''1.'''&amp;lt;/span&amp;gt; is checked, then click OK.&lt;br /&gt;
#*[[File:FileZillaUsage5.png]]&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
#You should now be connected to your website via FTP! See the image below for a brief explanation of the different areas inside FileZilla.&lt;br /&gt;
#*[[File:FileZillaUsage6.png]]&lt;br /&gt;
#**The box labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; is your computer's files. The box labeled &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; is your site's files. You may drag and drop from &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; to &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; to upload files, or drag and drop from &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; to &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; to download files. &lt;br /&gt;
#**Use the box above &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''A.'''&amp;lt;/span&amp;gt; to navigate through your computer's files. Use the box above &amp;lt;span style=&amp;quot;color:#ff0000&amp;quot;&amp;gt;'''B.'''&amp;lt;/span&amp;gt; to navigate through your site's files.&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:FileZillaUsage6.png&amp;diff=3162</id>
		<title>File:FileZillaUsage6.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:FileZillaUsage6.png&amp;diff=3162"/>
				<updated>2017-04-05T16:25:02Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:FileZillaUsage5.png&amp;diff=3161</id>
		<title>File:FileZillaUsage5.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:FileZillaUsage5.png&amp;diff=3161"/>
				<updated>2017-04-05T16:24:49Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:FileZillaUsage4.png&amp;diff=3160</id>
		<title>File:FileZillaUsage4.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:FileZillaUsage4.png&amp;diff=3160"/>
				<updated>2017-04-05T16:24:36Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:FileZillaUsage3.png&amp;diff=3159</id>
		<title>File:FileZillaUsage3.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:FileZillaUsage3.png&amp;diff=3159"/>
				<updated>2017-04-05T16:24:26Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:FileZillaUsage2.png&amp;diff=3158</id>
		<title>File:FileZillaUsage2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:FileZillaUsage2.png&amp;diff=3158"/>
				<updated>2017-04-05T16:24:17Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:FileZillaUsage1a.png&amp;diff=3157</id>
		<title>File:FileZillaUsage1a.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:FileZillaUsage1a.png&amp;diff=3157"/>
				<updated>2017-04-05T16:24:01Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:FileZillaUsage1.png&amp;diff=3156</id>
		<title>File:FileZillaUsage1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:FileZillaUsage1.png&amp;diff=3156"/>
				<updated>2017-04-05T16:13:28Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:FileZillaInstall6.png&amp;diff=3155</id>
		<title>File:FileZillaInstall6.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:FileZillaInstall6.png&amp;diff=3155"/>
				<updated>2017-04-05T16:13:14Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:FileZillaInstall5.png&amp;diff=3154</id>
		<title>File:FileZillaInstall5.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:FileZillaInstall5.png&amp;diff=3154"/>
				<updated>2017-04-05T16:13:04Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:FileZillaInstall4.png&amp;diff=3153</id>
		<title>File:FileZillaInstall4.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:FileZillaInstall4.png&amp;diff=3153"/>
				<updated>2017-04-05T16:12:54Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:FileZillaInstall3.png&amp;diff=3152</id>
		<title>File:FileZillaInstall3.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:FileZillaInstall3.png&amp;diff=3152"/>
				<updated>2017-04-05T16:12:46Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:FileZillaInstall2.png&amp;diff=3151</id>
		<title>File:FileZillaInstall2.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:FileZillaInstall2.png&amp;diff=3151"/>
				<updated>2017-04-05T16:12:37Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=File:FileZillaInstall1.png&amp;diff=3150</id>
		<title>File:FileZillaInstall1.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=File:FileZillaInstall1.png&amp;diff=3150"/>
				<updated>2017-04-05T16:12:11Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Let%27s_Encrypt_SSL_on_cPanel&amp;diff=2929</id>
		<title>Let's Encrypt SSL on cPanel</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Let%27s_Encrypt_SSL_on_cPanel&amp;diff=2929"/>
				<updated>2016-12-15T21:38:23Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Let's Encrypt is a free, automated, and open SSL certificate authority. It can be used to provide optional free SSL encryption. It is only basic-level encryption, however, so there is still value to purchasing premium SSL certificate from providers like GeoTrust or Verisign.&lt;br /&gt;
&lt;br /&gt;
==Let's Encrypt on a cPanel VPS==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Installing Let's Encrypt is simple and easy. cPanel v58 and above supports the following command via [[SSH]]:&lt;br /&gt;
&amp;lt;pre&amp;gt;/scripts/install_lets_encrypt_autossl_provider&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then do the following:&lt;br /&gt;
#Log into WHM (http://yourVPShostname.com:2086).&lt;br /&gt;
#Search on the left for 'Manage AutoSSL'.&lt;br /&gt;
#Under 'Choose an AutoSSL Provider:' select 'Let's Encrypt™'&lt;br /&gt;
#Check the 'I agree to these terms of service' box. &lt;br /&gt;
#Click Save.&lt;br /&gt;
#That's it! Let's Encrypt is now installed.&lt;br /&gt;
&lt;br /&gt;
===Enabling Let's Encrypt for a cPanel user/domain===&lt;br /&gt;
#Log into WHM (http://yourVPShostname.com:2086).&lt;br /&gt;
#Search on the left for 'Manage AutoSSL'.&lt;br /&gt;
#Click 'Manage Users'&lt;br /&gt;
#Search for the username in the search box. &lt;br /&gt;
#Click 'Enable AutoSSL' for that user.&lt;br /&gt;
#That's it! it will automatically enable.&lt;br /&gt;
&lt;br /&gt;
==Let's Encrypt for a shared cPanel account==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
If you would like Let's Encrypt's free SSL for your shared cPanel domain/account, please contact support via https://support.hostek.com/ and simply mention this wiki page.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Let%27s_Encrypt_SSL_on_cPanel&amp;diff=2928</id>
		<title>Let's Encrypt SSL on cPanel</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Let%27s_Encrypt_SSL_on_cPanel&amp;diff=2928"/>
				<updated>2016-12-15T21:37:35Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: Created page with &amp;quot;==Summary== &amp;lt;br /&amp;gt; Let's Encrypt is a free, automated, and open SSL certificate authority. It can be used to provide optional free SSL encryption. It is only basic-level encry...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Summary==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Let's Encrypt is a free, automated, and open SSL certificate authority. It can be used to provide optional free SSL encryption. It is only basic-level encryption, however, so there is still value to purchasing premium SSL certificate from providers like GeoTrust or Verisign.&lt;br /&gt;
&lt;br /&gt;
==Let's Encrypt on a cPanel VPS==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Installing Let's Encrypt is simple and easy. cPanel v58 and above supports the following command via [[SSH]]:&lt;br /&gt;
&amp;lt;pre&amp;gt;/scripts/install_lets_encrypt_autossl_provider&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Then do the following:&lt;br /&gt;
#Log into WHM (http://yourVPShostname:2086).&lt;br /&gt;
#Search on the left for 'Manage AutoSSL'.&lt;br /&gt;
#Under 'Choose an AutoSSL Provider:' select 'Let's Encrypt™'&lt;br /&gt;
#Check the 'I agree to these terms of service' box. &lt;br /&gt;
#Click Save.&lt;br /&gt;
#That's it! Let's Encrypt is now installed.&lt;br /&gt;
&lt;br /&gt;
===Enabling Let's Encrypt for a cPanel user/domain===&lt;br /&gt;
#Log into WHM (http://yourVPShostname:2086).&lt;br /&gt;
#Search on the left for 'Manage AutoSSL'.&lt;br /&gt;
#Click 'Manage Users'&lt;br /&gt;
#Search for the username in the search box. &lt;br /&gt;
#Click 'Enable AutoSSL' for that user.&lt;br /&gt;
#That's it! it will automatically enable.&lt;br /&gt;
&lt;br /&gt;
==Let's Encrypt for a shared cPanel account==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
If you would like Let's Encrypt's free SSL for your shared cPanel domain/account, please contact support via https://support.hostek.com/ and simply mention this wiki page.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Shared_SSL&amp;diff=2923</id>
		<title>Shared SSL</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Shared_SSL&amp;diff=2923"/>
				<updated>2016-12-02T16:23:51Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: /* Linux cPanel Customers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
== Shared SSL ==&lt;br /&gt;
&lt;br /&gt;
Shared Secure Socket Layer (SSL) is a certificated that all of our customers can use. The Shared SSL certificated is intended for those who wish to have a secure connection, to say an admin area or a simple checkout process, but don't wish to purchase a Private SSL. &lt;br /&gt;
&lt;br /&gt;
Normally, a Shared SSL is not the best choice for an e-commerce site, this is because most customers expect to see the domain name of the company in the URL address bar. Shared SSL will use our domain name (usually ezhostingserver.com or hostek.com) in place of your domain name.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;NOTE:&amp;lt;/b&amp;gt; &lt;br /&gt;
#For our resellers, Hostek.com has a white label shared SSL for your customers to use. &lt;br /&gt;
#For information about Private SSL Certificates please visit http://hostek.com/web-hosting-ssl.asp &lt;br /&gt;
#Installing a purchased Private SSL please visit https://wiki.hostek.com/SSL_Certificates &lt;br /&gt;
&lt;br /&gt;
== Enable Shared SSL ==&lt;br /&gt;
&lt;br /&gt;
=== Windows and ColdFusion Customers ===&lt;br /&gt;
The shared SSL can be enabled via the control panel for our Windows and ColdFusion hosting customers. &lt;br /&gt;
&lt;br /&gt;
# Log in to WCP at https://wcp.hostek.com&lt;br /&gt;
# Locate the &amp;lt;b&amp;gt;Security and SSL&amp;lt;/b&amp;gt; Section&lt;br /&gt;
# Click on the &amp;lt;b&amp;gt;Shared SSL&amp;lt;/b&amp;gt; Icon&lt;br /&gt;
# Click &amp;lt;b&amp;gt;Enable&amp;lt;/b&amp;gt;&lt;br /&gt;
# Copy the link in &amp;lt;b&amp;gt;URL:&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
  These Shared SSL URL's will look something like https://securex.ezhostingserver.com/yourdomain-com/&lt;br /&gt;
&lt;br /&gt;
=== Linux cPanel Customers ===&lt;br /&gt;
For our cPanel customers, &amp;lt;b&amp;gt;this is enabled by default&amp;lt;/b&amp;gt;. Just use your pre-propagation URL except with https:// instead of http://&lt;br /&gt;
&lt;br /&gt;
Another Example: Use &amp;lt;b&amp;gt;https://&amp;lt;/b&amp;gt; followed by your website name, then the server you are on. Take reference to the following:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;https://yourdomain.com.cpXX.ezhostingserver.com/&amp;lt;/pre&amp;gt;''In the example above, 'XX' is the server name and yourdomain.com is your website.''&lt;br /&gt;
&lt;br /&gt;
'''Note''': You must use the appropriate Shared SSL URL in order for it to work with your site. It will not work if you try to prefix your primary domain name with &amp;quot;https://&amp;quot;. If you require this functionality please [[SSL_Certificates#Ordering_an_SSL_Certificate|order a dedicated SSL certificate]] for your site.&lt;br /&gt;
&lt;br /&gt;
== How Shared SSL Works ==&lt;br /&gt;
&lt;br /&gt;
Here is a sample of how the Shared SSL Hosting works on our servers.&lt;br /&gt;
&lt;br /&gt;
Notice the site look and how the URL is still on the &amp;lt;b&amp;gt;main domain's&amp;lt;/b&amp;gt; site. In their cart, they have indicated the shared SSL URL for the checkout process. They will the be directed to the Secure URL for the checkout process. However, as mentioned before, it is optimal to have the whole cart in a secure environment so the customer feels secure the whole time.&lt;br /&gt;
&lt;br /&gt;
[[File:Shared_ssl_pressl.jpg]]&lt;br /&gt;
&lt;br /&gt;
Now, after clicking &amp;quot;Checkout&amp;quot; the cart takes you to this Shared SSL page. Notice that the look of the site is the same. The URL changes based on the shared SSL URL for the site, which the cart owner entered in their cart setup.&lt;br /&gt;
&lt;br /&gt;
[[File:Shared_ssl_withssl.jpg]]&lt;br /&gt;
&lt;br /&gt;
Maybe you're not using a cart, but just need to link to a secure form submission page. After setting up the Shared SSL, you would just set your link to link to the Shared SSL URL instead of the non secured URL. It's really a simple process.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Control_Panels]]&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Railo]]&lt;br /&gt;
[[Category:Coldfusion]]&lt;br /&gt;
[[Category:SSL-Certificates]]&lt;br /&gt;
[[Category:Shared_SSL]]&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=SSH&amp;diff=2910</id>
		<title>SSH</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=SSH&amp;diff=2910"/>
				<updated>2016-11-18T16:45:41Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: &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;
==Connecting to your server with a SSH key==&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/. If you are on a shared server, the Hostek.com support team will need to enable access for you to see the area below.&lt;br /&gt;
&lt;br /&gt;
To generate a new key:&lt;br /&gt;
#Click 'SSH/Shell Access' within the cPanel home page (once logged in).&lt;br /&gt;
#Click 'Manage SSH Keys'.&lt;br /&gt;
#Click the 'Generate a new Key' icon.&lt;br /&gt;
#Fill in the appropriate information.&lt;br /&gt;
#*Note: You should consider your needs when choosing a key type, bearing in mind that RSA keys yield a faster confirmation of identity, while using DSA keys will speed up key generation and signing times.&lt;br /&gt;
#Click Generate Key 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>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Phone_Number_Format&amp;diff=2877</id>
		<title>Phone Number Format</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Phone_Number_Format&amp;diff=2877"/>
				<updated>2016-09-21T20:10:10Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: /* Country Codes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;When registering for an account with Hostek.com, we require your phone number in the following format:&lt;br /&gt;
&amp;lt;pre&amp;gt;+1.9183927870 &amp;lt;/pre&amp;gt;&lt;br /&gt;
The format is:&lt;br /&gt;
&amp;lt;pre&amp;gt;+1. = Country Code (See list of Country Codes below)&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;9183927870 = Phone Number&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=Country Codes=&lt;br /&gt;
*'''United States of America''' 1&lt;br /&gt;
*'''Afghanistan''' 93&lt;br /&gt;
*'''Albania''' 355&lt;br /&gt;
*'''Algeria''' 213&lt;br /&gt;
*'''American Samoa''' 1 684&lt;br /&gt;
*'''Andorra''' 376&lt;br /&gt;
*'''Angola''' 244&lt;br /&gt;
*'''Anguilla''' 1 264&lt;br /&gt;
*'''Antarctica''' (Australian bases) 6721&lt;br /&gt;
*'''Antigua and Barbuda''' 1 268&lt;br /&gt;
*'''Argentina''' 54&lt;br /&gt;
*'''Armenia''' 374&lt;br /&gt;
*'''Aruba''' 297&lt;br /&gt;
*'''Ascension''' 247&lt;br /&gt;
*'''Australia''' 61&lt;br /&gt;
*'''Austria''' 43&lt;br /&gt;
*'''Azerbaijan''' 994&lt;br /&gt;
*'''Bahamas''' 1 242&lt;br /&gt;
*'''Bahrain''' 973&lt;br /&gt;
*'''Bangladesh''' 880&lt;br /&gt;
*'''Barbados''' 1 246&lt;br /&gt;
*'''Belarus''' 375&lt;br /&gt;
*'''Belgium''' 32&lt;br /&gt;
*'''Belize''' 501&lt;br /&gt;
*'''Benin''' 229&lt;br /&gt;
*'''Bermuda''' 1 441&lt;br /&gt;
*'''Bhutan''' 975&lt;br /&gt;
*'''Bolivia''' 591&lt;br /&gt;
*'''Bosnia and Herzegovina''' 387&lt;br /&gt;
*'''Botswana''' 267&lt;br /&gt;
*'''Brazil''' 55&lt;br /&gt;
*'''British Indian Ocean Territory''' 246&lt;br /&gt;
*'''British Virgin Islands''' 1 284&lt;br /&gt;
*'''Brunei''' 673&lt;br /&gt;
*'''Bulgaria''' 359&lt;br /&gt;
*'''Burkina Faso''' 226&lt;br /&gt;
*'''Burundi''' 257&lt;br /&gt;
*'''Cambodia''' 855&lt;br /&gt;
*'''Cameroon''' 237&lt;br /&gt;
*'''Canada''' 1&lt;br /&gt;
*'''Cape Verde''' 238&lt;br /&gt;
*'''Cayman Islands''' 1 345&lt;br /&gt;
*'''Central African Republic''' 236&lt;br /&gt;
*'''Chad''' 235&lt;br /&gt;
*'''Chile''' 56&lt;br /&gt;
*'''China''' 86&lt;br /&gt;
*'''Colombia''' 57&lt;br /&gt;
*'''Comoros''' 269&lt;br /&gt;
*'''Congo, Democratic Republic of the''' 243&lt;br /&gt;
*'''Congo, Republic of the''' 242&lt;br /&gt;
*'''Cook Islands''' 682&lt;br /&gt;
*'''Costa Rica''' 506&lt;br /&gt;
*'''Cote d'Ivoire''' 225&lt;br /&gt;
*'''Croatia''' 385&lt;br /&gt;
*'''Cuba''' 53&lt;br /&gt;
*'''Curaçao''' 599&lt;br /&gt;
*'''Cyprus''' 357&lt;br /&gt;
*'''Czech Republic''' 420&lt;br /&gt;
*'''Denmark''' 45&lt;br /&gt;
*'''Djibouti''' 253&lt;br /&gt;
*'''Dominica''' 1 767&lt;br /&gt;
*'''Dominican Republic''' 1 809, 1 829, and 1 849&lt;br /&gt;
*'''East Timor''' 670&lt;br /&gt;
*'''Ecuador''' 593&lt;br /&gt;
*'''Egypt''' 20&lt;br /&gt;
*'''El Salvador''' 503&lt;br /&gt;
*'''Equatorial Guinea''' 240&lt;br /&gt;
*'''Eritrea''' 291&lt;br /&gt;
*'''Estonia''' 372&lt;br /&gt;
*'''Ethiopia''' 251&lt;br /&gt;
*'''Falkland Islands''' 500&lt;br /&gt;
*'''Faroe Islands''' 298&lt;br /&gt;
*'''Fiji''' 679&lt;br /&gt;
*'''Finland''' 358&lt;br /&gt;
*'''France''' 33&lt;br /&gt;
*'''French Guiana''' 594&lt;br /&gt;
*'''French Polynesia''' 689&lt;br /&gt;
*'''Gabon''' 241&lt;br /&gt;
*'''Gambia''' 220&lt;br /&gt;
*'''Gaza Strip''' 970&lt;br /&gt;
*'''Georgia (country)|Georgia''' 995&lt;br /&gt;
*'''Germany''' 49&lt;br /&gt;
*'''Ghana''' 233&lt;br /&gt;
*'''Gibraltar''' 350&lt;br /&gt;
*'''Greece''' 30&lt;br /&gt;
*'''Greenland''' 299&lt;br /&gt;
*'''Grenada''' 1 473&lt;br /&gt;
*'''Guadeloupe''' 590&lt;br /&gt;
*'''Guam''' 1 671&lt;br /&gt;
*'''Guatemala''' 502&lt;br /&gt;
*'''Guinea''' 224&lt;br /&gt;
*'''Guinea-Bissau''' 245&lt;br /&gt;
*'''Guyana''' 592&lt;br /&gt;
*'''Haiti''' 509&lt;br /&gt;
*'''Honduras''' 504&lt;br /&gt;
*'''Hong Kong''' 852&lt;br /&gt;
*'''Hungary''' 36&lt;br /&gt;
*'''Iceland''' 354&lt;br /&gt;
*'''India''' 91&lt;br /&gt;
*'''Indonesia''' 62&lt;br /&gt;
*'''Iraq''' 964&lt;br /&gt;
*'''Iran''' 98&lt;br /&gt;
*'''Ireland''' (Eire) 353&lt;br /&gt;
*'''Israel''' 972&lt;br /&gt;
*'''Italy''' 39&lt;br /&gt;
*'''Jamaica''' 1 876&lt;br /&gt;
*'''Japan''' 81&lt;br /&gt;
*'''Jordan''' 962&lt;br /&gt;
*'''Kazakhstan''' 7&lt;br /&gt;
*'''Kenya''' 254&lt;br /&gt;
*'''Kiribati''' 686&lt;br /&gt;
*'''Kosovo''' 377, 381, 386&lt;br /&gt;
*'''Kuwait''' 965&lt;br /&gt;
*'''Kyrgyzstan''' 996&lt;br /&gt;
*'''Laos''' 856&lt;br /&gt;
*'''Latvia''' 371&lt;br /&gt;
*'''Lebanon''' 961&lt;br /&gt;
*'''Lesotho''' 266&lt;br /&gt;
*'''Liberia''' 231&lt;br /&gt;
*'''Libya''' 218&lt;br /&gt;
*'''Liechtenstein''' 423&lt;br /&gt;
*'''Lithuania''' 370&lt;br /&gt;
*'''Luxembourg''' 352&lt;br /&gt;
*'''Macau''' 853&lt;br /&gt;
*'''Republic of Macedonia|Macedonia, Republic of''' 389&lt;br /&gt;
*'''Madagascar''' 261&lt;br /&gt;
*'''Malawi''' 265&lt;br /&gt;
*'''Malaysia''' 60&lt;br /&gt;
*'''Maldives''' 960&lt;br /&gt;
*'''Mali''' 223&lt;br /&gt;
*'''Malta''' 356&lt;br /&gt;
*'''Marshall Islands''' 692&lt;br /&gt;
*'''Martinique''' 596&lt;br /&gt;
*'''Mauritania''' 222&lt;br /&gt;
*'''Mauritius''' 230&lt;br /&gt;
*'''Mayotte''' 262&lt;br /&gt;
*'''Mexico''' 52&lt;br /&gt;
*'''Micronesia, Federated States of''' 691&lt;br /&gt;
*'''Moldova''' 373&lt;br /&gt;
*'''Monaco''' 377&lt;br /&gt;
*'''Mongolia''' 976&lt;br /&gt;
*'''Montenegro''' 382&lt;br /&gt;
*'''Montserrat''' 1 664&lt;br /&gt;
*'''Morocco''' 212&lt;br /&gt;
*'''Mozambique''' 258&lt;br /&gt;
*'''Myanmar''' 95&lt;br /&gt;
*'''Namibia''' 264&lt;br /&gt;
*'''Nauru''' 674&lt;br /&gt;
*'''Netherlands''' 31&lt;br /&gt;
*'''Netherlands Antilles''' 599&lt;br /&gt;
*'''Nepal''' 977&lt;br /&gt;
*'''New Caledonia''' 687&lt;br /&gt;
*'''New Zealand''' 64&lt;br /&gt;
*'''Nicaragua''' 505&lt;br /&gt;
*'''Niger''' 227&lt;br /&gt;
*'''Nigeria''' 234&lt;br /&gt;
*'''Niue''' 683&lt;br /&gt;
*'''Norfolk Island''' 6723&lt;br /&gt;
*'''North Korea''' 850&lt;br /&gt;
*'''Northern Ireland''' 44 28&lt;br /&gt;
*'''Northern Mariana Islands''' 1 670&lt;br /&gt;
*'''Norway''' 47&lt;br /&gt;
*'''Oman''' 968&lt;br /&gt;
*'''Pakistan''' 92&lt;br /&gt;
*'''Palau''' 680&lt;br /&gt;
*'''Panama''' 507&lt;br /&gt;
*'''Papua New Guinea''' 675&lt;br /&gt;
*'''Paraguay''' 595&lt;br /&gt;
*'''Peru''' 51&lt;br /&gt;
*'''Philippines''' 63&lt;br /&gt;
*'''Poland''' 48&lt;br /&gt;
*'''Portugal''' 351&lt;br /&gt;
*'''Puerto Rico''' 1 787 and 1 939&lt;br /&gt;
*'''Qatar''' 974&lt;br /&gt;
*'''Reunion''' 262&lt;br /&gt;
*'''Romania''' 40&lt;br /&gt;
*'''Russia''' 7&lt;br /&gt;
*'''Rwanda''' 250&lt;br /&gt;
*'''Saint-Barthélemy''' 590&lt;br /&gt;
*'''Saint Helena (island)|Saint Helena''' 290&lt;br /&gt;
*'''Saint Kitts and Nevis''' 1 869&lt;br /&gt;
*'''Saint Lucia''' 1 758&lt;br /&gt;
*'''Saint Martin''' (French side) 590&lt;br /&gt;
*'''Saint Pierre and Miquelon''' 508&lt;br /&gt;
*'''Saint Vincent and the Grenadines''' 1 784&lt;br /&gt;
*'''Samoa''' 685&lt;br /&gt;
*'''Sao Tome and Principe''' 239&lt;br /&gt;
*'''Saudi Arabia''' 966&lt;br /&gt;
*'''Senegal''' 221&lt;br /&gt;
*'''Serbia''' 381&lt;br /&gt;
*'''Seychelles''' 248&lt;br /&gt;
*'''Sierra Leone''' 232&lt;br /&gt;
*'''Saint Martin|Sint Maarten''' (Dutch side) 1 721&lt;br /&gt;
*'''Singapore''' 65&lt;br /&gt;
*'''Slovakia''' 421&lt;br /&gt;
*'''Slovenia''' 386&lt;br /&gt;
*'''Solomon Islands''' 677&lt;br /&gt;
*'''Somalia''' 252&lt;br /&gt;
*'''South Africa''' 27&lt;br /&gt;
*'''South Korea''' 82&lt;br /&gt;
*'''South Sudan''' 211&lt;br /&gt;
*'''Spain''' 34&lt;br /&gt;
*'''Sri Lanka''' 94&lt;br /&gt;
*'''Sudan''' 249&lt;br /&gt;
*'''Suriname''' 597&lt;br /&gt;
*'''Swaziland''' 268&lt;br /&gt;
*'''Sweden''' 46&lt;br /&gt;
*'''Switzerland''' 41&lt;br /&gt;
*'''Syria''' 963&lt;br /&gt;
*'''Taiwan''' 886&lt;br /&gt;
*'''Tajikistan''' 992&lt;br /&gt;
*'''Tanzania''' 255&lt;br /&gt;
*'''Thailand''' 66&lt;br /&gt;
*'''Togo''' 228&lt;br /&gt;
*'''Tokelau''' 690&lt;br /&gt;
*'''Tonga''' 676&lt;br /&gt;
*'''Trinidad and Tobago''' 1 868&lt;br /&gt;
*'''Tunisia''' 216&lt;br /&gt;
*'''Turkey''' 90&lt;br /&gt;
*'''Turkmenistan''' 993&lt;br /&gt;
*'''Turks and Caicos Islands''' 1 649&lt;br /&gt;
*'''Tuvalu''' 688&lt;br /&gt;
*'''Uganda''' 256&lt;br /&gt;
*'''Ukraine''' 380&lt;br /&gt;
*'''United Arab Emirates''' 971&lt;br /&gt;
*'''United Kingdom''' 44&lt;br /&gt;
*'''United States of America''' 1&lt;br /&gt;
*'''Uruguay''' 598&lt;br /&gt;
*'''Uzbekistan''' 998&lt;br /&gt;
*'''Vanuatu''' 678&lt;br /&gt;
*'''Venezuela''' 58&lt;br /&gt;
*'''Vietnam''' 84&lt;br /&gt;
*'''U.S. Virgin Islands''' 1 340&lt;br /&gt;
*'''Wallis and Futuna''' 681&lt;br /&gt;
*'''West Bank''' 970&lt;br /&gt;
*'''Yemen''' 967&lt;br /&gt;
*'''Zambia''' 260&lt;br /&gt;
*'''Zimbabwe''' 263&lt;br /&gt;
&lt;br /&gt;
__INDEX__&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Migration_Assistance&amp;diff=2455</id>
		<title>Migration Assistance</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Migration_Assistance&amp;diff=2455"/>
				<updated>2015-04-04T19:57:31Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: /* Limitations - Fine Print */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
In most cases, Hostek.com can help you migrate from your current provider to our services.&lt;br /&gt;
&lt;br /&gt;
We perform this process day in and day out for both shared and VPS customers, so we have this process down to a good science.&lt;br /&gt;
&lt;br /&gt;
== Migrations - Preparation Steps ==&lt;br /&gt;
#Be sure you are going to a matching platform.&lt;br /&gt;
##If you know you are changing platforms, check with our support team to make sure it will be fine.  Most of the time it will be fine.&lt;br /&gt;
#Be sure you have all your login details at your current host so that we can get access to your site, database, etc.&lt;br /&gt;
&lt;br /&gt;
===  Required Information ===&lt;br /&gt;
To get started on your migration we will need the following information. We find it's easiest if customers provide a spreadsheet with the information below.&lt;br /&gt;
&lt;br /&gt;
#List of domains&lt;br /&gt;
#*For Cpanel to Cpanel moves we need access to the existing CPanel Account, or WHM (preferred)&lt;br /&gt;
#*For large migrations 10+ domains or 10+GB full server access is preferred.&lt;br /&gt;
#Specific important details about each domain, such as the type of CMS or application framework, what parts are critical - which should ALSO be noted in your documents.&lt;br /&gt;
#List of databases, users and passwords (preferred)&lt;br /&gt;
#List of accounts, ftp, email&lt;br /&gt;
#URL and login details for your registrar, if we will be changing the DNS for you, this should be pre-determined.&lt;br /&gt;
&lt;br /&gt;
See [http://blog.hostek.com/blog/uncategorized/3-steps-to-prepare-for-a-successful-hosting-migration/ this blog post] on how to make your migration pain free, there's also an Excel document for tracking the domains and account information.&lt;br /&gt;
&lt;br /&gt;
More information in [https://wiki.hostek.com/index.php?title=Seamlessly_Change_Hosting_to_Hostek.com this wiki] on making your migration seamless.&lt;br /&gt;
&lt;br /&gt;
== Migrations - Completion Steps ==&lt;br /&gt;
&lt;br /&gt;
#Initial discussion about the migration (ticket or phone).&lt;br /&gt;
#*This is the best time to explain what is being migrated, specifically the required information (domains, accounts etc..) we should have received from you.&lt;br /&gt;
#*We will likely coordinate a time for the migration during this conversation.&lt;br /&gt;
#Migration Start - We will carry out the migration at the discussed time.&lt;br /&gt;
#Testing - After the migration is complete we will test any discussed URL/Parts of the websites/services that are critical and pre-determined.&lt;br /&gt;
#Migration Finish - When the migration and testing are complete we will let you know usually by ticket.&lt;br /&gt;
##There may be additional parts that need to be tested or finished such as DNS changes, however we can answer your questions about this in the initial discussion.&lt;br /&gt;
&lt;br /&gt;
To find out how we can help with your migration, submit a ticket at https://support.hostek.com&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Limitations - Fine Print ==&lt;br /&gt;
You might ask, &amp;quot;what if I have 1000 sites? will Hostek migrate them all for me?&amp;quot;. For migrations that will require more than 2hrs support time we must pre-approve first. We may discuss the complete migration or an effective plan for coordinating and working alongside the customer to move their sites. We have never had to tell a customer NO we can't do that and we have completed very large and complex multi-server migrations for many customers.&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Shopping_Carts&amp;diff=2322</id>
		<title>Shopping Carts</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Shopping_Carts&amp;diff=2322"/>
				<updated>2014-11-14T17:21:54Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: /* Shopping Carts in cPanel */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;E-commerce Shopping Cart Software and Applications&lt;br /&gt;
&lt;br /&gt;
Below is a list of common carts we support.&lt;br /&gt;
&lt;br /&gt;
__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
==Shopping Carts in cPanel==&lt;br /&gt;
*Currently we have 15 Shopping Carts available for cPanel, which can be automatically installed through '''Softaculous''' in the '''Software/Services''' area.&lt;br /&gt;
#Magento&lt;br /&gt;
#osCommerce&lt;br /&gt;
#PrestaShop&lt;br /&gt;
#AbanteCart&lt;br /&gt;
#Zen Cart&lt;br /&gt;
#TomatoCart&lt;br /&gt;
#Quick.Cart&lt;br /&gt;
#LiteCart&lt;br /&gt;
#CubeCart&lt;br /&gt;
#OpenCart&lt;br /&gt;
#AlegroCart&lt;br /&gt;
#CS-Cart&lt;br /&gt;
#Open eShop&lt;br /&gt;
#Zeuscart&lt;br /&gt;
#Shopware&lt;br /&gt;
&lt;br /&gt;
==Shopping Carts in WCP==&lt;br /&gt;
*Currently we have 2 Shopping Carts available for WCP, which are easily installed through '''Applications''' in the '''Reporting and Applications''' area.&lt;br /&gt;
#Magento&lt;br /&gt;
#osCommerce&lt;br /&gt;
&lt;br /&gt;
==osCommerce==&lt;br /&gt;
osCommerce is an Open Source based online shop e-commerce solution that is available for free under the GNU General Public License. It features a rich set of out-of-the-box online shopping cart functionality that allows store owners to setup, run, and maintain their online stores with minimum effort and with no costs, fees, or limitations involved. You can find more information here:&lt;br /&gt;
*This cart works on any of our hosting packages.&lt;br /&gt;
*[http://oscommerce.com/ osCommerce]&lt;br /&gt;
&lt;br /&gt;
==eCommerce Templates==&lt;br /&gt;
eCommerce Templates was set up with the aim of providing a powerful low cost eCommerce shopping cart software solution integrating into the main HTML editors; Dreamweaver, Frontpage and GoLive. We consider this one of the best solutions:&lt;br /&gt;
*This cart works on any of our hosting packages.&lt;br /&gt;
*[http://ecommercetemplates.com/ eCommerce Templates]&lt;br /&gt;
&lt;br /&gt;
==Other Carts==&lt;br /&gt;
There are many other cart solutions available on the internet. We support the most common applications, and usually all minimum requirements for various other shopping cart applications. You can submit a [http://support.HosTek.com support ticket] with any specific questions about a solution not listed here. &lt;br /&gt;
&lt;br /&gt;
* [http://www.prestashop.com/ PrestaShop]&lt;br /&gt;
* [http://www.abantecart.com/ AbanteCart]&lt;br /&gt;
* [http://www.zen-cart.com/ Zen Cart]&lt;br /&gt;
* [http://www.tomatocart.com/ TomatoCart]&lt;br /&gt;
* [http://www.quickcart.com/ Quick.Cart]&lt;br /&gt;
* [http://www.litecart.net/ LiteCart]&lt;br /&gt;
* [http://www.cubecart.com/ CubeCart]&lt;br /&gt;
* [http://www.opencart.com/index.php?route=common/home OpenCart]&lt;br /&gt;
* [http://www.alegrocart.com AlegroCart]&lt;br /&gt;
* [http://www.cs-cart.com/ CS-Cart]&lt;br /&gt;
* [http://open-eshop.com/ Open eShop]&lt;br /&gt;
* [http://zeuscart.com/ Zeuscart]&lt;br /&gt;
* [http://www.shopware.com/ Shopware]&lt;br /&gt;
[[Category: Sales]]&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Shopping_Carts&amp;diff=2321</id>
		<title>Shopping Carts</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Shopping_Carts&amp;diff=2321"/>
				<updated>2014-11-14T17:21:01Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: /* Shopping Carts in cPanel */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;E-commerce Shopping Cart Software and Applications&lt;br /&gt;
&lt;br /&gt;
Below is a list of common carts we support.&lt;br /&gt;
&lt;br /&gt;
__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
==Shopping Carts in cPanel==&lt;br /&gt;
*Currently we have 14 Shopping Carts available for cPanel, which can be automatically installed through '''Softaculous''' in the '''Software/Services''' area.&lt;br /&gt;
&lt;br /&gt;
#PrestaShop&lt;br /&gt;
#AbanteCart&lt;br /&gt;
#osCommerce&lt;br /&gt;
#Zen Cart&lt;br /&gt;
#TomatoCart&lt;br /&gt;
#Quick.Cart&lt;br /&gt;
#LiteCart&lt;br /&gt;
#CubeCart&lt;br /&gt;
#OpenCart&lt;br /&gt;
#AlegroCart&lt;br /&gt;
#CS-Cart&lt;br /&gt;
#Open eShop&lt;br /&gt;
#Zeuscart&lt;br /&gt;
#Shopware&lt;br /&gt;
&lt;br /&gt;
==Shopping Carts in WCP==&lt;br /&gt;
*Currently we have 2 Shopping Carts available for WCP, which are easily installed through '''Applications''' in the '''Reporting and Applications''' area.&lt;br /&gt;
#Magento&lt;br /&gt;
#osCommerce&lt;br /&gt;
&lt;br /&gt;
==osCommerce==&lt;br /&gt;
osCommerce is an Open Source based online shop e-commerce solution that is available for free under the GNU General Public License. It features a rich set of out-of-the-box online shopping cart functionality that allows store owners to setup, run, and maintain their online stores with minimum effort and with no costs, fees, or limitations involved. You can find more information here:&lt;br /&gt;
*This cart works on any of our hosting packages.&lt;br /&gt;
*[http://oscommerce.com/ osCommerce]&lt;br /&gt;
&lt;br /&gt;
==eCommerce Templates==&lt;br /&gt;
eCommerce Templates was set up with the aim of providing a powerful low cost eCommerce shopping cart software solution integrating into the main HTML editors; Dreamweaver, Frontpage and GoLive. We consider this one of the best solutions:&lt;br /&gt;
*This cart works on any of our hosting packages.&lt;br /&gt;
*[http://ecommercetemplates.com/ eCommerce Templates]&lt;br /&gt;
&lt;br /&gt;
==Other Carts==&lt;br /&gt;
There are many other cart solutions available on the internet. We support the most common applications, and usually all minimum requirements for various other shopping cart applications. You can submit a [http://support.HosTek.com support ticket] with any specific questions about a solution not listed here. &lt;br /&gt;
&lt;br /&gt;
* [http://www.prestashop.com/ PrestaShop]&lt;br /&gt;
* [http://www.abantecart.com/ AbanteCart]&lt;br /&gt;
* [http://www.zen-cart.com/ Zen Cart]&lt;br /&gt;
* [http://www.tomatocart.com/ TomatoCart]&lt;br /&gt;
* [http://www.quickcart.com/ Quick.Cart]&lt;br /&gt;
* [http://www.litecart.net/ LiteCart]&lt;br /&gt;
* [http://www.cubecart.com/ CubeCart]&lt;br /&gt;
* [http://www.opencart.com/index.php?route=common/home OpenCart]&lt;br /&gt;
* [http://www.alegrocart.com AlegroCart]&lt;br /&gt;
* [http://www.cs-cart.com/ CS-Cart]&lt;br /&gt;
* [http://open-eshop.com/ Open eShop]&lt;br /&gt;
* [http://zeuscart.com/ Zeuscart]&lt;br /&gt;
* [http://www.shopware.com/ Shopware]&lt;br /&gt;
[[Category: Sales]]&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Shopping_Carts&amp;diff=2320</id>
		<title>Shopping Carts</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Shopping_Carts&amp;diff=2320"/>
				<updated>2014-11-14T17:19:52Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: /* Other Carts */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;E-commerce Shopping Cart Software and Applications&lt;br /&gt;
&lt;br /&gt;
Below is a list of common carts we support.&lt;br /&gt;
&lt;br /&gt;
__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
==Shopping Carts in cPanel==&lt;br /&gt;
*Currently we have 15 Shopping Carts available for cPanel, which can be automatically installed through '''Softaculous''' in the '''Software/Services''' area.&lt;br /&gt;
#OpenCart 1.5&lt;br /&gt;
#PrestaShop&lt;br /&gt;
#AbanteCart&lt;br /&gt;
#osCommerce&lt;br /&gt;
#Zen Cart&lt;br /&gt;
#TomatoCart&lt;br /&gt;
#Quick.Cart&lt;br /&gt;
#LiteCart&lt;br /&gt;
#CubeCart&lt;br /&gt;
#OpenCart&lt;br /&gt;
#AlegroCart&lt;br /&gt;
#CS-Cart&lt;br /&gt;
#Open eShop&lt;br /&gt;
#Zeuscart&lt;br /&gt;
#Shopware&lt;br /&gt;
&lt;br /&gt;
==Shopping Carts in WCP==&lt;br /&gt;
*Currently we have 2 Shopping Carts available for WCP, which are easily installed through '''Applications''' in the '''Reporting and Applications''' area.&lt;br /&gt;
#Magento&lt;br /&gt;
#osCommerce&lt;br /&gt;
&lt;br /&gt;
==osCommerce==&lt;br /&gt;
osCommerce is an Open Source based online shop e-commerce solution that is available for free under the GNU General Public License. It features a rich set of out-of-the-box online shopping cart functionality that allows store owners to setup, run, and maintain their online stores with minimum effort and with no costs, fees, or limitations involved. You can find more information here:&lt;br /&gt;
*This cart works on any of our hosting packages.&lt;br /&gt;
*[http://oscommerce.com/ osCommerce]&lt;br /&gt;
&lt;br /&gt;
==eCommerce Templates==&lt;br /&gt;
eCommerce Templates was set up with the aim of providing a powerful low cost eCommerce shopping cart software solution integrating into the main HTML editors; Dreamweaver, Frontpage and GoLive. We consider this one of the best solutions:&lt;br /&gt;
*This cart works on any of our hosting packages.&lt;br /&gt;
*[http://ecommercetemplates.com/ eCommerce Templates]&lt;br /&gt;
&lt;br /&gt;
==Other Carts==&lt;br /&gt;
There are many other cart solutions available on the internet. We support the most common applications, and usually all minimum requirements for various other shopping cart applications. You can submit a [http://support.HosTek.com support ticket] with any specific questions about a solution not listed here. &lt;br /&gt;
&lt;br /&gt;
* [http://www.prestashop.com/ PrestaShop]&lt;br /&gt;
* [http://www.abantecart.com/ AbanteCart]&lt;br /&gt;
* [http://www.zen-cart.com/ Zen Cart]&lt;br /&gt;
* [http://www.tomatocart.com/ TomatoCart]&lt;br /&gt;
* [http://www.quickcart.com/ Quick.Cart]&lt;br /&gt;
* [http://www.litecart.net/ LiteCart]&lt;br /&gt;
* [http://www.cubecart.com/ CubeCart]&lt;br /&gt;
* [http://www.opencart.com/index.php?route=common/home OpenCart]&lt;br /&gt;
* [http://www.alegrocart.com AlegroCart]&lt;br /&gt;
* [http://www.cs-cart.com/ CS-Cart]&lt;br /&gt;
* [http://open-eshop.com/ Open eShop]&lt;br /&gt;
* [http://zeuscart.com/ Zeuscart]&lt;br /&gt;
* [http://www.shopware.com/ Shopware]&lt;br /&gt;
[[Category: Sales]]&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Shopping_Carts&amp;diff=2319</id>
		<title>Shopping Carts</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Shopping_Carts&amp;diff=2319"/>
				<updated>2014-11-14T16:44:45Z</updated>
		
		<summary type="html">&lt;p&gt;Daniellem: /* Shopping Carts in cPanel */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;E-commerce Shopping Cart Software and Applications&lt;br /&gt;
&lt;br /&gt;
Below is a list of common carts we support.&lt;br /&gt;
&lt;br /&gt;
__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
==Shopping Carts in cPanel==&lt;br /&gt;
*Currently we have 15 Shopping Carts available for cPanel, which can be automatically installed through '''Softaculous''' in the '''Software/Services''' area.&lt;br /&gt;
#OpenCart 1.5&lt;br /&gt;
#PrestaShop&lt;br /&gt;
#AbanteCart&lt;br /&gt;
#osCommerce&lt;br /&gt;
#Zen Cart&lt;br /&gt;
#TomatoCart&lt;br /&gt;
#Quick.Cart&lt;br /&gt;
#LiteCart&lt;br /&gt;
#CubeCart&lt;br /&gt;
#OpenCart&lt;br /&gt;
#AlegroCart&lt;br /&gt;
#CS-Cart&lt;br /&gt;
#Open eShop&lt;br /&gt;
#Zeuscart&lt;br /&gt;
#Shopware&lt;br /&gt;
&lt;br /&gt;
==Shopping Carts in WCP==&lt;br /&gt;
*Currently we have 2 Shopping Carts available for WCP, which are easily installed through '''Applications''' in the '''Reporting and Applications''' area.&lt;br /&gt;
#Magento&lt;br /&gt;
#osCommerce&lt;br /&gt;
&lt;br /&gt;
==osCommerce==&lt;br /&gt;
osCommerce is an Open Source based online shop e-commerce solution that is available for free under the GNU General Public License. It features a rich set of out-of-the-box online shopping cart functionality that allows store owners to setup, run, and maintain their online stores with minimum effort and with no costs, fees, or limitations involved. You can find more information here:&lt;br /&gt;
*This cart works on any of our hosting packages.&lt;br /&gt;
*[http://oscommerce.com/ osCommerce]&lt;br /&gt;
&lt;br /&gt;
==eCommerce Templates==&lt;br /&gt;
eCommerce Templates was set up with the aim of providing a powerful low cost eCommerce shopping cart software solution integrating into the main HTML editors; Dreamweaver, Frontpage and GoLive. We consider this one of the best solutions:&lt;br /&gt;
*This cart works on any of our hosting packages.&lt;br /&gt;
*[http://ecommercetemplates.com/ eCommerce Templates]&lt;br /&gt;
&lt;br /&gt;
==Other Carts==&lt;br /&gt;
There are many other cart solutions available on the internet. We support the most common applications, and usually all minimum requirements for various other shopping cart applications. You can submit a [http://support.HosTek.com support ticket] with any specific questions about a solution not listed here. &lt;br /&gt;
&lt;br /&gt;
[[Category: Sales]]&lt;/div&gt;</summary>
		<author><name>Daniellem</name></author>	</entry>

	</feed>