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

	<entry>
		<id>https://wiki.hostek.com/index.php?title=IIS_Configuration_-_HTTP_Redirect&amp;diff=2812</id>
		<title>IIS Configuration - HTTP Redirect</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=IIS_Configuration_-_HTTP_Redirect&amp;diff=2812"/>
				<updated>2016-03-26T23:23:19Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This article explains how to use the HTTP Redirect section in IIS 7 and above.&lt;br /&gt;
&lt;br /&gt;
==What is it for==&lt;br /&gt;
&lt;br /&gt;
The HTTP Redirect section is used to do one of the following:&lt;br /&gt;
&lt;br /&gt;
*Redirect a file to a different file, to a different folder, or to a different site.&lt;br /&gt;
*Redirect a directory to a file within a different directory, to a different directory, or to a different site.&lt;br /&gt;
*Redirect a site to a different site&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Bottom line''', if you have content that has been moved, and you want to redirect users to the new location of the content, this is a good tool to use.&lt;br /&gt;
&lt;br /&gt;
==What it is not for==&lt;br /&gt;
&lt;br /&gt;
The HTTP Redirect section is '''not''' ideal for doing any of the following:&lt;br /&gt;
&lt;br /&gt;
*It is not for redirecting from &amp;quot;http://domainname.com&amp;quot; to &amp;quot;http://www.domainname.com&amp;quot;&lt;br /&gt;
*It is not for redirecting from &amp;quot;http&amp;quot; to &amp;quot;https&amp;quot; or vice versa&lt;br /&gt;
*It is not for creating SEO friendly URLs&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For all of the above, the proper tools to use are '''&amp;quot;IIS Rewrite&amp;quot;''' or '''&amp;quot;ISAPI_Rewrite&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
==Configuring through IIS Manager GUI==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''How to configure HTTP Redirects directly through the IIS Manager GUI.'''&lt;br /&gt;
&lt;br /&gt;
* Within '''IIS Manager''', choose the specific site, directory, or file you would like to redirect using the 'Sites' tree-menu.  For selecting files, you will need to choose the containing folder, select''' 'Content View' '''toward the bottom of the window, select the specific file, and click''' 'Switch to Features View' '''.&lt;br /&gt;
* Choose '''HTTP Redirect'''&lt;br /&gt;
* Configure the following options:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*'''Redirect requests to this destination'''&lt;br /&gt;
**Checking this option enables the HTTP Redirect&lt;br /&gt;
*'''Destination Box (The text box immediately below the above option)'''&lt;br /&gt;
** Allows you to specify the destination of the redirect&lt;br /&gt;
&lt;br /&gt;
'''Redirect Behavior:'''&lt;br /&gt;
*'''Redirect all requests to the exact destination (instead of relative to destination)'''&lt;br /&gt;
**When this option is checked, browsers will be redirect to the exact URL that was entered in the 'Destination Box' regardless of the original URL.&lt;br /&gt;
**When this option is unchecked, the relative path underneath the redirected site or folder will be maintained at the destination.&lt;br /&gt;
*'''Only redirect requests to content in this directory (not subdirectories)'''&lt;br /&gt;
**Checking this option when setting the redirect on a directory will only redirect traffic within the specific directory.  Traffic going to sub-directories will not be redirected.&lt;br /&gt;
**Leaving this option unchecked will redirect both the current directory and all sub-directories.&lt;br /&gt;
*'''Status Code'''&lt;br /&gt;
**Found (302) - Use this option if the redirect is only temporary.  Browsers will not cache the redirect and search engines will continue attempting to index the source.&lt;br /&gt;
**Permanent (301) - Use this option if the redirect is permanent.  Browsers will cache the redirect and search engines will stop indexing the source and index the destination instead.&lt;br /&gt;
**Temporary (307) - Use this option if the redirect is only temporary, and you want POST data to be redirected to the destination.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Click''' 'Apply' '''.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Configuring directly in web.config file==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On shared servers, you may not have access to the IIS Manager GUI.  In these cases, you can configure the redirect within the control panel '''(IIS Settings =&amp;gt; URL Forwarding)''' or by directory creating/modifying a''' 'web.config' '''file on your site.  Below is how to configure the web.config file:&lt;br /&gt;
&lt;br /&gt;
The following is an example of the''' 'httpRedirect' '''configuration section:&lt;br /&gt;
 &amp;lt;configuration&amp;gt;&lt;br /&gt;
   &amp;lt;system.webServer&amp;gt;&lt;br /&gt;
     &amp;lt;httpRedirect enabled=&amp;quot;true&amp;quot; destination=&amp;quot;http://www.domainname.com/&amp;quot; exactDestination=&amp;quot;false&amp;quot; httpResponseStatus=&amp;quot;Permanent&amp;quot; /&amp;gt;&lt;br /&gt;
   &amp;lt;/system.webServer&amp;gt;&lt;br /&gt;
 &amp;lt;/configuration&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The options are the same as those when using the GUI to configure the redirect (see GUI details above).  If you want the section to affect only a particular file or sub-directory, use the 'location' tag to specify the location that this configuration section should affect.  Example:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;configuration&amp;gt;&lt;br /&gt;
   &amp;lt;location path=&amp;quot;OldPage.html&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;system.webServer&amp;gt;&lt;br /&gt;
       &amp;lt;httpRedirect enabled=&amp;quot;true&amp;quot; destination=&amp;quot;NewPage.html&amp;quot; exactDestination=&amp;quot;true&amp;quot; httpResponseStatus=&amp;quot;Permanent&amp;quot; /&amp;gt;&lt;br /&gt;
     &amp;lt;/system.webServer&amp;gt;&lt;br /&gt;
   &amp;lt;/location&amp;gt;&lt;br /&gt;
 &amp;lt;/configuration&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Importing htaccess rules into Web.Config==&lt;br /&gt;
&lt;br /&gt;
*Access IIS then access the site in question.&lt;br /&gt;
*Acess the URL Rewrite Icon.&lt;br /&gt;
*On the right side click Import.&lt;br /&gt;
*Select your .htaccess file or text file in question to import.&lt;br /&gt;
&lt;br /&gt;
 # BEGIN WordPress&lt;br /&gt;
 #Options +Followsymlinks&lt;br /&gt;
 RewriteEngine On&lt;br /&gt;
 RewriteBase /&lt;br /&gt;
 RewriteCond %{REQUEST_FILENAME} !-f&lt;br /&gt;
 RewriteCond %{REQUEST_FILENAME} !-d&lt;br /&gt;
 RewriteRule . /index.php [NC,L]&lt;br /&gt;
 # END WordPress&lt;br /&gt;
&lt;br /&gt;
*Click confirm.&lt;br /&gt;
&lt;br /&gt;
'''Please Note:''' In some cases you may need to tweak the rules for formatting which it will give an error indication.&amp;lt;br/&amp;gt;&lt;br /&gt;
End Result of the web.config file:&lt;br /&gt;
&lt;br /&gt;
 &amp;lt;?xml version=&amp;quot;1.0&amp;quot; encoding=&amp;quot;UTF-8&amp;quot;?&amp;gt;&lt;br /&gt;
 &amp;lt;configuration&amp;gt;&lt;br /&gt;
  &amp;lt;system.webServer&amp;gt;&lt;br /&gt;
    &amp;lt;rewrite&amp;gt;&lt;br /&gt;
      &amp;lt;rules&amp;gt;&lt;br /&gt;
        &amp;lt;rule name=&amp;quot;wordpress&amp;quot; patternSyntax=&amp;quot;Wildcard&amp;quot;&amp;gt;&lt;br /&gt;
          &amp;lt;match url=&amp;quot;*&amp;quot; /&amp;gt;&lt;br /&gt;
          &amp;lt;conditions&amp;gt;&lt;br /&gt;
            &amp;lt;add input=&amp;quot;{REQUEST_FILENAME}&amp;quot; matchType=&amp;quot;IsFile&amp;quot; negate=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;
            &amp;lt;add input=&amp;quot;{REQUEST_FILENAME}&amp;quot; matchType=&amp;quot;IsDirectory&amp;quot; negate=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;
          &amp;lt;/conditions&amp;gt;&lt;br /&gt;
          &amp;lt;action type=&amp;quot;Rewrite&amp;quot; url=&amp;quot;index.php&amp;quot; /&amp;gt;&lt;br /&gt;
        &amp;lt;/rule&amp;gt;&lt;br /&gt;
      &amp;lt;/rules&amp;gt;&lt;br /&gt;
    &amp;lt;/rewrite&amp;gt;&lt;br /&gt;
  &amp;lt;/system.webServer&amp;gt;&lt;br /&gt;
 &amp;lt;/configuration&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
----&lt;br /&gt;
[[User:Davidd|Davidd]] ([[User talk:Davidd|talk]]) 12:09, 21 June 2013 (CDT)&lt;br /&gt;
&lt;br /&gt;
[[Category:VPS]]&lt;br /&gt;
[[Category:Windows VPS]]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=RDP&amp;diff=2576</id>
		<title>RDP</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=RDP&amp;diff=2576"/>
				<updated>2015-06-12T20:05:36Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
==What is RDP (Remote Desktop Protocol)==&lt;br /&gt;
Remote Desktop Protocol (RDP) is a proprietary protocol developed by Microsoft, which provides a user with a graphical interface to connect to another computer over a network connection.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==How to connect to RDP with Windows PC==&lt;br /&gt;
Two of the more common options.&lt;br /&gt;
# Using mRemote or mRemoteNG (great for managing multiple servers)&lt;br /&gt;
# Start &amp;gt; Run: MSTSC&lt;br /&gt;
&lt;br /&gt;
==How to connect to RDP with Mac==&lt;br /&gt;
A nice RDP solution for the Mac is Cord.  Very similar to mRemote, allowing you to manage multiple servers.&lt;br /&gt;
&lt;br /&gt;
==How to connect to RDP with Phone or Tablet==&lt;br /&gt;
There's a few apps that handle RDP.  One that is common is iTap RDP for iPhone/iPad.&lt;br /&gt;
&lt;br /&gt;
==How to Connect to RDP with TLS 1.0 Disabled ==&lt;br /&gt;
With tls 1.0 disabled on a server you will not be able to use Windows Remote Desktop Client to connect.&lt;br /&gt;
&lt;br /&gt;
#mRemoteNG (Windows)&lt;br /&gt;
#*In the config settings '''Use CredSSP''' will need changed to '''OFF'''.&lt;br /&gt;
#Remmina (Linux)&lt;br /&gt;
#*In the Advanced Tab change the Security from Negotiate to RDP.&lt;br /&gt;
&lt;br /&gt;
==How to lock down RDP on your VPS to just your IP==&lt;br /&gt;
#Within the control panel (WCP), from the top menu choose Account VPS Manager.  &lt;br /&gt;
#Select Firewall Management&lt;br /&gt;
#Find Remote Desktop and click the Edit pencil icon&lt;br /&gt;
#Set the Port Status to Restricted&lt;br /&gt;
#Enter the IP's you want to allow (by default, the system recognized your current IP and enters it for you)&lt;br /&gt;
#Click Save&lt;br /&gt;
#NOTE:  If you are traveling and need temp access to a different IP, just repeat the above steps for the new IP.&lt;br /&gt;
&lt;br /&gt;
==View what IP addresses have accessed Remote Desktop Protocol (RDP) ==&lt;br /&gt;
&lt;br /&gt;
In order to see what IPs have accessed your Windows VPS via RDP, please follow the following instructions:&lt;br /&gt;
&lt;br /&gt;
#Click on Start --&amp;gt; Administrative Tools&lt;br /&gt;
#Select Event Viewer and open it&lt;br /&gt;
#Expand Applications and Services Logs&lt;br /&gt;
#Expand Microsoft&lt;br /&gt;
#Expand Windows&lt;br /&gt;
#Expand TerminalServices-LocalSessionManager&lt;br /&gt;
#In the viewing pane, double click on Operational&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Each information entry is a connection, reconnection, or disconnection and the IP is logged&lt;br /&gt;
&lt;br /&gt;
[[Category: Windows-VPS]]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=ColdFusion_Tips_%26_Tricks&amp;diff=1905</id>
		<title>ColdFusion Tips &amp; Tricks</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=ColdFusion_Tips_%26_Tricks&amp;diff=1905"/>
				<updated>2014-01-06T21:23:17Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: /* How to Wrap Your ColdFusion DSN with Seefusion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Converting Application.cfm to Application.cfc==&lt;br /&gt;
Using an '''Application.cfc''' configuration file offers some advantages over the older style '''Application.cfm''' configuration files. Some of the main features that an Application.cfc file give you are &amp;quot;functions triggered by Application, Session, Request, and Error events&amp;quot; and &amp;quot;Application-Level Mappings and Custom Tag Paths&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
There are only a few steps required to convert an application to use an Application.cfc file:&lt;br /&gt;
&lt;br /&gt;
NOTE: You should ensure that you have a backup of any files before making changes to them.&lt;br /&gt;
&lt;br /&gt;
===Create an '''Application.cfc''' file===&lt;br /&gt;
&lt;br /&gt;
Below is an example '''Application.cfc''' file with the minimum requirements:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;cfcomponent&amp;gt;&lt;br /&gt;
	&amp;lt;cfscript&amp;gt;&lt;br /&gt;
		this.name = hash( getCurrentTemplatePath() ); // unique app name&lt;br /&gt;
	&amp;lt;/cfscript&amp;gt;&lt;br /&gt;
&amp;lt;/cfcomponent&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Setup '''onRequest''' function in '''Application.cfc''' to include the '''Application.cfm''' file&lt;br /&gt;
&lt;br /&gt;
This step is only necessary if an Application.cfm file already exists in the root of the application. Below is what the Application.cfc file will look like after this addition:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;cfcomponent&amp;gt;&lt;br /&gt;
	&amp;lt;cfscript&amp;gt;&lt;br /&gt;
		this.name = hash( getCurrentTemplatePath() ); // unique app name&lt;br /&gt;
	&amp;lt;/cfscript&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;cffunction name=&amp;quot;onRequest&amp;quot; returnType=&amp;quot;void&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;cfargument name=&amp;quot;targetPage&amp;quot; type=&amp;quot;string&amp;quot; required=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
		&amp;lt;!--- Include Application.cfm ---&amp;gt;&lt;br /&gt;
		&amp;lt;cfinclude template=&amp;quot;Application.cfm&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
		&amp;lt;!--- Include the requested page ---&amp;gt;&lt;br /&gt;
		&amp;lt;cfinclude template=&amp;quot;#ARGUMENTS.targetPage#&amp;quot; /&amp;gt;&lt;br /&gt;
	&amp;lt;/cffunction&amp;gt;&lt;br /&gt;
&amp;lt;/cfcomponent&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===Copy application settings from the '''cfapplication''' tag and remove the '''cfapplication''' tag===&lt;br /&gt;
&lt;br /&gt;
This step is only necessary if a cfapplication tag is used within the application. Each attribute of the cfapplication tag will need to be copied into the cfscript section at the top of the Application.cfc with the pattern [this.attributeName = &amp;quot;value&amp;quot;;].&lt;br /&gt;
&lt;br /&gt;
For example. The below cfapplication tag would be converted into our Application.cfc example as follows:&lt;br /&gt;
&lt;br /&gt;
'''cfapplication''' tag:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;cfapplication&lt;br /&gt;
	name = &amp;quot;my_app_name&amp;quot;&lt;br /&gt;
	sessionManagement = &amp;quot;Yes&amp;quot;&lt;br /&gt;
	sessionTimeout = &amp;quot;#createTimeSpan(0,0,20,0)#&amp;quot;&lt;br /&gt;
	setClientCookies = &amp;quot;Yes&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Application.cfc''':&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;cfcomponent&amp;gt;&lt;br /&gt;
	&amp;lt;cfscript&amp;gt;&lt;br /&gt;
		this.name = &amp;quot;my_app_name&amp;quot;; // app name from old cfapplication tag&lt;br /&gt;
		this.sessionManagement = &amp;quot;Yes&amp;quot;;&lt;br /&gt;
		this.sessionTimeout = CreateTimeSpan(0,0,20,0);&lt;br /&gt;
		this.setClientCookies = &amp;quot;Yes&amp;quot;;&lt;br /&gt;
	&amp;lt;/cfscript&amp;gt;&lt;br /&gt;
&lt;br /&gt;
	&amp;lt;cffunction name=&amp;quot;onRequest&amp;quot; returnType=&amp;quot;void&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;cfargument name=&amp;quot;targetPage&amp;quot; type=&amp;quot;string&amp;quot; required=&amp;quot;true&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
		&amp;lt;!--- Include Application.cfm ---&amp;gt;&lt;br /&gt;
		&amp;lt;cfinclude template=&amp;quot;Application.cfm&amp;quot; /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
		&amp;lt;!--- Include the requested page ---&amp;gt;&lt;br /&gt;
		&amp;lt;cfinclude template=&amp;quot;#ARGUMENTS.targetPage#&amp;quot; /&amp;gt;&lt;br /&gt;
	&amp;lt;/cffunction&amp;gt;&lt;br /&gt;
&amp;lt;/cfcomponent&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''NOTE''': Do not forget to remove the '''cfapplication''' tag after copying the settings into the '''Application.cfc''' file.&lt;br /&gt;
&lt;br /&gt;
Now that the change is complete, this is a good time to test the application to ensure everything is working correctly with the new setup.&lt;br /&gt;
&lt;br /&gt;
==CFHTTP Connection Failures over HTTPS==&lt;br /&gt;
===Shared Hosting===&lt;br /&gt;
If you try to use &amp;lt;cfhttp&amp;gt; to connect to a secure site (over HTTPS), you may receive the following error: &amp;quot;Connection Failure: Status code unavailable&amp;quot;&lt;br /&gt;
&lt;br /&gt;
To fix this add the following code to your site's &amp;quot;Application.cfm&amp;quot; file (below the 'cfapplication' tag):&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!--- fix for HTTPS connection failures ---&amp;gt;&lt;br /&gt;
&amp;lt;cfif NOT isDefined(&amp;quot;Application.sslfix&amp;quot;)&amp;gt;&lt;br /&gt;
	&amp;lt;cfset objSecurity = createObject(&amp;quot;java&amp;quot;, &amp;quot;java.security.Security&amp;quot;) /&amp;gt;&lt;br /&gt;
	&amp;lt;cfset objSecurity.removeProvider(&amp;quot;JsafeJCE&amp;quot;) /&amp;gt;&lt;br /&gt;
	&amp;lt;cfset Application.sslfix = true /&amp;gt;&lt;br /&gt;
&amp;lt;/cfif&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
If your site uses an &amp;quot;Application.cfc&amp;quot; file instead, then just place that code in the &amp;quot;'onApplicationStart()&amp;quot; method of that file. After making that adjustment you'll need to restart your ColdFusion application as [[ColdFusion_Tips_%26_Tricks#Restart_a_ColdFusion_Application|shown here]].&lt;br /&gt;
===VPS Hosting===&lt;br /&gt;
If you are having issues connecting to a site or file from with ColdFusion over HTTPS, you can import the remote site's SSL certificate into the the Java SSL Certificate Store used by ColdFusion.&lt;br /&gt;
&lt;br /&gt;
1)Set Java environment&lt;br /&gt;
    C:\ColdFusion10\jre&amp;gt;set JAVA_HOME=c:\coldfusion10\jre&lt;br /&gt;
    C:\ColdFusion10\jre&amp;gt;set PATH=%PATH%;%JAVA_HOME%\bin&lt;br /&gt;
&lt;br /&gt;
2)List what in in keystore&lt;br /&gt;
    keytool -list -storepass changeit -keystore ../lib/security/cacerts&lt;br /&gt;
    Keystore type: JKS&lt;br /&gt;
    Keystore provider: SUN&lt;br /&gt;
    Your keystore contains 76 entries&lt;br /&gt;
&lt;br /&gt;
3)Import certificate in to keystore and list to check added.&lt;br /&gt;
    keytool -importcert -storepass changeit -alias inet -keystore ../lib/security/cacerts -trustcacerts -file c:\temp\inet.cer&lt;br /&gt;
    Trust this certificate? [no]: y&lt;br /&gt;
    Certificate was added to keystore&lt;br /&gt;
&lt;br /&gt;
    keytool -list -storepass changeit -keystore ../lib/security/cacerts&lt;br /&gt;
    Keystore type: JKS&lt;br /&gt;
    Keystore provider: SUN&lt;br /&gt;
    Your keystore contains 77 entries&lt;br /&gt;
&lt;br /&gt;
4)Restart CF10 app service so keystore is re-read.&lt;br /&gt;
&lt;br /&gt;
5)Run your cfhttp request - HTTPS works now!&lt;br /&gt;
&lt;br /&gt;
==CFMAIL Multi-Part Emails==&lt;br /&gt;
Sending emails with both Text and HTML parts helps reduce the chance of your messages getting caught by a mail server's spam filter. It also helps ensure your recipients can read the message regardless of the mail client being used. The easiest way to do this is to store your message in a variable using &amp;lt;cfsavecontent&amp;gt; then adding it to &amp;lt;cfmail&amp;gt; using &amp;lt;cfmailpart&amp;gt; as shown in the example below:&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!--- Store your message in a variable ---&amp;gt;&lt;br /&gt;
&amp;lt;cfsavecontent variable=&amp;quot;myemailcontent&amp;quot;&amp;gt;&lt;br /&gt;
Hello,&lt;br /&gt;
&lt;br /&gt;
This is some plain text. &amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;And this is some more text in HTML. It will appear in plain-text for anyone who views the Text part of this email, though.&amp;lt;/b&amp;gt;&lt;br /&gt;
&amp;lt;/cfsavecontent&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!--- Function to strip HTML from message while preserving line breaks ---&amp;gt;&lt;br /&gt;
&amp;lt;cffunction name= &amp;quot;textMessage&amp;quot; access= &amp;quot;public&amp;quot; returntype= &amp;quot;string&amp;quot; hint= &amp;quot;Converts an html email message into a nicely formatted with line breaks plain text message&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;cfargument name= &amp;quot;string&amp;quot; required= &amp;quot;true&amp;quot; type= &amp;quot;string&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;cfscript&amp;gt;&lt;br /&gt;
      var pattern = &amp;quot; &amp;lt;br&amp;gt;&amp;quot;;&lt;br /&gt;
      var CRLF = chr( 13) &amp;amp; chr( 10);&lt;br /&gt;
      var message = ReplaceNoCase(arguments.string, pattern, CRLF , &amp;quot;ALL&amp;quot;);&lt;br /&gt;
      pattern = &amp;quot;&amp;lt;[^&amp;gt;]*&amp;gt;&amp;quot;;&lt;br /&gt;
    &amp;lt;/cfscript&amp;gt;&lt;br /&gt;
    &amp;lt;cfreturn REReplaceNoCase(message, pattern, &amp;quot;&amp;quot; , &amp;quot;ALL&amp;quot;)&amp;gt;&lt;br /&gt;
&amp;lt;/cffunction&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;!--- Now send the email. When adding the Text part, we'll use the textMessage() function we just created to strip out HTML tags. ---&amp;gt;&lt;br /&gt;
&amp;lt;cfmail from=&amp;quot;sender@domain.com&amp;quot; to=&amp;quot;recipient@anotherdomain.com&amp;quot; subject=&amp;quot;Multi-part Email with CFMAIL&amp;quot; type=&amp;quot;html&amp;quot;&amp;gt;&lt;br /&gt;
    &amp;lt;cfmailpart type= &amp;quot;text/plain&amp;quot; charset= &amp;quot;utf-8&amp;quot;&amp;gt;#textmessage(myemailcontent)#&amp;lt;/cfmailpart&amp;gt;&lt;br /&gt;
    &amp;lt;cfmailpart type= &amp;quot;text/html&amp;quot; charset= &amp;quot;utf-8&amp;quot;&amp;gt;#myemailcontent#&amp;lt;/cfmailpart&amp;gt;&lt;br /&gt;
&amp;lt;/cfmail&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Reference: [http://cookbooks.adobe.com/post_CFMAIL_the_right_way-17875.html CFMAIL the right way]&lt;br /&gt;
&lt;br /&gt;
==Per-Application ColdFusion Mappings==&lt;br /&gt;
In ColdFusion 8 and above, it is possible to create per-application mappings through your site's Application.cfc file. If you wish to convert to using an Application.cfc file, follow the steps [[ColdFusion_Tips_%26_Tricks#Converting_Application.cfm_to_Application|here]]. &lt;br /&gt;
&lt;br /&gt;
Once you have your Application.cfc created, you will insert the following line:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;cfset this.mappings[&amp;quot;/test&amp;quot;]=&amp;quot;d:\home\yourdomainname.com\wwwroot\test&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
On your site though, you would change &amp;quot;/test&amp;quot; to the name of your mapping. IMPORTANT: You need to include the forward slash before the name of your mapping. Also, change &amp;quot;d:\home\yourdomainname.com\wwwroot\test&amp;quot; to the full physical path to the folder you wish to map. &lt;br /&gt;
'''Note''': The physical path to your FTP root is listed in the &amp;quot;Site Settings&amp;quot; of your control panel at wcp.hostek.com.&lt;br /&gt;
&lt;br /&gt;
To call a template named &amp;quot;testing.cfm&amp;quot; in the &amp;quot;test&amp;quot; directory we just mapped, you would use this line: &lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;cfinclude template=&amp;quot;/test/testing.cfm&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Per-Application Custom Tag Paths==&lt;br /&gt;
Starting in ColdFusion 8, ColdFusion allows creation of Custom Tag Paths in each site's Application.cfc file. This allows you to create and manage your Custom Tag Paths without having to use CF Administrator (ie. submit a support ticket). The following steps will help you create a Custom Tag Path:&lt;br /&gt;
&lt;br /&gt;
If you do not already have an Application.cfc file in your site's Web root, create one now.&lt;br /&gt;
Place the following code in the Application.cfc file and save:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;cfcomponent&amp;gt;&lt;br /&gt;
&amp;lt;cfset THIS.customtagpaths=&amp;quot;d:\home\yourdomain.com\wwwroot\customtagfolder&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/cfcomponent&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In this case, you'd replace &amp;quot;yourdomain.com&amp;quot; with your domain name, and &amp;quot;customtagfolder&amp;quot; with the name of the folder you created for your custom tags. &lt;br /&gt;
&lt;br /&gt;
Now you have successfully added your custom tag path. If you have multiple tag paths to add, try using the following code instead:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;cfcomponent&amp;gt;&lt;br /&gt;
&amp;lt;cfset THIS.customtagpaths=ListAppend(THIS.customtagpaths, &amp;quot;d:\home\yourdomain.com\wwwroot\customtagfolder&amp;quot;)&amp;gt;&lt;br /&gt;
&amp;lt;/cfcomponent&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Restart a ColdFusion Application==&lt;br /&gt;
If you ever need to restart your site's ColdFusion application (to pick up a setting change, etc), you can do so via the ApplicationStop() function in ColdFusion 9+. &lt;br /&gt;
&lt;br /&gt;
To use this you can create a file (ex: restart.cfm) containing the following code:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;cfset ApplicationStop() /&amp;gt;&lt;br /&gt;
&amp;lt;cflocation url=&amp;quot;index.cfm&amp;quot; addtoken=&amp;quot;false&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
When you run the file containing that code your ColdFusion Application will be stopped (flushing your application scope), and when the browser is redirected to the index page the application will start again.&lt;br /&gt;
&lt;br /&gt;
==Scheduling Tasks in ColdFusion==&lt;br /&gt;
On occasion shared ColdFusion hosting customers need to setup Scheduled Task to run files on a cycle. &lt;br /&gt;
&lt;br /&gt;
This can be done with the following steps, making use of ColdFusion's &amp;lt;cfschedule&amp;gt; tag:&lt;br /&gt;
&lt;br /&gt;
#Create a file locally using any text editor, save the file with the .CFM extension (example: setschedule_example.cfm).&lt;br /&gt;
#Copy and past in the code example below taken from ''ColdFusion's Documentation'' and save.&lt;br /&gt;
#Replace the data in the example note the following recommendations.&amp;lt;br /&amp;gt;!- Name each file made for creating a schedule with the name of the task so you can reference the task later if needed. Specific naming will also make it more difficult for someone to randomly run the file.&amp;lt;br /&amp;gt;!- If you need to schedule a job to run monthly on any date in the range 28-31, read about how ColdFusion will handle the scheduling in the ColdFuison8 documentation referenced below.&lt;br /&gt;
#Working example, the code example below is a working tested solution for getting the weather for a specific zip code and the task to email the results.&lt;br /&gt;
&lt;br /&gt;
'''Scheduled Task'''&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!-- This sets the initial task, if your just wanting to set the schedule --&amp;gt;&lt;br /&gt;
&amp;lt;cfschedule action = &amp;quot;update&amp;quot;&lt;br /&gt;
    task = &amp;quot;Weather_Send&amp;quot; &lt;br /&gt;
    operation = &amp;quot;HTTPRequest&amp;quot;&lt;br /&gt;
    url = &amp;quot;http://test.hostek.net/weather_send.cfm&amp;quot;&lt;br /&gt;
    startDate = &amp;quot;7/6/09&amp;quot;&lt;br /&gt;
    startTime = &amp;quot;09:30 AM&amp;quot;&lt;br /&gt;
    interval = &amp;quot;3600&amp;quot;&lt;br /&gt;
    resolveURL = &amp;quot;Yes&amp;quot;&lt;br /&gt;
    requestTimeOut = &amp;quot;600&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- This allows for the task created to be deleted, just uncomment and change the task name. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- cfschedule action = &amp;quot;delete&amp;quot;&lt;br /&gt;
    task = &amp;quot;Weather_Send&amp;quot;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- This allows for the task to be paused, just uncomment and change the task name. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- cfschedule action = &amp;quot;pause&amp;quot;&lt;br /&gt;
    task = &amp;quot;Weather_Send&amp;quot;--&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;!-- This allows for the task resumed if paused, just uncomment and change the task name. --&amp;gt;&lt;br /&gt;
&amp;lt;!-- cfschedule action = &amp;quot;resume&amp;quot;&lt;br /&gt;
    task = &amp;quot;Weather_Send&amp;quot;--&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Weather Collector'''&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;head&amp;gt;&lt;br /&gt;
&amp;lt;meta http-equiv=&amp;quot;Content-Type&amp;quot; content=&amp;quot;text/html; charset=utf-8&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;title&amp;gt;CF External Weather Checker&amp;lt;/title&amp;gt;&lt;br /&gt;
&amp;lt;/head&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;body&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;cfset zip=&amp;quot;12345&amp;quot;&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;cfinvoke webservice=&amp;quot;http://ws.cdyne.com/WeatherWS/Weather.asmx?wsdl&amp;quot; method=&amp;quot;getCityWeatherByZIP&amp;quot; returnvariable=&amp;quot;aWeatherReturn&amp;quot;&amp;gt;&lt;br /&gt;
     &amp;lt;cfinvokeargument name=&amp;quot;ZIP&amp;quot; value=&amp;quot;#zip#&amp;quot;/&amp;gt;&lt;br /&gt;
&amp;lt;/cfinvoke&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;cfif aWeatherReturn.temperature EQ &amp;quot;&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;cfoutput&amp;gt; I cannot get the weather for #zip# external http connections must be DOWN.&amp;lt;/cfoutput&amp;gt;&lt;br /&gt;
&amp;lt;cfelse&amp;gt;&lt;br /&gt;
&amp;lt;cfset message=&amp;quot;The temperature for #zip# (Your city) is #aWeatherReturn.temperature# degrees.&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/cfif&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;cfif message NEQ &amp;quot;&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;cfmail from = &amp;quot;weather.server@test.com&amp;quot; to = &amp;quot;test@test.com&amp;quot; subject = &amp;quot;Weather checker&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
#message#&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/cfmail&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/cfif&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&amp;lt;/body&amp;gt;&lt;br /&gt;
&amp;lt;/html&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Session Management - Handling Bots and Spiders==&lt;br /&gt;
===Robots.txt File===&lt;br /&gt;
First and foremost we suggest creating a robots.txt file in the web root of the domain to address two issues. First to control the rate at which the website is being crawled which can help prevent a bot/spider from creating a massive number of database connections at the same time. Second to prevent specific bots from crawling the website. &lt;br /&gt;
&lt;br /&gt;
Please see our [[Robots|robots.txt article]] for more information on implementing a robots.txt on your site.&lt;br /&gt;
&lt;br /&gt;
===Lower Session Timeouts for Bots and Spiders===&lt;br /&gt;
Next we suggest setting your session timeout specifically lower for bots and spiders. These spiders and bots will crawl a page and when a session (ColdFusion) is created, it will persist during then entire page load. The page fully loaded allows the bot or spider to get the information from the Web page AND allows the session to expire quickly protecting ColdFusion from effects similar to a memory leak. &lt;br /&gt;
&lt;br /&gt;
To do this, implement the appropriate solution for your site below:&lt;br /&gt;
&lt;br /&gt;
====If using '''Application.cfm'''====&lt;br /&gt;
Place this code at the top of your Application.cfm file:&amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!--- This checks if a cookie is created, for bots this will return false and use the low session timeout ---&amp;gt;&lt;br /&gt;
&amp;lt;cfif StructKeyExists(cookie, &amp;quot;cfid&amp;quot;) or StructKeyExists(cookie, &amp;quot;jsessionid&amp;quot;)&amp;gt;&lt;br /&gt;
 &amp;lt;cfset REQUEST.sessionTimeout = CreateTimeSpan(0,0,30,0) /&amp;gt;&lt;br /&gt;
&amp;lt;cfelse&amp;gt;&lt;br /&gt;
 &amp;lt;cfset REQUEST.sessionTimeout = CreateTimeSpan(0,0,0,2) /&amp;gt;&lt;br /&gt;
&amp;lt;/cfif&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Then use the '''REQUEST.sessionTimeout''' variable to specify the session timeout period in your '''cfapplication''' tag: &amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;cfapplication name=&amp;quot;myawesomeapp&amp;quot;&lt;br /&gt;
     sessionmanagement=&amp;quot;Yes&amp;quot;&lt;br /&gt;
     sessiontimeout=&amp;quot;#REQUEST.sessionTimeout#&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====If using '''Application.cfc''' (tag-based)====&lt;br /&gt;
If you primarily use cfml tags in your Application.cfc, you can set the Session Timeout like this: &amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;!--- This checks if a cookie is created, for bots this will return false and use the low session timeout ---&amp;gt;&lt;br /&gt;
&amp;lt;cfif StructKeyExists(cookie, &amp;quot;cfid&amp;quot;) or StructKeyExists(cookie, &amp;quot;jsessionid&amp;quot;)&amp;gt;&lt;br /&gt;
 &amp;lt;cfset this.sessiontimeout = CreateTimeSpan(0,0,30,0) /&amp;gt;&lt;br /&gt;
 &amp;lt;cfelse&amp;gt;&lt;br /&gt;
 &amp;lt;cfset this.sessiontimeout = CreateTimeSpan(0,0,0,2) /&amp;gt;&lt;br /&gt;
&amp;lt;/cfif&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
====If using '''Application.cfc''' (cfscript)====&lt;br /&gt;
If instead, you're using cfscipt in your Application.cfc, you'll set the custom Session Timeout like this: &amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&lt;br /&gt;
// This checks if a cookie is created, for bots this will return false and use the low session timeout&lt;br /&gt;
if (StructKeyExists(cookie, &amp;quot;cfid&amp;quot;) || StructKeyExists(cookie, &amp;quot;jsessionid&amp;quot;)){&lt;br /&gt;
this.sessionTimeout 	= createTimeSpan(0,0,30,0);&lt;br /&gt;
} else {&lt;br /&gt;
this.sessionTimeout 	= createTimeSpan(0,0,0,2);&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Reference''': [http://www.bennadel.com/blog/1083-ColdFusion-Session-Management-And-Spiders-Bots.htm Session Management code examples for the Application.cfm]&lt;br /&gt;
&lt;br /&gt;
==Output CF Error details without CFDump==&lt;br /&gt;
It is common in an error handler that you want to output all of the error details to the screen, a file, or an email. Therefore, the cfdump tag is commonly used for this; and, while this works well in development, it is not always the best practice on a production site because of the performance of the cfdump tag due to its use of reflection (Runtime type introspection).&lt;br /&gt;
&lt;br /&gt;
A better performing alternative is to output the information you want directly from the Error/Exception struct within a 'cfoutput' tag. This can be done by looking up the cferror structure or the cfcatch structure in the ColdFusion docs to see what is available and what values you might want to output:&amp;lt;br /&amp;gt;&lt;br /&gt;
'''Error''': https://learn.adobe.com/wiki/display/coldfusionen/cferror&amp;lt;br /&amp;gt;&lt;br /&gt;
'''CFCatch''': https://learn.adobe.com/wiki/display/coldfusionen/cfcatch&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can also use the following link to download an example CF custom tag that will give a similar error output as when using the cfdump tag on an error variable:&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://hostek.com/tutorials/ColdFusion/CF_OutputError.zip http://hostek.com/tutorials/ColdFusion/CF_OutputError.zip]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Below is the custom tag's usage:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the error handler specified in your 'cferror' tag:&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&amp;lt;cf_OutputError Error=&amp;quot;#Error#&amp;quot; /&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above code would replace:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&amp;lt;cfdump var=&amp;quot;#Error#&amp;quot; /&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Or, in a cfcatch block:&lt;br /&gt;
&amp;lt;pre style=&amp;quot;white-space: pre-wrap&amp;quot;&amp;gt;&amp;lt;cftry&amp;gt;&lt;br /&gt;
   ...&lt;br /&gt;
&amp;lt;cfcatch&amp;gt;&lt;br /&gt;
   &amp;lt;cf_OutputCFCatch CFCatch=&amp;quot;#CFCatch#&amp;quot; /&amp;gt;&lt;br /&gt;
&amp;lt;/cfcatch&amp;gt;&lt;br /&gt;
&amp;lt;/cftry&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Configure ColdFusion to Handle html and htm Files==&lt;br /&gt;
In case you need to process ColdFusion code in your .htm or .html files, here is what you will need to do to get this to work. This is based on using ColdFusion on one of our dedicated server hosting accounts on a Windows server.&lt;br /&gt;
&lt;br /&gt;
'''NOTE''': This will affect every site on the server, so use cautiously.&lt;br /&gt;
&lt;br /&gt;
First, you will need to edit the web.xml file located generally at C:\ColdFusion10\cfusion\wwwroot\WEB-INF&lt;br /&gt;
&lt;br /&gt;
Open this file and look for '''coldfusion_mapping_1'''.&lt;br /&gt;
&lt;br /&gt;
Scroll down the file until you see the last number increment like:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;servlet-mapping id=&amp;quot;macromedia_mapping_15&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Then add the following right below the closing &amp;lt;/servlet-mapping&amp;gt; of the last number increment item:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
    &amp;lt;servlet-mapping id=&amp;quot;coldfusion_mapping_16&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;servlet-name&amp;gt;CfmServlet&amp;lt;/servlet-name&amp;gt;&lt;br /&gt;
        &amp;lt;url-pattern&amp;gt;*.html&amp;lt;/url-pattern&amp;gt;&lt;br /&gt;
    &amp;lt;/servlet-mapping&amp;gt;&lt;br /&gt;
    &amp;lt;servlet-mapping id=&amp;quot;coldfusion_mapping_17&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;servlet-name&amp;gt;CfmServlet&amp;lt;/servlet-name&amp;gt;&lt;br /&gt;
        &amp;lt;url-pattern&amp;gt;*.html/*&amp;lt;/url-pattern&amp;gt;&lt;br /&gt;
    &amp;lt;/servlet-mapping&amp;gt;&lt;br /&gt;
    &amp;lt;servlet-mapping id=&amp;quot;coldfusion_mapping_18&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;servlet-name&amp;gt;CfmServlet&amp;lt;/servlet-name&amp;gt;&lt;br /&gt;
        &amp;lt;url-pattern&amp;gt;*.htm&amp;lt;/url-pattern&amp;gt;&lt;br /&gt;
    &amp;lt;/servlet-mapping&amp;gt;&lt;br /&gt;
    &amp;lt;servlet-mapping id=&amp;quot;coldfusion_mapping_19&amp;quot;&amp;gt;&lt;br /&gt;
        &amp;lt;servlet-name&amp;gt;CfmServlet&amp;lt;/servlet-name&amp;gt;&lt;br /&gt;
        &amp;lt;url-pattern&amp;gt;*.htm/*&amp;lt;/url-pattern&amp;gt;&lt;br /&gt;
    &amp;lt;/servlet-mapping&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Save this file and exit.&lt;br /&gt;
&lt;br /&gt;
Now in IIS, setup a mapping for the site:&lt;br /&gt;
#In IIS 7+ click the server name section (right below the '''Start Page''' in the left-hand navigation), then double-click the '''Handler Mappings''' icon.&lt;br /&gt;
#Select and &amp;quot;edit&amp;quot; the '''*.cfm''' record and copy the value of &amp;quot;executable&amp;quot;. Now hit Cancel and then click '''Add Script Map'''. &lt;br /&gt;
#Paste the executable value copied from the '''*.cfm''' record and type '''*.htm''' into the '''Request Path''' and hit OK. &lt;br /&gt;
#Repeat the above steps to add a handler for '''*.html''' &lt;br /&gt;
&lt;br /&gt;
Lastly, open the '''uriworkermap.properties''' file for your ColdFusion 10 IIS Connector in a text editor such as Notepad. On a standard ColdFusion installation this is located at: &amp;lt;pre&amp;gt;C:\ColdFusion10\config\wsconfig\1\uriworkermap.properties&amp;lt;/pre&amp;gt;&lt;br /&gt;
Copy the following lines, paste them at the bottom of the file, then save and close the file: &amp;lt;pre&amp;gt;/*.html = cfusion&lt;br /&gt;
/*.htm = cfusion&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Now restart the ColdFusion service and IIS. ColdFusion should begin processing CFML within htm/html files now.&lt;br /&gt;
&lt;br /&gt;
==Increase the ColdFusion Post Parameters Limit==&lt;br /&gt;
===ColdFusion 10===&lt;br /&gt;
In ColdFusion 10, you can easily increase the value of ColdFusion's '''postParametersLimit''' via the ColdFusion Administrator. Once logged into the ColdFusion Administrator, click the '''Settings''' link then scroll to the bottom of the page. Set the value for the Post Parameters Limit to the desired limit and click the submit button. &lt;br /&gt;
===ColdFusion 9 and below===&lt;br /&gt;
To adjust the Post Parameters Limit setting in ColdFusion 9 and below, you will have to edit the server's '''neo-runtime.xml''' file which is located here on a standard installation: &amp;lt;pre&amp;gt;C:\ColdFusion9\lib&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Open that file in a text editor such as Notepad, then search for the '''postSizeLimit''' tag. It will look similar to this: &amp;lt;pre&amp;gt;&amp;lt;var name='postSizeLimit'&amp;gt;&amp;lt;number&amp;gt;100.0&amp;lt;/number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Immediately after that set of tags, paste this chunk of text: &amp;lt;pre&amp;gt;&amp;lt;var name='postParametersLimit'&amp;gt;&amp;lt;number&amp;gt;1000.0&amp;lt;/number&amp;gt;&amp;lt;/var&amp;gt;&amp;lt;/pre&amp;gt;&lt;br /&gt;
Once you've adjusted the file, you'll just need to save your changes and restart ColdFusion for the new setting to go into effect. '''Note''': The value of '''1000''' is just an example, so you can increase it as needed. &lt;br /&gt;
[[Category:ColdFusion]]&lt;br /&gt;
&lt;br /&gt;
==Loading custom Java library or Java Libraries (jar or class files) in ColdFusion 10==&lt;br /&gt;
ColdFusion 10 makes it easy to load Java libraries into your ColdFusion application without having to restart ColdFusion. All that's required is your application define the 'THIS.javaSettings' attribute within the site's Application.cfc like below:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;cfset THIS.javaSettings = {LoadPaths = [&amp;quot;/javafiles/&amp;quot;],reloadOnChange=true,watchInterval=30}/&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The above code will check the &amp;quot;javafiles&amp;quot; directory in your Web root for 'jar' and 'class' files and make any libraries within the directory accessible from your ColdFusion application. ColdFusion will also check for changes to the files every 30 seconds and reload the libraries if it notices any changes to the files.&lt;br /&gt;
&lt;br /&gt;
''Reference'': [http://help.adobe.com/en_US/ColdFusion/10.0/Developing/WSe61e35da8d318518-106e125d1353e804331-7ffc.html Adobe ColdFusion Documentation - Using a Java Class]&lt;br /&gt;
&lt;br /&gt;
==How to handle ColdFusion Error '''Permission denied for creating Java object: coldfusion.server.ServiceFactory'''==&lt;br /&gt;
===When using Mura or using Transfer ORM===&lt;br /&gt;
====Issue====&lt;br /&gt;
If you are using '''Mura''' or using '''Transfer ORM''' and you get this error, '''Permission denied for creating Java object: coldfusion.server.ServiceFactory''', you are likely using an outdated version of Mura and also are probably on a ColdFusion 9 server. The Transfer ORM component causing this issue has not been updated to work with ColdFusion 9. There is a quick fix though:&lt;br /&gt;
====Solution====&lt;br /&gt;
Find the file named CFMLVersion.cfc which should be at '''/wwwroot/requirements/transfer/com/factory'''.&lt;br /&gt;
&lt;br /&gt;
Edit that file and find the line that has:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
if(server.coldfusion.productversion.startsWith(&amp;quot;8&amp;quot;))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
And change that to:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
if(server.coldfusion.productversion.startsWith(&amp;quot;8&amp;quot;) OR server.coldfusion.productversion.startsWith(&amp;quot;9&amp;quot;))&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Save the file and it should now work.&lt;br /&gt;
&lt;br /&gt;
'''NOTE''': Since this is likely running an outdated version of Mura, I would strongly suggest installing the latest version as the Blue River team has updated Mura's frameworks to make the software perform faster too.&lt;br /&gt;
===When using DataMgr===&lt;br /&gt;
If you get this error while using DataMgr.cfc, the changes described below will solve this problem:&lt;br /&gt;
&lt;br /&gt;
Here is the section of code from the original DataMgr.cfc:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;cffunction name=&amp;quot;getDataBase&amp;quot; access=&amp;quot;public&amp;quot; returntype=&amp;quot;string&amp;quot; output=&amp;quot;no&amp;quot; hint=&amp;quot;I return the database platform being used.&amp;quot;&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
	&amp;lt;cfset var connection = 0&amp;gt;&lt;br /&gt;
	&amp;lt;cfset var db = &amp;quot;&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;cfset var type = &amp;quot;&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;cfset var qDatabases = getSupportedDatabases()&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
	&amp;lt;cfif Len(variables.datasource)&amp;gt;&lt;br /&gt;
		&amp;lt;cfset connection = getConnection()&amp;gt;&lt;br /&gt;
		&amp;lt;cfset db = connection.getMetaData().getDatabaseProductName()&amp;gt;&lt;br /&gt;
		&amp;lt;cfset connection.close()&amp;gt;&lt;br /&gt;
		&lt;br /&gt;
		&amp;lt;cfswitch expression=&amp;quot;#db#&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;cfcase value=&amp;quot;Microsoft SQL Server&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;cfset type = &amp;quot;MSSQL&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;/cfcase&amp;gt;&lt;br /&gt;
		&amp;lt;cfcase value=&amp;quot;MySQL&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;cfset type = &amp;quot;MYSQL&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;/cfcase&amp;gt;&lt;br /&gt;
		&amp;lt;cfcase value=&amp;quot;PostgreSQL&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;cfset type = &amp;quot;PostGreSQL&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;/cfcase&amp;gt;&lt;br /&gt;
		&amp;lt;cfcase value=&amp;quot;Oracle&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;cfset type = &amp;quot;Oracle&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;/cfcase&amp;gt;&lt;br /&gt;
		&amp;lt;cfcase value=&amp;quot;MS Jet&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;cfset type = &amp;quot;Access&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;/cfcase&amp;gt;&lt;br /&gt;
		&amp;lt;cfcase value=&amp;quot;Apache Derby&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;cfset type = &amp;quot;Derby&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;/cfcase&amp;gt;&lt;br /&gt;
		&amp;lt;cfdefaultcase&amp;gt;&lt;br /&gt;
			&amp;lt;cfif ListFirst(db,&amp;quot;/&amp;quot;) EQ &amp;quot;DB2&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;cfset type = &amp;quot;DB2&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;cfelse&amp;gt;&lt;br /&gt;
				&amp;lt;cfset type = &amp;quot;unknown&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;cfset type = db2&amp;gt;&lt;br /&gt;
			&amp;lt;/cfif&amp;gt;&lt;br /&gt;
		&amp;lt;/cfdefaultcase&amp;gt;&lt;br /&gt;
		&amp;lt;/cfswitch&amp;gt;&lt;br /&gt;
	&amp;lt;cfelse&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Here is what the modified code should look like (this sample assume MySQL)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;cffunction name=&amp;quot;getDataBase&amp;quot; access=&amp;quot;public&amp;quot; returntype=&amp;quot;string&amp;quot; output=&amp;quot;no&amp;quot; hint=&amp;quot;I return the database platform being used.&amp;quot;&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
	&amp;lt;cfset var connection = 0&amp;gt;&lt;br /&gt;
	&amp;lt;cfset var db = &amp;quot;&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;cfset var type = &amp;quot;&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;cfset var qDatabases = getSupportedDatabases()&amp;gt;&lt;br /&gt;
	&lt;br /&gt;
	&amp;lt;cfif Len(variables.datasource)&amp;gt;&lt;br /&gt;
		&amp;lt;!-- cfset connection = getConnection() --&amp;gt;&lt;br /&gt;
		&amp;lt;!-- cfset db = connection.getMetaData().getDatabaseProductName() --&amp;gt;&lt;br /&gt;
		&amp;lt;!-- cfset connection.close() --&amp;gt;&lt;br /&gt;
		&lt;br /&gt;
		&amp;lt;cfswitch expression=&amp;quot;#db#&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;cfcase value=&amp;quot;Microsoft SQL Server&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;cfset type = &amp;quot;MSSQL&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;/cfcase&amp;gt;&lt;br /&gt;
		&amp;lt;cfcase value=&amp;quot;MySQL&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;cfset type = &amp;quot;MYSQL&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;/cfcase&amp;gt;&lt;br /&gt;
		&amp;lt;cfcase value=&amp;quot;PostgreSQL&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;cfset type = &amp;quot;PostGreSQL&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;/cfcase&amp;gt;&lt;br /&gt;
		&amp;lt;cfcase value=&amp;quot;Oracle&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;cfset type = &amp;quot;Oracle&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;/cfcase&amp;gt;&lt;br /&gt;
		&amp;lt;cfcase value=&amp;quot;MS Jet&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;cfset type = &amp;quot;Access&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;/cfcase&amp;gt;&lt;br /&gt;
		&amp;lt;cfcase value=&amp;quot;Apache Derby&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;cfset type = &amp;quot;Derby&amp;quot;&amp;gt;&lt;br /&gt;
		&amp;lt;/cfcase&amp;gt;&lt;br /&gt;
		&amp;lt;cfdefaultcase&amp;gt;&lt;br /&gt;
			&amp;lt;cfif ListFirst(db,&amp;quot;/&amp;quot;) EQ &amp;quot;DB2&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;cfset type = &amp;quot;DB2&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;cfelse&amp;gt;&lt;br /&gt;
				&amp;lt;cfset type = &amp;quot;unknown&amp;quot;&amp;gt;&lt;br /&gt;
				&amp;lt;cfset type = &amp;quot;db2&amp;quot;&amp;gt;&lt;br /&gt;
			&amp;lt;/cfif&amp;gt;&lt;br /&gt;
		&amp;lt;/cfdefaultcase&amp;gt;&lt;br /&gt;
		&amp;lt;/cfswitch&amp;gt;&lt;br /&gt;
                &amp;lt;cfset type = &amp;quot;MYSQL&amp;quot;&amp;gt;&lt;br /&gt;
	&amp;lt;cfelse&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Summary of changes''':&lt;br /&gt;
&lt;br /&gt;
These 3 lines were commented out:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
		&amp;lt;!-- cfset connection = getConnection() --&amp;gt;&lt;br /&gt;
		&amp;lt;!-- cfset db = connection.getMetaData().getDatabaseProductName() --&amp;gt;&lt;br /&gt;
		&amp;lt;!-- cfset connection.close() --&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This line needed quotes around db2:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
		&amp;lt;cfset type = &amp;quot;db2&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
And lastly, this line needed added:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
                &amp;lt;cfset type = &amp;quot;MYSQL&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''NOTE''': If you are using an MS Access database instead of MySQL, replace MYSQL with msaccessjet on the line that is added.&lt;br /&gt;
&lt;br /&gt;
==How to handle ColdFusion Error '''Security: The requested template has been denied access to {file/directory}'''==&lt;br /&gt;
===Issue===&lt;br /&gt;
Our shared servers have ColdFusion Sandbox Security enabled, which requires absolute filesystem paths to be provided to tags and functions that interact with the filesystem. If you receive an error that starts with '''Security: The requested template has been denied access to''' then it is followed by a relative path, you'll need to replace the relative path with a full path.&lt;br /&gt;
===Solution===&lt;br /&gt;
One way to do this is to hard-code the path (''d:\home\sitename.com\wwwroot\filename.jpg''), but that can cause portability problems if your site is ever moved to a different environment. &lt;br /&gt;
&lt;br /&gt;
However, a better way to do this would be to &amp;quot;wrap&amp;quot; your relative path with the ExpandPath() function. The ExpandPath() function will automatically detect the absolute filesystem path to the file, and ColdFusion will no longer give you a permissions error. &lt;br /&gt;
&lt;br /&gt;
'''More info''': [https://learn.adobe.com/wiki/display/coldfusionen/ExpandPath Adobe Documentation - ExpandPath]&lt;br /&gt;
&lt;br /&gt;
==How to Wrap Your ColdFusion DSN with Seefusion==&lt;br /&gt;
If you wish to have Seefusion monitor your server's query activity, you'll need to &amp;quot;wrap&amp;quot; your DSN with SeeFusion's JDBC driver so Seefusion can monitor the DSN's activity. &lt;br /&gt;
===Install SeeDSN===&lt;br /&gt;
SeeDSN is a plugin for ColdFusion Administrator that makes it easy to wrap a DSN with Seefusion. Follow these directions to install SeeDSN:&lt;br /&gt;
#Download the SeeDSN archive [http://www.seefusion.com/seedsn_v1.1.zip here].&lt;br /&gt;
#Extract the '''seedsn''' folder within the archive to your '''/CFIDE/Administrator/''' folder. This means it will be located at ''/CFIDE/Administrator/seedsn'' once extracted. &lt;br /&gt;
#Move ''/CFIDE/Administrator/seedsn/custommenu.xml'' to ''/CFIDE/Administrator/custommenu.xml''&lt;br /&gt;
===Add Seefusion.jar to the ColdFusion Classpath===&lt;br /&gt;
In order for ColdFusion to use Seefusion's JDBC driver, you'll need to ensure '''seefusion.jar''' is on your ColdFusion class path. Follow these directions to add seefusion.jar to the Coldfusion class path:&lt;br /&gt;
#Log into your server's ColdFusion Administrator&lt;br /&gt;
#Click the '''Java and JVM''' link on the left, under Server Settings.&lt;br /&gt;
#In the box labeled '''ColdFusion Class Path''' add the path to your '''seefusion.jar''' file and click ''Submit Changes''. For example, if it is located in ColdFusion's &amp;quot;WEB-INF\lib&amp;quot; folder, you can add this to the Class Path: '''{application.home}/wwwroot/WEB-INF/lib/seefusion.jar'''. &lt;br /&gt;
#*Each path in the ColdFusion Class Path is separated by a comma, so be sure to add a comma right before the path to seefusion.jar (do not add any spaces).&lt;br /&gt;
#Restart ColdFusion after modifying the class path&lt;br /&gt;
&lt;br /&gt;
===Wrap a DSN using SeeDSN===&lt;br /&gt;
Once you've installed SeeDSN and restarted ColdFusion, you can wrap a DSN with the SeeFusion JDBC driver. Follow these instructions to do so: &lt;br /&gt;
#Log into ColdFusion Administrator&lt;br /&gt;
#Expand the ''SeeFusion'' navigation menu on the left and click '''Datasource Wrapper'''&lt;br /&gt;
#On the ''Datasource Wrapper'' page, you'll see a list of DSNs on your server. To wrap a DSN, click the ''Start'' [[File:Start.png]] icon next to your DSN. SeeDSN will automatically wrap your DSN with the SeeFusion driver and display '''OK''' if it is successful.&lt;br /&gt;
&lt;br /&gt;
''Reference: [http://www.webapper.com/blog/index.php/2009/06/08/seedsn-a-jdbc-wrapping-tool-for-use-with-seefusion/ WebApper Blog]''&lt;br /&gt;
&lt;br /&gt;
==Using fckEditor on CF10==&lt;br /&gt;
When getting the following error for fckEditor:&lt;br /&gt;
 &amp;quot;The server didn't reply with a proper XML data. Please check your configuration.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
If you are on a ColdFusion 10 server this will be cause by the FileUpload() function that is being used.&lt;br /&gt;
In ColdFusion 10 'FileUpload' is a built-in function name, so you'll need to rename the 'FileUpload' function used in fckeditor.&lt;br /&gt;
You can update the text for fckeditor by changing all instances of &amp;quot;FileUpload&amp;quot; to &amp;quot;fckFileUpload&amp;quot; to remove this conflict.&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

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

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

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

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1399</id>
		<title>Blocked</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1399"/>
				<updated>2013-05-23T18:35:32Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Linux Hosting=&lt;br /&gt;
&lt;br /&gt;
==Blocked from the Server?==&lt;br /&gt;
You seem to be running into issues where you are no longer able to access your email or cannot see your site any more. Chances are you have been blocked by the server in efforts it uses to protect itself from attacks.&lt;br /&gt;
&lt;br /&gt;
===Most Possible Causes===&lt;br /&gt;
#Too many failed email login attempts.&amp;lt;br /&amp;gt;'''Note:''' This is both Webmail and [[Email_Client_Setup_Tutorials|Email Client Programs]].&amp;lt;br /&amp;gt;IE: bad password stored.&lt;br /&gt;
#Too many failed FTP login attempts.&lt;br /&gt;
#Too many failed Control panel login attempts.&lt;br /&gt;
#[[Excessive_404_errors_causing_IP_address_to_be_blocked|Too Many 404 errors generated within a short time frame.]]&lt;br /&gt;
&lt;br /&gt;
==How to verify you have been blocked.==&lt;br /&gt;
&lt;br /&gt;
===How to obtain your IP address===&lt;br /&gt;
Please use the link below to check what your IP is.&lt;br /&gt;
 [http://hostek.com/ip http://hostek.com/ip]&lt;br /&gt;
&lt;br /&gt;
===What to do once you have your IP address===&lt;br /&gt;
Once you have your IP address you will need to contact support to notify them that you want to verify your IP is not blocked as you are currently having issues with accessing your domain.&amp;lt;br /&amp;gt;Be sure to include the following:&lt;br /&gt;
 Domain Name:&lt;br /&gt;
 Your IP:&lt;br /&gt;
 And that you want to verify if your IP has been blocked since you are unable to access either:&amp;lt;br /&amp;gt;Your '''Email''', Your '''Control Panel''', or Your '''Domain'''.&lt;br /&gt;
[https://support.hostek.com https://support.hostek.com]&lt;br /&gt;
&lt;br /&gt;
==For VPS customers==&lt;br /&gt;
&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Scroll down until you see the button &amp;quot;Search for IP&amp;quot;&lt;br /&gt;
#Input the IP in the search field and check for the results.&amp;lt;br /&amp;gt;'''NOTE:''' If the IP turns in results then you will need to click the Unlock to remove the block.&lt;br /&gt;
&lt;br /&gt;
===Want to Block an IP instead?===&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Look for your '''Quick Deny''' button and type in the IP address that you want to block in the Pink highlighted field.&lt;br /&gt;
#Click the '''Quick Deny''' button to block that malicious IP.&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Linux-VPS]]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1398</id>
		<title>Blocked</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1398"/>
				<updated>2013-05-23T18:34:43Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: /* How to obtain your IP address */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Linux Hosting=&lt;br /&gt;
&lt;br /&gt;
==Blocked from the Server?==&lt;br /&gt;
You seem to be running into issues where you are no longer able to access your email or cannot see your site any more. Chances are you have been blocked by the server in efforts it uses to protect itself from attacks.&lt;br /&gt;
&lt;br /&gt;
===Most Possible Causes===&lt;br /&gt;
#Too many failed email login attempts.&amp;lt;br /&amp;gt;'''Note:''' This is both Webmail and [[Email_Client_Setup_Tutorials|Email Client Programs]].&amp;lt;br /&amp;gt;IE: bad password stored.&lt;br /&gt;
#Too many failed FTP login attempts.&lt;br /&gt;
#Too many failed Control panel login attempts.&lt;br /&gt;
#[[Excessive_404_errors_causing_IP_address_to_be_blocked|Too Many 404 errors generated within a short time frame.]]&lt;br /&gt;
&lt;br /&gt;
==How to verify you have been blocked.==&lt;br /&gt;
&lt;br /&gt;
===How to obtain your IP address===&lt;br /&gt;
Please use the link below to check what your IP is.&lt;br /&gt;
 [ http://hostek.com/ip]&lt;br /&gt;
&lt;br /&gt;
===What to do once you have your IP address===&lt;br /&gt;
Once you have your IP address you will need to contact support to notify them that you want to verify your IP is not blocked as you are currently having issues with accessing your domain.&amp;lt;br /&amp;gt;Be sure to include the following:&lt;br /&gt;
 Domain Name:&lt;br /&gt;
 Your IP:&lt;br /&gt;
 And that you want to verify if your IP has been blocked since you are unable to access either:&amp;lt;br /&amp;gt;Your '''Email''', Your '''Control Panel''', or Your '''Domain'''.&lt;br /&gt;
[https://support.hostek.com https://support.hostek.com]&lt;br /&gt;
&lt;br /&gt;
==For VPS customers==&lt;br /&gt;
&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Scroll down until you see the button &amp;quot;Search for IP&amp;quot;&lt;br /&gt;
#Input the IP in the search field and check for the results.&amp;lt;br /&amp;gt;'''NOTE:''' If the IP turns in results then you will need to click the Unlock to remove the block.&lt;br /&gt;
&lt;br /&gt;
===Want to Block an IP instead?===&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Look for your '''Quick Deny''' button and type in the IP address that you want to block in the Pink highlighted field.&lt;br /&gt;
#Click the '''Quick Deny''' button to block that malicious IP.&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Linux-VPS]]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Service_Timeout&amp;diff=1389</id>
		<title>Service Timeout</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Service_Timeout&amp;diff=1389"/>
				<updated>2013-05-20T21:32:51Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: /* Changing the Service Timeout on your VPS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Changing the Service Timeout on your VPS===&lt;br /&gt;
&lt;br /&gt;
Sometimes when updates are applied to Windows, the server will require a reboot.  Since the server is applying updates, this can sometimes cause certain services to timeout during startup that normally would not.  You can change the service timeout on your VPS to help prevent this problem.  To change the timeout, follow these steps:&lt;br /&gt;
&lt;br /&gt;
#Go to Start &amp;gt; Run &amp;gt; and type regedit&lt;br /&gt;
#Navigate to: HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control&lt;br /&gt;
#With the control folder selected, right click in the pane on the right and select new DWORD Value&lt;br /&gt;
#Name the new DWORD: ServicesPipeTimeout &lt;br /&gt;
#Right-click ServicesPipeTimeout, and then click Modify&lt;br /&gt;
#Click Decimal, type '300000' (for a 5 minute timeout), and then click OK&lt;br /&gt;
#Restart the computer&lt;br /&gt;
&lt;br /&gt;
This will change your timeout settings and give services longer to start up after updates before the server will auto time them out and kill the process.&lt;br /&gt;
&lt;br /&gt;
[[Category:VPS]]&lt;br /&gt;
[[Category:Windows-VPS]]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1386</id>
		<title>Blocked</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1386"/>
				<updated>2013-05-16T15:46:28Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: /* How to obtain your IP address */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Linux Hosting=&lt;br /&gt;
&lt;br /&gt;
==Blocked from the Server?==&lt;br /&gt;
You seem to be running into issues where you are no longer able to access your email or cannot see your site any more. Chances are you have been blocked by the server in efforts it uses to protect itself from attacks.&lt;br /&gt;
&lt;br /&gt;
===Most Possible Causes===&lt;br /&gt;
#Too many failed email login attempts.&amp;lt;br /&amp;gt;'''Note:''' This is both Webmail and [[Email_Client_Setup_Tutorials|Email Client Programs]].&amp;lt;br /&amp;gt;IE: bad password stored.&lt;br /&gt;
#Too many failed FTP login attempts.&lt;br /&gt;
#Too many failed Control panel login attempts.&lt;br /&gt;
#[[Excessive_404_errors_causing_IP_address_to_be_blocked|Too Many 404 errors generated within a short time frame.]]&lt;br /&gt;
&lt;br /&gt;
==How to verify you have been blocked.==&lt;br /&gt;
&lt;br /&gt;
===How to obtain your IP address===&lt;br /&gt;
Below will display your IP to provide tech support if required.&lt;br /&gt;
 Your IP is: '''{{USERREALIP}}'''&lt;br /&gt;
&lt;br /&gt;
===What to do once you have your IP address===&lt;br /&gt;
Once you have your IP address you will need to contact support to notify them that you want to verify your IP is not blocked as you are currently having issues with accessing your domain.&amp;lt;br /&amp;gt;Be sure to include the following:&lt;br /&gt;
 Domain Name:&lt;br /&gt;
 Your IP:&lt;br /&gt;
 And that you want to verify if your IP has been blocked since you are unable to access either:&amp;lt;br /&amp;gt;Your '''Email''', Your '''Control Panel''', or Your '''Domain'''.&lt;br /&gt;
[https://support.hostek.com https://support.hostek.com]&lt;br /&gt;
&lt;br /&gt;
==For VPS customers==&lt;br /&gt;
&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Scroll down until you see the button &amp;quot;Search for IP&amp;quot;&lt;br /&gt;
#Input the IP in the search field and check for the results.&amp;lt;br /&amp;gt;'''NOTE:''' If the IP turns in results then you will need to click the Unlock to remove the block.&lt;br /&gt;
&lt;br /&gt;
===Want to Block an IP instead?===&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Look for your '''Quick Deny''' button and type in the IP address that you want to block in the Pink highlighted field.&lt;br /&gt;
#Click the '''Quick Deny''' button to block that malicious IP.&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Linux-VPS]]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1380</id>
		<title>Blocked</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1380"/>
				<updated>2013-05-11T21:05:00Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: /* How to obtain your IP address */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Linux Hosting=&lt;br /&gt;
&lt;br /&gt;
==Blocked from the Server?==&lt;br /&gt;
You seem to be running into issues where you are no longer able to access your email or cannot see your site any more. Chances are you have been blocked by the server in efforts it uses to protect itself from attacks.&lt;br /&gt;
&lt;br /&gt;
===Most Possible Causes===&lt;br /&gt;
#Too many failed email login attempts.&amp;lt;br /&amp;gt;'''Note:''' This is both Webmail and [[Email_Client_Setup_Tutorials|Email Client Programs]].&amp;lt;br /&amp;gt;IE: bad password stored.&lt;br /&gt;
#Too many failed FTP login attempts.&lt;br /&gt;
#Too many failed Control panel login attempts.&lt;br /&gt;
#[[Excessive_404_errors_causing_IP_address_to_be_blocked|Too Many 404 errors generated within a short time frame.]]&lt;br /&gt;
&lt;br /&gt;
==How to verify you have been blocked.==&lt;br /&gt;
&lt;br /&gt;
===How to obtain your IP address===&lt;br /&gt;
Below will display your IP to provide tech support if required.&lt;br /&gt;
 Your IP is: '''{{USERIP}}'''&lt;br /&gt;
&lt;br /&gt;
===What to do once you have your IP address===&lt;br /&gt;
Once you have your IP address you will need to contact support to notify them that you want to verify your IP is not blocked as you are currently having issues with accessing your domain.&amp;lt;br /&amp;gt;Be sure to include the following:&lt;br /&gt;
 Domain Name:&lt;br /&gt;
 Your IP:&lt;br /&gt;
 And that you want to verify if your IP has been blocked since you are unable to access either:&amp;lt;br /&amp;gt;Your '''Email''', Your '''Control Panel''', or Your '''Domain'''.&lt;br /&gt;
[https://support.hostek.com https://support.hostek.com]&lt;br /&gt;
&lt;br /&gt;
==For VPS customers==&lt;br /&gt;
&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Scroll down until you see the button &amp;quot;Search for IP&amp;quot;&lt;br /&gt;
#Input the IP in the search field and check for the results.&amp;lt;br /&amp;gt;'''NOTE:''' If the IP turns in results then you will need to click the Unlock to remove the block.&lt;br /&gt;
&lt;br /&gt;
===Want to Block an IP instead?===&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Look for your '''Quick Deny''' button and type in the IP address that you want to block in the Pink highlighted field.&lt;br /&gt;
#Click the '''Quick Deny''' button to block that malicious IP.&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Linux-VPS]]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1379</id>
		<title>Blocked</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1379"/>
				<updated>2013-05-11T18:10:41Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: /* How to obtain your IP address */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Linux Hosting=&lt;br /&gt;
&lt;br /&gt;
==Blocked from the Server?==&lt;br /&gt;
You seem to be running into issues where you are no longer able to access your email or cannot see your site any more. Chances are you have been blocked by the server in efforts it uses to protect itself from attacks.&lt;br /&gt;
&lt;br /&gt;
===Most Possible Causes===&lt;br /&gt;
#Too many failed email login attempts.&amp;lt;br /&amp;gt;'''Note:''' This is both Webmail and [[Email_Client_Setup_Tutorials|Email Client Programs]].&amp;lt;br /&amp;gt;IE: bad password stored.&lt;br /&gt;
#Too many failed FTP login attempts.&lt;br /&gt;
#Too many failed Control panel login attempts.&lt;br /&gt;
#[[Excessive_404_errors_causing_IP_address_to_be_blocked|Too Many 404 errors generated within a short time frame.]]&lt;br /&gt;
&lt;br /&gt;
==How to verify you have been blocked.==&lt;br /&gt;
&lt;br /&gt;
===How to obtain your IP address===&lt;br /&gt;
 Your IP is: '''{{USERIP}}'''&lt;br /&gt;
&lt;br /&gt;
===What to do once you have your IP address===&lt;br /&gt;
Once you have your IP address you will need to contact support to notify them that you want to verify your IP is not blocked as you are currently having issues with accessing your domain.&amp;lt;br /&amp;gt;Be sure to include the following:&lt;br /&gt;
 Domain Name:&lt;br /&gt;
 Your IP:&lt;br /&gt;
 And that you want to verify if your IP has been blocked since you are unable to access either:&amp;lt;br /&amp;gt;Your '''Email''', Your '''Control Panel''', or Your '''Domain'''.&lt;br /&gt;
[https://support.hostek.com https://support.hostek.com]&lt;br /&gt;
&lt;br /&gt;
==For VPS customers==&lt;br /&gt;
&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Scroll down until you see the button &amp;quot;Search for IP&amp;quot;&lt;br /&gt;
#Input the IP in the search field and check for the results.&amp;lt;br /&amp;gt;'''NOTE:''' If the IP turns in results then you will need to click the Unlock to remove the block.&lt;br /&gt;
&lt;br /&gt;
===Want to Block an IP instead?===&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Look for your '''Quick Deny''' button and type in the IP address that you want to block in the Pink highlighted field.&lt;br /&gt;
#Click the '''Quick Deny''' button to block that malicious IP.&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Linux-VPS]]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1374</id>
		<title>Blocked</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1374"/>
				<updated>2013-05-10T00:21:07Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: /* Want to Block an IP instead? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Linux Hosting=&lt;br /&gt;
&lt;br /&gt;
==Blocked from the Server?==&lt;br /&gt;
You seem to be running into issues where you are no longer able to access your email or cannot see your site any more. Chances are you have been blocked by the server in efforts it uses to protect itself from attacks.&lt;br /&gt;
&lt;br /&gt;
===Most Possible Causes===&lt;br /&gt;
#Too many failed email login attempts.&amp;lt;br /&amp;gt;'''Note:''' This is both Webmail and [[Email_Client_Setup_Tutorials|Email Client Programs]].&amp;lt;br /&amp;gt;IE: bad password stored.&lt;br /&gt;
#Too many failed FTP login attempts.&lt;br /&gt;
#Too many failed Control panel login attempts.&lt;br /&gt;
#[[Excessive_404_errors_causing_IP_address_to_be_blocked|Too Many 404 errors generated within a short time frame.]]&lt;br /&gt;
&lt;br /&gt;
==How to verify you have been blocked.==&lt;br /&gt;
&lt;br /&gt;
===How to obtain your IP address===&lt;br /&gt;
Please browse to the following location to obtain your IP address.&amp;lt;br /&amp;gt;[https://hostek.com/ip https://hostek.com/ip]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===What to do once you have your IP address===&lt;br /&gt;
Once you have your IP address you will need to contact support to notify them that you want to verify your IP is not blocked as you are currently having issues with accessing your domain.&amp;lt;br /&amp;gt;Be sure to include the following:&lt;br /&gt;
 Domain Name:&lt;br /&gt;
 Your IP:&lt;br /&gt;
 And that you want to verify if your IP has been blocked since you are unable to access either:&amp;lt;br /&amp;gt;Your '''Email''', Your '''Control Panel''', or Your '''Domain'''.&lt;br /&gt;
[https://support.hostek.com https://support.hostek.com]&lt;br /&gt;
&lt;br /&gt;
==For VPS customers==&lt;br /&gt;
&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Scroll down until you see the button &amp;quot;Search for IP&amp;quot;&lt;br /&gt;
#Input the IP in the search field and check for the results.&amp;lt;br /&amp;gt;'''NOTE:''' If the IP turns in results then you will need to click the Unlock to remove the block.&lt;br /&gt;
&lt;br /&gt;
===Want to Block an IP instead?===&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Look for your '''Quick Deny''' button and type in the IP address that you want to block in the Pink highlighted field.&lt;br /&gt;
#Click the '''Quick Deny''' button to block that malicious IP.&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Linux-VPS]]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1373</id>
		<title>Blocked</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1373"/>
				<updated>2013-05-10T00:18:59Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: /* For VPS customers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Linux Hosting=&lt;br /&gt;
&lt;br /&gt;
==Blocked from the Server?==&lt;br /&gt;
You seem to be running into issues where you are no longer able to access your email or cannot see your site any more. Chances are you have been blocked by the server in efforts it uses to protect itself from attacks.&lt;br /&gt;
&lt;br /&gt;
===Most Possible Causes===&lt;br /&gt;
#Too many failed email login attempts.&amp;lt;br /&amp;gt;'''Note:''' This is both Webmail and [[Email_Client_Setup_Tutorials|Email Client Programs]].&amp;lt;br /&amp;gt;IE: bad password stored.&lt;br /&gt;
#Too many failed FTP login attempts.&lt;br /&gt;
#Too many failed Control panel login attempts.&lt;br /&gt;
#[[Excessive_404_errors_causing_IP_address_to_be_blocked|Too Many 404 errors generated within a short time frame.]]&lt;br /&gt;
&lt;br /&gt;
==How to verify you have been blocked.==&lt;br /&gt;
&lt;br /&gt;
===How to obtain your IP address===&lt;br /&gt;
Please browse to the following location to obtain your IP address.&amp;lt;br /&amp;gt;[https://hostek.com/ip https://hostek.com/ip]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===What to do once you have your IP address===&lt;br /&gt;
Once you have your IP address you will need to contact support to notify them that you want to verify your IP is not blocked as you are currently having issues with accessing your domain.&amp;lt;br /&amp;gt;Be sure to include the following:&lt;br /&gt;
 Domain Name:&lt;br /&gt;
 Your IP:&lt;br /&gt;
 And that you want to verify if your IP has been blocked since you are unable to access either:&amp;lt;br /&amp;gt;Your '''Email''', Your '''Control Panel''', or Your '''Domain'''.&lt;br /&gt;
[https://support.hostek.com https://support.hostek.com]&lt;br /&gt;
&lt;br /&gt;
==For VPS customers==&lt;br /&gt;
&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Scroll down until you see the button &amp;quot;Search for IP&amp;quot;&lt;br /&gt;
#Input the IP in the search field and check for the results.&amp;lt;br /&amp;gt;'''NOTE:''' If the IP turns in results then you will need to click the Unlock to remove the block.&lt;br /&gt;
&lt;br /&gt;
===Want to Block an IP instead?===&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Look for your '''Quick Deny''' button and type in the IP address that you want to block in the Pink highlighted Field.&lt;br /&gt;
#Click the '''Quick Deny''' button to block that malicious IP.&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Linux-VPS]]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Cftags&amp;diff=1359</id>
		<title>Cftags</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Cftags&amp;diff=1359"/>
				<updated>2013-04-29T21:11:19Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
==Supported ColdFusion Tags==&lt;br /&gt;
&lt;br /&gt;
Our Shared Servers support all Cold Fusion tags except the following:&lt;br /&gt;
&lt;br /&gt;
*CFexecute&lt;br /&gt;
*CFregistry&lt;br /&gt;
&lt;br /&gt;
If you are needing these tags you may want to look at our VPS solution [http://hostek.com/hosting/vps/coldfusion-vps-hosting.asp Here]&lt;br /&gt;
&lt;br /&gt;
==ColdFusion CFX Custom Tags==&lt;br /&gt;
===Efflaire ImageCR 3===&lt;br /&gt;
Efflaire's ImageCR 3 tag is supported on our servers. Full documentation and usage examples for this tag are available at the [http://efflare.com/docs/CFX_ImageCR3/reference/index.html ImageCR 3 site].&lt;br /&gt;
&lt;br /&gt;
[[Category:ColdFusion]]&lt;br /&gt;
[[Category:Sales]]&lt;br /&gt;
[[Category:Getting Started]]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1358</id>
		<title>Blocked</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1358"/>
				<updated>2013-04-29T16:53:13Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: /* Blocked from the Server? */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Linux Hosting=&lt;br /&gt;
&lt;br /&gt;
==Blocked from the Server?==&lt;br /&gt;
You seem to be running into issues where you are no longer able to access your email or cannot see your site any more. Chances are you have been blocked by the server in efforts it uses to protect itself from attacks.&lt;br /&gt;
&lt;br /&gt;
===Most Possible Causes===&lt;br /&gt;
#Too many failed email login attempts.&amp;lt;br /&amp;gt;'''Note:''' This is both Webmail and [[Email_Client_Setup_Tutorials|Email Client Programs]].&amp;lt;br /&amp;gt;IE: bad password stored.&lt;br /&gt;
#Too many failed FTP login attempts.&lt;br /&gt;
#Too many failed Control panel login attempts.&lt;br /&gt;
#[[Excessive_404_errors_causing_IP_address_to_be_blocked|Too Many 404 errors generated within a short time frame.]]&lt;br /&gt;
&lt;br /&gt;
==How to verify you have been blocked.==&lt;br /&gt;
&lt;br /&gt;
===How to obtain your IP address===&lt;br /&gt;
Please browse to the following location to obtain your IP address.&amp;lt;br /&amp;gt;[https://hostek.com/ip https://hostek.com/ip]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===What to do once you have your IP address===&lt;br /&gt;
Once you have your IP address you will need to contact support to notify them that you want to verify your IP is not blocked as you are currently having issues with accessing your domain.&amp;lt;br /&amp;gt;Be sure to include the following:&lt;br /&gt;
 Domain Name:&lt;br /&gt;
 Your IP:&lt;br /&gt;
 And that you want to verify if your IP has been blocked since you are unable to access either:&amp;lt;br /&amp;gt;Your '''Email''', Your '''Control Panel''', or Your '''Domain'''.&lt;br /&gt;
[https://support.hostek.com https://support.hostek.com]&lt;br /&gt;
&lt;br /&gt;
==For VPS customers==&lt;br /&gt;
&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Scroll down until you see the button &amp;quot;Search for IP&amp;quot;&lt;br /&gt;
#Input the IP in the search field and check for the results.&amp;lt;br /&amp;gt;'''NOTE:''' If the IP turns in results then you will need to click the Unlock to remove the block.&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Linux-VPS]]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1357</id>
		<title>Blocked</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Blocked&amp;diff=1357"/>
				<updated>2013-04-29T16:39:30Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: Created page with &amp;quot;=Linux Hosting=  ==Blocked from the Server?== You seem to be running into issues where you are no longer able to access your email or cannot see your site any more. Chances ar...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Linux Hosting=&lt;br /&gt;
&lt;br /&gt;
==Blocked from the Server?==&lt;br /&gt;
You seem to be running into issues where you are no longer able to access your email or cannot see your site any more. Chances are you have been blocked by the server in efforts it uses to protect itself from attacks.&lt;br /&gt;
&lt;br /&gt;
==How to verify you have been blocked.==&lt;br /&gt;
&lt;br /&gt;
===How to obtain your IP address===&lt;br /&gt;
Please browse to the following location to obtain your IP address.&amp;lt;br /&amp;gt;[https://hostek.com/ip https://hostek.com/ip]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===What to do once you have your IP address===&lt;br /&gt;
Once you have your IP address you will need to contact support to notify them that you want to verify your IP is not blocked as you are currently having issues with accessing your domain.&amp;lt;br /&amp;gt;Be sure to include the following:&lt;br /&gt;
 Domain Name:&lt;br /&gt;
 Your IP:&lt;br /&gt;
 And that you want to verify if your IP has been blocked since you are unable to access either:&amp;lt;br /&amp;gt;Your '''Email''', Your '''Control Panel''', or Your '''Domain'''.&lt;br /&gt;
[https://support.hostek.com https://support.hostek.com]&lt;br /&gt;
&lt;br /&gt;
==For VPS customers==&lt;br /&gt;
&lt;br /&gt;
#Log into your WHM for your Linux Server.&amp;lt;br /&amp;gt;'''NOTE:''' If you cannot access your WHM please contact support from the steps above.&lt;br /&gt;
#Go to Plugins &amp;gt;&amp;gt; ConfigServer Security &amp;amp; Firewall&lt;br /&gt;
#Scroll down until you see the button &amp;quot;Search for IP&amp;quot;&lt;br /&gt;
#Input the IP in the search field and check for the results.&amp;lt;br /&amp;gt;'''NOTE:''' If the IP turns in results then you will need to click the Unlock to remove the block.&lt;br /&gt;
&lt;br /&gt;
[[Category:Linux]]&lt;br /&gt;
[[Category:Linux-VPS]]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=SSL_Certificates&amp;diff=1275</id>
		<title>SSL Certificates</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=SSL_Certificates&amp;diff=1275"/>
				<updated>2013-04-17T14:53:09Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: /* Installing SSL in WCP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
==What Is An SSL Certificate?==&lt;br /&gt;
A SSL certificate encrypts the data that is sent over your website so that a third party cannot view it and exploit it. SSL certificates are typically used on sites that need to accept credit card information or any other type of sensitive data that you do not want exposed.  &lt;br /&gt;
&lt;br /&gt;
==When to use an SSL Certificate==&lt;br /&gt;
You would want to use an SSL certificate when your web page is collecting person information or if you are requesting a password.  This provides an added layer of security for your visitors.&lt;br /&gt;
&lt;br /&gt;
==Ordering an SSL Certificate==&lt;br /&gt;
#Login to your client billing area (https://cp.hostek.com).&lt;br /&gt;
#Under the 'Quick Navigation' section click on 'Order'.&lt;br /&gt;
#Find and click the underlined 'SSL Certificates' tab.&lt;br /&gt;
#Find the desired certificate type to fit your needs, and click 'Order Now'.&lt;br /&gt;
#Fill in the necessary information in the text boxes accurately, then click 'Update Cart'.&lt;br /&gt;
#Once the order is complete, our Support Team will process the installation of your Certificate.&lt;br /&gt;
&lt;br /&gt;
You will be contacted via Email/Phone, if needed, for any further information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Installing SSL in WCP==&lt;br /&gt;
#Log in to the WCP at http://wcp.hostek.com&lt;br /&gt;
#Click on '''&amp;quot;Dedicated SSL&amp;quot;''' under the '''&amp;quot;Security and SSL&amp;quot;''' heading&lt;br /&gt;
#Click '''&amp;quot;Generate Certificate Request&amp;quot;'''&lt;br /&gt;
#Fill out the required information for the SSL certificate and click '''&amp;quot;Save&amp;quot;'''&lt;br /&gt;
#Provide the generated CSR code to your SSL provider (if you ordered the SSL from us we'll take care of the following steps for you)&lt;br /&gt;
#Once you have received the SSL certificate back from your SSL provider you'll need to paste the SSL code into the '''&amp;quot;Signed Certificate&amp;quot;''' text box and click '''&amp;quot;Save&amp;quot;'''&lt;br /&gt;
#Select your site from the drop-down menu and click '''&amp;quot;Save&amp;quot;'''&amp;lt;br /&amp;gt;'''NOTE:''' If your site does not have a Static IP set, you will need to contact support to have it enabled.&lt;br /&gt;
&lt;br /&gt;
==Installing SSL in cPanel==&lt;br /&gt;
#Log into your cPanel. For example:&amp;lt;nowiki&amp;gt;http://yourdomainhere.com/cpanel&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
#Click on '''&amp;quot;SSL/TLS Manager&amp;quot;''' under the '''&amp;quot;Security&amp;quot;''' heading&lt;br /&gt;
#Click on '''&amp;quot;Generate, view, upload, or delete your private keys&amp;quot;''' under '''&amp;quot;Private Keys (KEY)&amp;quot;'''&lt;br /&gt;
#Select your domain name from the drop-down menu under '''&amp;quot;Generate a New Key&amp;quot;''', select '''&amp;quot;2,048 bits&amp;quot;''' and click '''&amp;quot;Generate&amp;quot;'''&lt;br /&gt;
#Click '''&amp;quot;Return to SSL Manager&amp;quot;'''&lt;br /&gt;
#Click '''&amp;quot;Generate, view, or delete SSL certificate signing requests&amp;quot;''' under '''&amp;quot;Certificate Signing Requests (CSR)&amp;quot;'''&lt;br /&gt;
#Fill out the required information for the SSL certificate and click '''&amp;quot;Generate&amp;quot;'''&lt;br /&gt;
#Provide the generated CSR code to your SSL provider (if you ordered the SSL from us we'll take care of the following steps for you)&lt;br /&gt;
#Click '''&amp;quot;Return to SSL Manager&amp;quot;'''&lt;br /&gt;
#Once you have received the SSL certificate back from your SSL provider you'll need to paste the SSL code into the '''&amp;quot;Upload a New Certificate&amp;quot;''' text box and click '''&amp;quot;Upload&amp;quot;'''.&lt;br /&gt;
#Click '''&amp;quot;Setup a SSL certificate to work with your site&amp;quot;''' under '''&amp;quot;Activate SSL on Your Web Site (HTTPS)&amp;quot;'''&lt;br /&gt;
#Select your domain from the drop-down list. The '''&amp;quot;Certificate&amp;quot;''', and '''&amp;quot;Key&amp;quot;''' text boxes should automatically fill in with the information for your SSL.&lt;br /&gt;
#Click '''&amp;quot;Install Certificate&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
==Do You Support SSL 3.0?==&lt;br /&gt;
Yes, our certificates and servers support SSL 3.0.&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:Sales]]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=SSL_Certificates&amp;diff=1274</id>
		<title>SSL Certificates</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=SSL_Certificates&amp;diff=1274"/>
				<updated>2013-04-17T14:52:23Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: /* Installing SSL in WCP */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
==What Is An SSL Certificate?==&lt;br /&gt;
A SSL certificate encrypts the data that is sent over your website so that a third party cannot view it and exploit it. SSL certificates are typically used on sites that need to accept credit card information or any other type of sensitive data that you do not want exposed.  &lt;br /&gt;
&lt;br /&gt;
==When to use an SSL Certificate==&lt;br /&gt;
You would want to use an SSL certificate when your web page is collecting person information or if you are requesting a password.  This provides an added layer of security for your visitors.&lt;br /&gt;
&lt;br /&gt;
==Ordering an SSL Certificate==&lt;br /&gt;
#Login to your client billing area (https://cp.hostek.com).&lt;br /&gt;
#Under the 'Quick Navigation' section click on 'Order'.&lt;br /&gt;
#Find and click the underlined 'SSL Certificates' tab.&lt;br /&gt;
#Find the desired certificate type to fit your needs, and click 'Order Now'.&lt;br /&gt;
#Fill in the necessary information in the text boxes accurately, then click 'Update Cart'.&lt;br /&gt;
#Once the order is complete, our Support Team will process the installation of your Certificate.&lt;br /&gt;
&lt;br /&gt;
You will be contacted via Email/Phone, if needed, for any further information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Installing SSL in WCP==&lt;br /&gt;
#Log in to the WCP at http://wcp.hostek.com&lt;br /&gt;
#Click on '''&amp;quot;Dedicated SSL&amp;quot;''' under the '''&amp;quot;Security and SSL&amp;quot;''' heading&lt;br /&gt;
#Click '''&amp;quot;Generate Certificate Request&amp;quot;'''&lt;br /&gt;
#Fill out the required information for the SSL certificate and click '''&amp;quot;Save&amp;quot;'''&lt;br /&gt;
#Provide the generated CSR code to your SSL provider (if you ordered the SSL from us we'll take care of the following steps for you)&lt;br /&gt;
#Once you have received the SSL certificate back from your SSL provider you'll need to paste the SSL code into the '''&amp;quot;Signed Certificate&amp;quot;''' text box and click '''&amp;quot;Save&amp;quot;'''&lt;br /&gt;
#Select your site from the drop-down menu and click '''&amp;quot;Save&amp;quot;'''&amp;lt;br /&amp;gt;'''NOTE:''' If your site does not have a Static IP set yet you will need to contact support to enable it.&lt;br /&gt;
&lt;br /&gt;
==Installing SSL in cPanel==&lt;br /&gt;
#Log into your cPanel. For example:&amp;lt;nowiki&amp;gt;http://yourdomainhere.com/cpanel&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
#Click on '''&amp;quot;SSL/TLS Manager&amp;quot;''' under the '''&amp;quot;Security&amp;quot;''' heading&lt;br /&gt;
#Click on '''&amp;quot;Generate, view, upload, or delete your private keys&amp;quot;''' under '''&amp;quot;Private Keys (KEY)&amp;quot;'''&lt;br /&gt;
#Select your domain name from the drop-down menu under '''&amp;quot;Generate a New Key&amp;quot;''', select '''&amp;quot;2,048 bits&amp;quot;''' and click '''&amp;quot;Generate&amp;quot;'''&lt;br /&gt;
#Click '''&amp;quot;Return to SSL Manager&amp;quot;'''&lt;br /&gt;
#Click '''&amp;quot;Generate, view, or delete SSL certificate signing requests&amp;quot;''' under '''&amp;quot;Certificate Signing Requests (CSR)&amp;quot;'''&lt;br /&gt;
#Fill out the required information for the SSL certificate and click '''&amp;quot;Generate&amp;quot;'''&lt;br /&gt;
#Provide the generated CSR code to your SSL provider (if you ordered the SSL from us we'll take care of the following steps for you)&lt;br /&gt;
#Click '''&amp;quot;Return to SSL Manager&amp;quot;'''&lt;br /&gt;
#Once you have received the SSL certificate back from your SSL provider you'll need to paste the SSL code into the '''&amp;quot;Upload a New Certificate&amp;quot;''' text box and click '''&amp;quot;Upload&amp;quot;'''.&lt;br /&gt;
#Click '''&amp;quot;Setup a SSL certificate to work with your site&amp;quot;''' under '''&amp;quot;Activate SSL on Your Web Site (HTTPS)&amp;quot;'''&lt;br /&gt;
#Select your domain from the drop-down list. The '''&amp;quot;Certificate&amp;quot;''', and '''&amp;quot;Key&amp;quot;''' text boxes should automatically fill in with the information for your SSL.&lt;br /&gt;
#Click '''&amp;quot;Install Certificate&amp;quot;'''&lt;br /&gt;
&lt;br /&gt;
==Do You Support SSL 3.0?==&lt;br /&gt;
Yes, our certificates and servers support SSL 3.0.&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:Sales]]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Moodle&amp;diff=1129</id>
		<title>Moodle</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Moodle&amp;diff=1129"/>
				<updated>2013-02-09T18:13:00Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
==What is Moodle==&lt;br /&gt;
Moodle is a Content Management System which is designed to be a VLE (Virtual Learning Environment).&amp;lt;br /&amp;gt;&lt;br /&gt;
It is a free web application that is specifically designed to create effective online learning courses for educators.&amp;lt;br /&amp;gt;&lt;br /&gt;
[http://moodle.org Official Site]&lt;br /&gt;
&lt;br /&gt;
==How to upgrade Moodle==&lt;br /&gt;
To find out what the most recent version of Moodle is available you can check [http://download.moodle.org here].&amp;lt;br /&amp;gt;&lt;br /&gt;
You will need to check the documentation for the moodle version you are going to upgrade to to make sure you can upgrade straight to that version.&amp;lt;br /&amp;gt;&lt;br /&gt;
For Example, you can only upgrade to Moodle version 2.4 if you are currently using Moodle version 2.2 or later.&lt;br /&gt;
&lt;br /&gt;
===Moodle's 3 Key Steps to Upgrade===&lt;br /&gt;
# Back up everything to your site.&amp;lt;br /&amp;gt;This includes all your Files and your Database.&lt;br /&gt;
# You will replace the Existing Files with the New Versions Files.&lt;br /&gt;
# You will just need to Browse to your Moodles Installation Admin directory to initiate the upgrade process.&amp;lt;br /&amp;gt;Then you will follow the remaining prompts you receive.&lt;br /&gt;
&lt;br /&gt;
===Current Moodle Upgrade Documentation Pages===&lt;br /&gt;
*For upgrading to [http://docs.moodle.org/24/en/Upgrading Moodle 2.4]&lt;br /&gt;
*For upgrading to [http://docs.moodle.org/23/en/Upgrading Moodle 2.3]&lt;br /&gt;
*For upgrading to [http://docs.moodle.org/22/en/Upgrading Moodle 2.2]&lt;br /&gt;
*For upgrading to [http://docs.moodle.org/21/en/Upgrading Moodle 2.1]&lt;br /&gt;
*For upgrading to [http://docs.moodle.org/20/en/Upgrading Moodle 2.0]&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	<entry>
		<id>https://wiki.hostek.com/index.php?title=Moodle&amp;diff=1128</id>
		<title>Moodle</title>
		<link rel="alternate" type="text/html" href="https://wiki.hostek.com/index.php?title=Moodle&amp;diff=1128"/>
				<updated>2013-02-09T17:37:51Z</updated>
		
		<summary type="html">&lt;p&gt;CalebC: /* What is Moodle */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__FORCETOC__&lt;br /&gt;
&lt;br /&gt;
==What is Moodle==&lt;br /&gt;
Moodle is a Content Management System which is designed to be a VLE (Virtual Learning Environment).&amp;lt;br /&amp;gt;&lt;br /&gt;
It is a free web application that is specifically designed to create effective online learning courses for educators.&lt;br /&gt;
&lt;br /&gt;
==How to upgrade Moodle==&lt;/div&gt;</summary>
		<author><name>CalebC</name></author>	</entry>

	</feed>