<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.xmission.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Envy</id>
	<title>XMission Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.xmission.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Envy"/>
	<link rel="alternate" type="text/html" href="https://wiki.xmission.com/Special:Contributions/Envy"/>
	<updated>2026-05-19T11:06:58Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=SPF_and_DKIM&amp;diff=9639</id>
		<title>SPF and DKIM</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=SPF_and_DKIM&amp;diff=9639"/>
		<updated>2019-01-10T17:16:34Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* How DKIM Works */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;SPF and DKIM are two methods domain owners have of &amp;quot;authorizing&amp;quot; specific email servers to send mail on their behalf. They are both implemented via TXT records on the domain, though DKIM also adds public key cryptography.&lt;br /&gt;
&lt;br /&gt;
These records are entered by the domain owner wherever the domain&#039;s DNS record is managed, which may be with the registrar or hosting provider.&lt;br /&gt;
&lt;br /&gt;
= SPF =&lt;br /&gt;
&lt;br /&gt;
== How It Works ==&lt;br /&gt;
&lt;br /&gt;
Any SPF record is a string of one more more potential mail sources, prefixed by a character indicating the policy for mail source. An example of a common spf record:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
@     IN TXT &amp;quot;v=spf a mx ~all&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
In this case, it says that the A and MX records for the domain are allowed to send, and all other mail fails (but with a &amp;quot;softfail&amp;quot;, so that mail isn&#039;t actually rejected). &amp;quot;a&amp;quot;, &amp;quot;mx&amp;quot; and &amp;quot;all&amp;quot;, are all individual mail sources. The &amp;quot;~&amp;quot; prefixed to the &amp;quot;all&amp;quot; source is a policy denoting that mail from the source should be considered a &amp;quot;SoftFail&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
The sources are:&lt;br /&gt;
&lt;br /&gt;
* a - A DNS A record&lt;br /&gt;
* mx - An MX record&lt;br /&gt;
* ptr - A PTR record&lt;br /&gt;
* ip4 - An ipv4 address or subnet&lt;br /&gt;
* ip6 - An ipv6 address or subnet&lt;br /&gt;
* include - The contents of another domain&#039;s SPF record&lt;br /&gt;
* all - Any mail source (generally used at the end to provide a default policy)&lt;br /&gt;
&lt;br /&gt;
The prefix characters are:&lt;br /&gt;
&lt;br /&gt;
* + - Pass (Valid for spf)&lt;br /&gt;
* - - Fail (Invalid, and reject mail)&lt;br /&gt;
* ~ - SoftFail (Invalid, but still accept)&lt;br /&gt;
* ? - Neutral (...whatever...)&lt;br /&gt;
&lt;br /&gt;
== Valid SPF for XMission ==&lt;br /&gt;
&lt;br /&gt;
Any SPF record for a domain sending through XMission should include the following two sources:&lt;br /&gt;
&lt;br /&gt;
* ip4:166.70.13.0/24&lt;br /&gt;
* ip4:198.60.22.0/24&lt;br /&gt;
&lt;br /&gt;
You can include the above either with the two sources listed above, or by including XMission&#039;s spf record with &amp;quot;include:_spf.xmission.com&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Note that the SPF record policy is a decision of the domain owner&#039;s. If they want to fail or softfail on all, add other sources, etc., is up to them. We don&#039;t have a singular recommendation or requirement for SPF. If the customer only sends via XMission, the following SPF record is relatively safe:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
@    IN TXT &amp;quot;v=spf1 a mx include:_spf.xmission.com ~all&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Forwarding ==&lt;br /&gt;
&lt;br /&gt;
A note about forwarding (ie automatically redirecting mail from one account to another, not hitting the forward button):&lt;br /&gt;
&lt;br /&gt;
Forwarding (under most circumstances) &amp;lt;em&amp;gt;BREAKS&amp;lt;/em&amp;gt; spf. If a domain has a &amp;quot;-all&amp;quot; (&amp;quot;reject all other mail&amp;quot;) policy in their SPF record, mail will be rejected by any servers respecting SPF after the server performing the forward. Users should keep this in mind when choosing a policy.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= DKIM = &lt;br /&gt;
&lt;br /&gt;
== How DKIM Works ==&lt;br /&gt;
&lt;br /&gt;
DKIM is similar to SPF in that it uses a TXT record on the domain to define a sending policy for that domain. Where it differs is that it uses public key cryptography with this sending policy. A public key is added to that TXT record and any message that is signed with the private key (and thus validates with the public key) is then considered valid.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;DKIM will break automatic responders, like Out of Office replies.&#039;&#039;&#039; This is due to how DKIM verifies the sender, and how automated replies are generated and sent.  This is intentional, and is a consideration that needs to be made when limiting sending from your domain via DKIM.&lt;br /&gt;
&lt;br /&gt;
== Adding DKIM to an XMission Domain ==&lt;br /&gt;
&lt;br /&gt;
We have a single private key for XMission DKIM signing. We can sign DKIM with this key on any domain sending out through XMission. It works for Zimbra domains, virtmail, relay. To enable this feature for a domain, two things will need to happen:&lt;br /&gt;
&lt;br /&gt;
* The domain needs proper DNS for our domainkey key&lt;br /&gt;
* The domain needs to be added to XMission routing config as one with DKIM signing.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== DKIM DNS ==&lt;br /&gt;
&lt;br /&gt;
Add the following two txt records to the domain in question:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
xmission._domainkey IN      TXT &amp;quot;v=DKIM1; t=y; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQCzWmoe0tzQkSUzMqliwcQQ5zY1HKk4z+Wgp+dRCRe7MmSBPftE9r5Lx1QfTfF/J8gl4k9tFsUvUBap0fk1VGMYUG/2LynVuzpkCI4JlUKF5fbx+MDNZrVi0aX73Edjd9trU6NKldVnhNg1RixDLa4aB04XJviy6+3P1h3IHNaZ0QIDAQAB&amp;quot;&lt;br /&gt;
_domainkey      IN      TXT &amp;quot;t=y; o=~;&amp;quot;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category: Email]]&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=WordPress_Toolkit&amp;diff=9625</id>
		<title>WordPress Toolkit</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=WordPress_Toolkit&amp;diff=9625"/>
		<updated>2018-12-31T20:26:14Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Secure WordPress */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page is under construction&lt;br /&gt;
&lt;br /&gt;
== WordPress Toolkit ==&lt;br /&gt;
&lt;br /&gt;
XMission’s Shared Hosting Platform has the WordPress Toolkit enabled on all servers. The WordPress Toolkit is a single management interface that allows you to easily install, configure, and manage your WordPress Development. &lt;br /&gt;
&lt;br /&gt;
Through the WordPress Toolkit this is some of what you are able to complete:&lt;br /&gt;
* New WordPress installs.&lt;br /&gt;
* Sync and Import current WordPress development&lt;br /&gt;
* Detach and Remove current WordPress development.&lt;br /&gt;
* Migrate development from other hosts. &lt;br /&gt;
&lt;br /&gt;
To get started using the WordPress Toolkit [[WordPress_Toolkit/Install_WordPress | Click Here]]&lt;br /&gt;
&lt;br /&gt;
== Managing Your WordPress Development ==&lt;br /&gt;
&lt;br /&gt;
Once you&#039;ve logged into your Hosting Control Panel, go to one of the WordPress buttons to see all of the currently synced WordPress website(s) hosted on the server. The WordPress Toolkit will create a information card about each sync&#039;d website.&lt;br /&gt;
&lt;br /&gt;
[[File:WP_Instance_Managment.png|600px]]&lt;br /&gt;
&lt;br /&gt;
To find out how to Manage your website cards [[WordPress_Toolkit/Manage_WordPress | Click Here.]]&lt;br /&gt;
&lt;br /&gt;
== Update/Maintain WordPress ==&lt;br /&gt;
&lt;br /&gt;
There are several reasons it is suggested to keep your WordPress development updated. Updates are released quite often, and for good reason. Most developers find security breaches that require patches as well as new features, the WordPress updates serve other important functions. To keep your website secure, you need to regularly update the WordPress core, as well as any installed plugins and themes.&lt;br /&gt;
&lt;br /&gt;
[[File:WP_Updates_Avail.png|400px]]&lt;br /&gt;
&lt;br /&gt;
For more information on maintaining your website(s) [[WordPress_Toolkit/Updating_WordPress | Click Here]]&lt;br /&gt;
&lt;br /&gt;
== Secure WordPress ==&lt;br /&gt;
&lt;br /&gt;
The Toolkit is able to enhance the security of each of your WordPress development. It is able to check the wp-content folder, permissions of files and directories, database tables and much more. If the appropriate security measures are not applied to your site, it rises major vulnerabilities and puts your website at risk of being compromised. You are able to see the current status of your website security on the WordPress card.&lt;br /&gt;
&lt;br /&gt;
[[File:WP Security Warning.png|400px]]&lt;br /&gt;
&lt;br /&gt;
If you see “warning” or “danger” next to “Security status”, we recommend that you secure your instance.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Caution:&#039;&#039;&#039; Some security measures, once applied, can be rolled back, some &#039;&#039;&#039;cannot&#039;&#039;&#039;. We recommend that you back up before securing a WordPress instance.&lt;br /&gt;
&lt;br /&gt;
To secure your WordPress Website(s) [[WordPress_Toolkit/Secure_WordPress | Click Here]]&lt;br /&gt;
&lt;br /&gt;
== Copy and Sync Your WordPress ==&lt;br /&gt;
&lt;br /&gt;
You may want to copy or clone your WordPress site in one of the following situations:&lt;br /&gt;
&lt;br /&gt;
* Staging&lt;br /&gt;
* Production&lt;br /&gt;
* Backup/Master copy&lt;br /&gt;
* Multiple Development&lt;br /&gt;
&lt;br /&gt;
To learn how to copy or sync cloned websites [[WordPress_Toolkit/Copy_WordPress | Click Here]]&lt;br /&gt;
&lt;br /&gt;
== Maintenance Mode ==&lt;br /&gt;
&lt;br /&gt;
When a WordPress website enters maintenance mode, the website&#039;s content is hidden from visitors without being changed or otherwise affected. Visitors accessing your website when it is in maintenance mode see a maintenance screen webpage instead of the website content.&lt;br /&gt;
&lt;br /&gt;
[[File:WP_Maintenance.png|600px]]&lt;br /&gt;
&lt;br /&gt;
Your WordPress website enters maintenance mode automatically when you are:&lt;br /&gt;
* Upgrading your WordPress instance.&lt;br /&gt;
* Synchronizing WordPress instances via WordPress Toolkit.&lt;br /&gt;
&lt;br /&gt;
If you are making changes to your website and want to temporarily hide it from visitors, you can manually put it into maintenance mode.&lt;br /&gt;
&lt;br /&gt;
# Go to WordPress and choose the website.&lt;br /&gt;
# Switch on “Maintenance mode” on the instance card.&lt;br /&gt;
#:&lt;br /&gt;
#:[[File:WP_Maintenance2.png]]&lt;br /&gt;
#:&lt;br /&gt;
# To take your website out of maintenance mode, switch off “Maintenance mode”.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Hosted_Email_Base:iOS&amp;diff=9236</id>
		<title>Hosted Email Base:iOS</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Hosted_Email_Base:iOS&amp;diff=9236"/>
		<updated>2018-04-06T17:04:59Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==== Download the Profile ====&lt;br /&gt;
Download the XMission email profile by loading this webpage on your device and then &lt;br /&gt;
&#039;&#039;&#039;[https://asset.xmission.com/xmission-zimbra-base-signed.mobileconfig tapping here]&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== You will see the &amp;quot;Install Profile&amp;quot; for XMission Zimbra Base launch.  Tap the &#039;&#039;&#039;Install&#039;&#039;&#039; button. ====&lt;br /&gt;
[[Image:Ios-zimbra-base-1.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Enter your device&#039;s lock code or password: ====&lt;br /&gt;
[[Image:Ios-zimbra-base-2.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Press the &#039;&#039;&#039;Install&#039;&#039;&#039; button. ====&lt;br /&gt;
[[Image:Ios-zimbra-base-3.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Enter your full name: ====&lt;br /&gt;
[[Image:Ios-zimbra-base-4.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Enter your email address: ====&lt;br /&gt;
[[Image:Ios-zimbra-base-5.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Enter your email address again: ====&lt;br /&gt;
[[Image:Ios-zimbra-base-6.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Enter your password: ====&lt;br /&gt;
[[Image:Ios-zimbra-base-7.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Enter your email address again: ====&lt;br /&gt;
[[Image:Ios-zimbra-base-8.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Enter your email address one last time: ====&lt;br /&gt;
[[Image:Ios-zimbra-base-9.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Enter your password again: ====&lt;br /&gt;
[[Image:Ios-zimbra-base-10.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== You are finished! ====&lt;br /&gt;
[[Image:Ios-zimbra-base-11.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Client Email Configuration|XMission Email|iPhone / iPad]]&lt;br /&gt;
[[Category:XMission Email|iPhone / iPad]]&lt;br /&gt;
&lt;br /&gt;
==== Delete the Profile ====&lt;br /&gt;
# Go into Settings&lt;br /&gt;
# Click General&lt;br /&gt;
# Click on &amp;quot;Profile&amp;quot;&lt;br /&gt;
# Click on the XMission profile&lt;br /&gt;
# Delete the Profile.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9234</id>
		<title>Hosting a domain not registered with XMission</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9234"/>
		<updated>2018-03-22T20:59:12Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Name Servers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Domains registered through XMission, all hosting for that domain provided by XMission will be automatically configured properly.  Domains registered through third party registrars will need to have their name servers or DNS settings configured to work with XMission hosting.&lt;br /&gt;
&lt;br /&gt;
==Name Servers==&lt;br /&gt;
In order for XMission to handle DNS completely, the domain name servers need to be pointed properly.  This can be done through the control panel offered by the registrar.  Locate the section used to declare the name servers, and set them as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Primary:&#039;&#039;&#039; ns.xmission.com&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Secondary:&#039;&#039;&#039; ns1.xmission.com, ns2.xmission.com&lt;br /&gt;
&lt;br /&gt;
This will point the name servers at XMission, and after that information has propagated (15-30 minutes typically), any DNS configured in your XMission Hosting will take effect.&lt;br /&gt;
&lt;br /&gt;
==Web Hosting Only==&lt;br /&gt;
In the situation that the DNS needs to stay with the registrar or elsewhere, an &#039;&#039;&#039;A record&#039;&#039;&#039; needs to be added for the hosting with XMission to take effect.&lt;br /&gt;
&lt;br /&gt;
In the registrars DNS control panel, add a new record for your domain, pointing at the IP address of the server (found under &#039;&#039;&#039;Websites and Domains&#039;&#039;&#039;, next to &#039;&#039;&#039;IP Address&#039;&#039;&#039; in your hosting control panel for your domain).  Typically, the A record is formatted as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Record Type:&#039;&#039;&#039; A&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Domain/Record Name:&#039;&#039;&#039; @&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;IP Address:&#039;&#039;&#039; The IP address of your shared hosting.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9233</id>
		<title>Hosting a domain not registered with XMission</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9233"/>
		<updated>2018-03-22T20:57:39Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Web Hosting Only */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Domains registered through XMission, all hosting for that domain provided by XMission will be automatically configured properly.  Domains registered through third party registrars will need to have their name servers or DNS settings configured to work with XMission hosting.&lt;br /&gt;
&lt;br /&gt;
==Name Servers==&lt;br /&gt;
In order for XMission to handle DNS completely, the domain name servers need to be pointed properly.  This can be done through the control panel offered by the registrar.  Locate the section used to declare the name servers, and set them as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Primary:&#039;&#039;&#039; ns.xmission.com&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Secondary:&#039;&#039;&#039; ns1.xmission.com, ns2.xmission.com&lt;br /&gt;
&lt;br /&gt;
This will point the name servers at XMission, and after that information has propagated (15-30 minutes typically), any DNS XMission currently has will take effect.&lt;br /&gt;
&lt;br /&gt;
==Web Hosting Only==&lt;br /&gt;
In the situation that the DNS needs to stay with the registrar or elsewhere, an &#039;&#039;&#039;A record&#039;&#039;&#039; needs to be added for the hosting with XMission to take effect.&lt;br /&gt;
&lt;br /&gt;
In the registrars DNS control panel, add a new record for your domain, pointing at the IP address of the server (found under &#039;&#039;&#039;Websites and Domains&#039;&#039;&#039;, next to &#039;&#039;&#039;IP Address&#039;&#039;&#039; in your hosting control panel for your domain).  Typically, the A record is formatted as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Record Type:&#039;&#039;&#039; A&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Domain/Record Name:&#039;&#039;&#039; @&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;IP Address:&#039;&#039;&#039; The IP address of your shared hosting.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9232</id>
		<title>Hosting a domain not registered with XMission</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9232"/>
		<updated>2018-03-22T20:51:00Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Domains registered through XMission, all hosting for that domain provided by XMission will be automatically configured properly.  Domains registered through third party registrars will need to have their name servers or DNS settings configured to work with XMission hosting.&lt;br /&gt;
&lt;br /&gt;
==Name Servers==&lt;br /&gt;
In order for XMission to handle DNS completely, the domain name servers need to be pointed properly.  This can be done through the control panel offered by the registrar.  Locate the section used to declare the name servers, and set them as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Primary:&#039;&#039;&#039; ns.xmission.com&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Secondary:&#039;&#039;&#039; ns1.xmission.com, ns2.xmission.com&lt;br /&gt;
&lt;br /&gt;
This will point the name servers at XMission, and after that information has propagated (15-30 minutes typically), any DNS XMission currently has will take effect.&lt;br /&gt;
&lt;br /&gt;
==Web Hosting Only==&lt;br /&gt;
If you&#039;re happy with your registrar controlling your DNS, or have the name servers pointed elsewhere already, but still want to have XMission host your website, we need to update the DNS itself.  &lt;br /&gt;
&lt;br /&gt;
In your registrars DNS control panel, you will want to add an &#039;&#039;&#039;A record&#039;&#039;&#039; for your website, pointing at the IP address of your server (found under &#039;&#039;&#039;Websites and Domains&#039;&#039;&#039;, next to &#039;&#039;&#039;IP Address&#039;&#039;&#039; in your hosting control panel for your domain).  Typically, the A record is formatted as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Record Type:&#039;&#039;&#039; A&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Domain/Record Name:&#039;&#039;&#039; @&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;IP Address:&#039;&#039;&#039; The IP address of your shared hosting.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9231</id>
		<title>Hosting a domain not registered with XMission</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9231"/>
		<updated>2018-03-22T19:44:16Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If domains are registered with XMission, hosting will work automatically.  If a domain is not registered with XMission, a little bit more work is necessary.&lt;br /&gt;
&lt;br /&gt;
==Name Servers==&lt;br /&gt;
In order for XMission to handle your DNS completely, you need to point the &#039;&#039;&#039;Name Servers&#039;&#039;&#039; of your domain to us.  This can be done through the control panel your registrar offers.  Locate the section used to declare the name servers, and set them as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Primary:&#039;&#039;&#039; ns.xmission.com&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Secondary:&#039;&#039;&#039; ns1.xmission.com, ns2.xmission.com&lt;br /&gt;
&lt;br /&gt;
This will point the name servers at XMission, and after that information has propagated (15-30 minutes usually), any DNS you have with XMission will take effect.&lt;br /&gt;
&lt;br /&gt;
==Web Hosting Only==&lt;br /&gt;
If you&#039;re happy with your registrar controlling your DNS, or have the name servers pointed elsewhere already, but still want to have XMission host your website, we need to update the DNS itself.  &lt;br /&gt;
&lt;br /&gt;
In your registrars DNS control panel, you will want to add an &#039;&#039;&#039;A record&#039;&#039;&#039; for your website, pointing at the IP address of your server (found under &#039;&#039;&#039;Websites and Domains&#039;&#039;&#039;, next to &#039;&#039;&#039;IP Address&#039;&#039;&#039; in your hosting control panel for your domain).  Typically, the A record is formatted as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Record Type:&#039;&#039;&#039; A&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Domain/Record Name:&#039;&#039;&#039; @&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;IP Address:&#039;&#039;&#039; The IP address of your shared hosting.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9230</id>
		<title>Hosting a domain not registered with XMission</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9230"/>
		<updated>2018-03-22T19:39:58Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Name Servers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If domains are registered with XMission, hosting will work automatically.  If a domain is not registered with XMission, a little bit more work is necessary.&lt;br /&gt;
&lt;br /&gt;
==Name Servers==&lt;br /&gt;
If you want XMission to handle your DNS completely, you need to point the &#039;&#039;&#039;Name Servers&#039;&#039;&#039; of your domain to us.  This can be done through the control panel your registrar offers.  Locate the section used to declare the name servers, and set them as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Primary:&#039;&#039;&#039; ns.xmission.com&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Secondary:&#039;&#039;&#039; ns1.xmission.com, ns2.xmission.com&lt;br /&gt;
&lt;br /&gt;
This will point the name servers at XMission, and after that information has propagated (15-30 minutes usually), any DNS you have with XMission will take effect.&lt;br /&gt;
&lt;br /&gt;
==Web Hosting Only==&lt;br /&gt;
If you&#039;re happy with your registrar controlling your DNS, or have the name servers pointed elsewhere already, but still want to have XMission host your website, we need to update the DNS itself.  &lt;br /&gt;
&lt;br /&gt;
In your registrars DNS control panel, you will want to add an &#039;&#039;&#039;A record&#039;&#039;&#039; for your website, pointing at the IP address of your server (found under &#039;&#039;&#039;Websites and Domains&#039;&#039;&#039;, next to &#039;&#039;&#039;IP Address&#039;&#039;&#039; in your hosting control panel for your domain).  Typically, the A record is formatted as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Record Type:&#039;&#039;&#039; A&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Domain/Record Name:&#039;&#039;&#039; @&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;IP Address:&#039;&#039;&#039; The IP address of your shared hosting.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9229</id>
		<title>Hosting a domain not registered with XMission</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9229"/>
		<updated>2018-03-22T19:39:48Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Web Hosting Only */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If domains are registered with XMission, hosting will work automatically.  If a domain is not registered with XMission, a little bit more work is necessary.&lt;br /&gt;
&lt;br /&gt;
==Name Servers==&lt;br /&gt;
If you want XMission to handle your DNS completely, you need to point the &#039;&#039;&#039;Name Servers&#039;&#039;&#039; of your domain to us.  This can be done through the control panel your registrar offers.  Locate the section used to declare the name servers, and set them as follows:&lt;br /&gt;
&#039;&#039;&#039;Primary:&#039;&#039;&#039; ns.xmission.com&lt;br /&gt;
&#039;&#039;&#039;Secondary:&#039;&#039;&#039; ns1.xmission.com, ns2.xmission.com&lt;br /&gt;
&lt;br /&gt;
This will point the name servers at XMission, and after that information has propagated (15-30 minutes usually), any DNS you have with XMission will take effect.&lt;br /&gt;
&lt;br /&gt;
==Web Hosting Only==&lt;br /&gt;
If you&#039;re happy with your registrar controlling your DNS, or have the name servers pointed elsewhere already, but still want to have XMission host your website, we need to update the DNS itself.  &lt;br /&gt;
&lt;br /&gt;
In your registrars DNS control panel, you will want to add an &#039;&#039;&#039;A record&#039;&#039;&#039; for your website, pointing at the IP address of your server (found under &#039;&#039;&#039;Websites and Domains&#039;&#039;&#039;, next to &#039;&#039;&#039;IP Address&#039;&#039;&#039; in your hosting control panel for your domain).  Typically, the A record is formatted as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Record Type:&#039;&#039;&#039; A&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Domain/Record Name:&#039;&#039;&#039; @&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;IP Address:&#039;&#039;&#039; The IP address of your shared hosting.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9228</id>
		<title>Hosting a domain not registered with XMission</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9228"/>
		<updated>2018-03-22T19:39:23Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Web Hosting Only */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If domains are registered with XMission, hosting will work automatically.  If a domain is not registered with XMission, a little bit more work is necessary.&lt;br /&gt;
&lt;br /&gt;
==Name Servers==&lt;br /&gt;
If you want XMission to handle your DNS completely, you need to point the &#039;&#039;&#039;Name Servers&#039;&#039;&#039; of your domain to us.  This can be done through the control panel your registrar offers.  Locate the section used to declare the name servers, and set them as follows:&lt;br /&gt;
&#039;&#039;&#039;Primary:&#039;&#039;&#039; ns.xmission.com&lt;br /&gt;
&#039;&#039;&#039;Secondary:&#039;&#039;&#039; ns1.xmission.com, ns2.xmission.com&lt;br /&gt;
&lt;br /&gt;
This will point the name servers at XMission, and after that information has propagated (15-30 minutes usually), any DNS you have with XMission will take effect.&lt;br /&gt;
&lt;br /&gt;
==Web Hosting Only==&lt;br /&gt;
If you&#039;re happy with your registrar controlling your DNS, or have the name servers pointed elsewhere already, but still want to have XMission host your website, we need to update the DNS itself.  &lt;br /&gt;
&lt;br /&gt;
In your registrars/dns hosts control panel, you will want to add an &#039;&#039;&#039;A record&#039;&#039;&#039; for your website, pointing at the IP address of your server (found under &#039;&#039;&#039;Websites and Domains&#039;&#039;&#039;, next to &#039;&#039;&#039;IP Address&#039;&#039;&#039; in your hosting control panel for your domain).  Typically, the A record is formatted as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Record Type:&#039;&#039;&#039; A&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Domain/Record Name:&#039;&#039;&#039; @&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;IP Address:&#039;&#039;&#039; The IP address of your shared hosting.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9227</id>
		<title>Hosting a domain not registered with XMission</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9227"/>
		<updated>2018-03-22T19:39:05Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Web Hosting Only */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If domains are registered with XMission, hosting will work automatically.  If a domain is not registered with XMission, a little bit more work is necessary.&lt;br /&gt;
&lt;br /&gt;
==Name Servers==&lt;br /&gt;
If you want XMission to handle your DNS completely, you need to point the &#039;&#039;&#039;Name Servers&#039;&#039;&#039; of your domain to us.  This can be done through the control panel your registrar offers.  Locate the section used to declare the name servers, and set them as follows:&lt;br /&gt;
&#039;&#039;&#039;Primary:&#039;&#039;&#039; ns.xmission.com&lt;br /&gt;
&#039;&#039;&#039;Secondary:&#039;&#039;&#039; ns1.xmission.com, ns2.xmission.com&lt;br /&gt;
&lt;br /&gt;
This will point the name servers at XMission, and after that information has propagated (15-30 minutes usually), any DNS you have with XMission will take effect.&lt;br /&gt;
&lt;br /&gt;
==Web Hosting Only==&lt;br /&gt;
If you&#039;re happy with your registrar controlling your DNS, or have the name servers pointed elsewhere already, but still want to have XMission host your website, we need to update the DNS itself.  &lt;br /&gt;
&lt;br /&gt;
In your registrars/dns hosts control panel, you will want to add an &#039;&#039;&#039;A record&#039;&#039;&#039; for your website, pointing at the IP address of your server (found under &#039;&#039;&#039;Websites and Domains&#039;&#039;&#039;, next to &#039;&#039;&#039;IP Address&#039;&#039; in your hosting control panel for your domain).  Typically, the A record is formatted as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Record Type:&#039;&#039;&#039; A&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Domain/Record Name:&#039;&#039;&#039; @&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;IP Address:&#039;&#039;&#039; The IP address of your shared hosting.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9226</id>
		<title>Hosting a domain not registered with XMission</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9226"/>
		<updated>2018-03-22T19:38:51Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Web Hosting Only */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If domains are registered with XMission, hosting will work automatically.  If a domain is not registered with XMission, a little bit more work is necessary.&lt;br /&gt;
&lt;br /&gt;
==Name Servers==&lt;br /&gt;
If you want XMission to handle your DNS completely, you need to point the &#039;&#039;&#039;Name Servers&#039;&#039;&#039; of your domain to us.  This can be done through the control panel your registrar offers.  Locate the section used to declare the name servers, and set them as follows:&lt;br /&gt;
&#039;&#039;&#039;Primary:&#039;&#039;&#039; ns.xmission.com&lt;br /&gt;
&#039;&#039;&#039;Secondary:&#039;&#039;&#039; ns1.xmission.com, ns2.xmission.com&lt;br /&gt;
&lt;br /&gt;
This will point the name servers at XMission, and after that information has propagated (15-30 minutes usually), any DNS you have with XMission will take effect.&lt;br /&gt;
&lt;br /&gt;
==Web Hosting Only==&lt;br /&gt;
If you&#039;re happy with your registrar controlling your DNS, or have the name servers pointed elsewhere already, but still want to have XMission host your website, we need to update the DNS itself.  In your registrars/dns hosts control panel, you will want to add an &#039;&#039;&#039;A record&#039;&#039;&#039; for your website, pointing at the IP address of your server (found under &#039;&#039;&#039;Websites and Domains&#039;&#039;&#039;, next to &#039;&#039;&#039;IP Address&#039;&#039; in your hosting control panel for your domain).  Typically, the A record is formatted as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Record Type:&#039;&#039;&#039; A&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Domain/Record Name:&#039;&#039;&#039; @&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;IP Address:&#039;&#039;&#039; The IP address of your shared hosting.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9225</id>
		<title>Hosting a domain not registered with XMission</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9225"/>
		<updated>2018-03-22T19:38:40Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Web Hosting Only */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If domains are registered with XMission, hosting will work automatically.  If a domain is not registered with XMission, a little bit more work is necessary.&lt;br /&gt;
&lt;br /&gt;
==Name Servers==&lt;br /&gt;
If you want XMission to handle your DNS completely, you need to point the &#039;&#039;&#039;Name Servers&#039;&#039;&#039; of your domain to us.  This can be done through the control panel your registrar offers.  Locate the section used to declare the name servers, and set them as follows:&lt;br /&gt;
&#039;&#039;&#039;Primary:&#039;&#039;&#039; ns.xmission.com&lt;br /&gt;
&#039;&#039;&#039;Secondary:&#039;&#039;&#039; ns1.xmission.com, ns2.xmission.com&lt;br /&gt;
&lt;br /&gt;
This will point the name servers at XMission, and after that information has propagated (15-30 minutes usually), any DNS you have with XMission will take effect.&lt;br /&gt;
&lt;br /&gt;
==Web Hosting Only==&lt;br /&gt;
If you&#039;re happy with your registrar controlling your DNS, or have the name servers pointed elsewhere already, but still want to have XMission host your website, we need to update the DNS itself.  In your registrars/dns hosts control panel, you will want to add an &#039;&#039;&#039;A record&#039;&#039;&#039; for your website, pointing at the IP address of your server (found under &#039;&#039;&#039;Websites and Domains&#039;&#039;&#039;, next to &#039;&#039;&#039;IP Address&#039;&#039; in your hosting control panel for your domain).  Typically, the A record is formatted as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Record Type:&#039;&#039;&#039; A&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Domain/Record Name:&#039;&#039;&#039; @&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;IP Address:&#039;&#039;&#039; The IP address of your shared hosting.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9224</id>
		<title>Hosting a domain not registered with XMission</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9224"/>
		<updated>2018-03-22T19:38:05Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Web Hosting Only */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If domains are registered with XMission, hosting will work automatically.  If a domain is not registered with XMission, a little bit more work is necessary.&lt;br /&gt;
&lt;br /&gt;
==Name Servers==&lt;br /&gt;
If you want XMission to handle your DNS completely, you need to point the &#039;&#039;&#039;Name Servers&#039;&#039;&#039; of your domain to us.  This can be done through the control panel your registrar offers.  Locate the section used to declare the name servers, and set them as follows:&lt;br /&gt;
&#039;&#039;&#039;Primary:&#039;&#039;&#039; ns.xmission.com&lt;br /&gt;
&#039;&#039;&#039;Secondary:&#039;&#039;&#039; ns1.xmission.com, ns2.xmission.com&lt;br /&gt;
&lt;br /&gt;
This will point the name servers at XMission, and after that information has propagated (15-30 minutes usually), any DNS you have with XMission will take effect.&lt;br /&gt;
&lt;br /&gt;
==Web Hosting Only==&lt;br /&gt;
If you&#039;re happy with your registrar controlling your DNS, or have the name servers pointed elsewhere already, but still want to have XMission host your website, we need to update the DNS itself.  In your registrars/dns hosts control panel, you will want to add an &#039;&#039;&#039;A record&#039;&#039;&#039; for your website, pointing at the IP address of your server (found under &#039;&#039;&#039;Websites and Domains&#039;&#039;&#039;, next to &#039;&#039;&#039;IP Address&#039;&#039; in your hosting control panel for your domain).  Typically, the A record is formatted as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Record Type:&#039;&#039;&#039; A&lt;br /&gt;
&#039;&#039;&#039;Domain/Record Name:&#039;&#039;&#039; @&lt;br /&gt;
&#039;&#039;&#039;IP Address:&#039;&#039;&#039; The IP address of your shared hosting.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9223</id>
		<title>Hosting a domain not registered with XMission</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Hosting_a_domain_not_registered_with_XMission&amp;diff=9223"/>
		<updated>2018-03-22T19:37:49Z</updated>

		<summary type="html">&lt;p&gt;Envy: Created page with &amp;quot;If domains are registered with XMission, hosting will work automatically.  If a domain is not registered with XMission, a little bit more work is necessary.  ==Name Servers==...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;If domains are registered with XMission, hosting will work automatically.  If a domain is not registered with XMission, a little bit more work is necessary.&lt;br /&gt;
&lt;br /&gt;
==Name Servers==&lt;br /&gt;
If you want XMission to handle your DNS completely, you need to point the &#039;&#039;&#039;Name Servers&#039;&#039;&#039; of your domain to us.  This can be done through the control panel your registrar offers.  Locate the section used to declare the name servers, and set them as follows:&lt;br /&gt;
&#039;&#039;&#039;Primary:&#039;&#039;&#039; ns.xmission.com&lt;br /&gt;
&#039;&#039;&#039;Secondary:&#039;&#039;&#039; ns1.xmission.com, ns2.xmission.com&lt;br /&gt;
&lt;br /&gt;
This will point the name servers at XMission, and after that information has propagated (15-30 minutes usually), any DNS you have with XMission will take effect.&lt;br /&gt;
&lt;br /&gt;
==Web Hosting Only==&lt;br /&gt;
If you&#039;re happy with your registrar controlling your DNS, or have the name servers pointed elsewhere already, but still want to have XMission host your website, we need to update the DNS itself.  In your registrar&#039;s/dns host&#039;s control panel, you will want to add an &#039;&#039;&#039;A record&#039;&#039;&#039; for your website, pointing at the IP address of your server (found under &#039;&#039;&#039;Websites and Domains&#039;&#039;&#039;, next to &#039;&#039;&#039;IP Address&#039;&#039; in your hosting control panel for your domain).  Typically, the A record is formatted as follows:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Record Type:&#039;&#039;&#039; A&lt;br /&gt;
&#039;&#039;&#039;Domain/Record Name:&#039;&#039;&#039; @&lt;br /&gt;
&#039;&#039;&#039;IP Address:&#039;&#039;&#039; The IP address of your shared hosting.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Shared_Hosting&amp;diff=9222</id>
		<title>Shared Hosting</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Shared_Hosting&amp;diff=9222"/>
		<updated>2018-03-22T19:28:33Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Getting Started */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Getting Started == &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
*[[Administration/Logging in]]&lt;br /&gt;
*[[Previewing the Website]]&lt;br /&gt;
*[[Managing Domain/Users]]&lt;br /&gt;
*[[Creating/Managing User Roles]]&lt;br /&gt;
*[[Managing FTP Access/Users]]&lt;br /&gt;
**[[About FTP and Shared Hosting]]&lt;br /&gt;
*[[Adding MySQL Databases]]&lt;br /&gt;
**[[Managing MySQL]]&lt;br /&gt;
*[[Adding/Managing DNS Records]]&lt;br /&gt;
*[[Adding a Domain]]&lt;br /&gt;
**[[Adding a Subdomain]]&lt;br /&gt;
**[[Adding a Domain Alias]]&lt;br /&gt;
**[[Adding a Domain Forwarder]]&lt;br /&gt;
*[[Secure Your Sites]]&lt;br /&gt;
*[[Copying a Website]]&lt;br /&gt;
*[[Domain Transfer and Redemption]]&lt;br /&gt;
*[[Password Protecting a Directory With &amp;quot;.htaccess&amp;quot;]]&lt;br /&gt;
*[[Changing your upload limits]]&lt;br /&gt;
*[[Hosting a domain not registered with XMission]]&lt;br /&gt;
Applications&lt;br /&gt;
*[http://wiki.xmission.com/WordPress Wordpress One-Click Install]&lt;br /&gt;
*[https://wiki.xmission.com/Lets_Encrypt Let&#039;s Encrypt!]&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Shared_Hosting&amp;diff=9220</id>
		<title>Shared Hosting</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Shared_Hosting&amp;diff=9220"/>
		<updated>2018-03-20T20:43:48Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;noinclude&amp;gt; &lt;br /&gt;
&lt;br /&gt;
== Getting Started == &lt;br /&gt;
&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
*[[Administration/Logging in]]&lt;br /&gt;
*[[Previewing the Website]]&lt;br /&gt;
*[[Managing Domain/Users]]&lt;br /&gt;
*[[Creating/Managing User Roles]]&lt;br /&gt;
*[[Managing FTP Access/Users]]&lt;br /&gt;
**[[About FTP and Shared Hosting]]&lt;br /&gt;
*[[Adding MySQL Databases]]&lt;br /&gt;
**[[Managing MySQL]]&lt;br /&gt;
*[[Adding/Managing DNS Records]]&lt;br /&gt;
*[[Adding a Domain]]&lt;br /&gt;
**[[Adding a Subdomain]]&lt;br /&gt;
**[[Adding a Domain Alias]]&lt;br /&gt;
**[[Adding a Domain Forwarder]]&lt;br /&gt;
*[[Secure Your Sites]]&lt;br /&gt;
*[[Copying a Website]]&lt;br /&gt;
*[[Domain Transfer and Redemption]]&lt;br /&gt;
*[[Password Protecting a Directory With &amp;quot;.htaccess&amp;quot;]]&lt;br /&gt;
*[[Changing your upload limits]]&lt;br /&gt;
Applications&lt;br /&gt;
*[http://wiki.xmission.com/WordPress Wordpress One-Click Install]&lt;br /&gt;
*[https://wiki.xmission.com/Lets_Encrypt Let&#039;s Encrypt!]&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9219</id>
		<title>XMission Control Panel/Services Tab</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9219"/>
		<updated>2018-03-20T19:33:38Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Adding a New PHP Setting */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Services=&lt;br /&gt;
The &#039;&#039;&#039;Services&#039;&#039;&#039; section of your account details the various services you have active, and depending on the service, assorted tools to help you manage the service.&lt;br /&gt;
&lt;br /&gt;
You can get to your &#039;&#039;&#039;Services&#039;&#039;&#039; page by clicking on the &#039;&#039;&#039;Services&#039;&#039;&#039; link at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
[[File:Services_header.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On the &#039;&#039;&#039;Services&#039;&#039;&#039; screen, you will see various sections depending on the services on your account.  You can click on a section to expand it and see detailed information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
The &#039;&#039;&#039;Summary&#039;&#039;&#039; section details all of the services currently on your account.  Certain services that don&#039;t have additional tools available, such as Internet connections, will appear here instead of appearing in their own section.&lt;br /&gt;
&lt;br /&gt;
==Email==&lt;br /&gt;
The &#039;&#039;&#039;Email&#039;&#039;&#039; section details all of the email services currently active on the account and provides login buttons to grant you quick access to your inbox for personal accounts.&lt;br /&gt;
&lt;br /&gt;
NOTE: the panel currently does not provide specific controls for Zimbra Base and Premium accounts in the Email section.  To manage your Zimbra domain, login to [https://zimbra.xmission.com:7071/zimbraAdmin/ Zimbra Admin] with the appropriate administrator account.&lt;br /&gt;
&lt;br /&gt;
==Cloud Servers==&lt;br /&gt;
The &#039;&#039;&#039;Cloud Servers&#039;&#039;&#039; section details all of the Managed and Unmanaged Cloud hosting servers currently active on the account.  Furthermore, the servers can be managed from this page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add a Server===&lt;br /&gt;
To add a hosted cloud server to your account, click on the &#039;Add a server&#039; button at the bottom of the expanded Cloud Servers section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A window will appear with the various options you have when adding a server.  The cost field will dynamically update based on the options you choose.  &lt;br /&gt;
&lt;br /&gt;
[[File:Create-new-server.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can read up on the Managed Cloud and Unmanaged Cloud servers by clicking on the &#039;Read more&#039; links.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Change the Status of an Existing Server===&lt;br /&gt;
You can start or shut down your servers by clicking on the &amp;quot;Status&amp;quot; drop down underneath the &amp;quot;Cloud Servers&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
[[File:Server-status-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Existing Servers===&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button for a cloud server will allow you to edit resources, and on Managed servers, allow you to tweak specific features related to your hosted website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Configure Resources====&lt;br /&gt;
Clicking on the &amp;quot;Configure resources&amp;quot; button will allow you to change the current CPU Cores, Memory, and Storage settings on your Cloud Server.  &lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Changing any of these settings will automatically update the Cost section, reflecting what the allocated resources will cost you monthly.&lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====SSL Certificates====&lt;br /&gt;
You can view the SSL Certificates currently installed on your Managed Server by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;SSL Certificates&amp;quot; section of &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-ssl-certs.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding an SSL Certificate=====&lt;br /&gt;
You can add an SSL Certificate by clicking on the green &amp;quot;Add SSL Certification&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to name your certificate, insert the Cert and Key information, and finally the Chain Cert/CA information if you have it.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-window.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing an SSL Certificate=====&lt;br /&gt;
You can remove an SSL certificate by clicking on the red &amp;quot;Delete&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be asked to confirm the deletion before your certificate is actually deleted.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Domain Redirects====&lt;br /&gt;
You can add a redirect for one of your domains by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;Redirects&amp;quot; section under &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-redirects-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Domain Redirect=====&lt;br /&gt;
You can add a domain redirect by clicking on the green &amp;quot;Add Domain Redirect&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:Domain-redirect-window.png]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If your domain is pointed at XMission, you will also need to add it to your DNS if you have not already, otherwise the redirect will not work.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Domain Redirect=====&lt;br /&gt;
Domain redirects can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the redirect you want to remove.  &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the redirect is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====PHP Settings====&lt;br /&gt;
You can configure your PHP settings under the &amp;quot;PHP settings&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a New PHP Setting=====&lt;br /&gt;
You can add a new PHP setting by clicking on the &amp;quot;+ Add&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can name the key and set its value in the window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-php-setting-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your setting, click on &amp;quot;Submit&amp;quot;. Note: ensure your syntax is correct.&lt;br /&gt;
&lt;br /&gt;
If you are looking to update your upload size specifically, you can find a guide on updating that [[Changing your upload limits#Cloud Hosting|here]]&lt;br /&gt;
&lt;br /&gt;
=====Removing an Existing PHP Setting=====&lt;br /&gt;
You can remove a PHP setting by clicking on the red &amp;quot;Delete&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the setting is removed.&lt;br /&gt;
&lt;br /&gt;
====Virtual Hosts====&lt;br /&gt;
You can manage the websites hosted on the server under the &amp;quot;Virtual Hosts&amp;quot; section.  You can configure the active aliases, FTP accounts, and SSL certificates.  If you would like to view sites built on your server without updating your DNS, you can view instructions on modifying your hosts file [http://wiki.xmission.com/Cloud_Hosting/Hosts_File here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Website=====&lt;br /&gt;
You can add a website to your server by clicking on the &amp;quot;+ Add website&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-virsthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can set the domain name, any aliases you want to add, and SSL options for the site in the New Website window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-virthost-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTES:&lt;br /&gt;
* Enabling &amp;quot;SSL Only&amp;quot; will setup a 301 redirect to direct any http traffic to https.  &lt;br /&gt;
* You will need to have an SSL Certificate already in place to choose when enabling SSL for a website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Adding / Editing Domain Aliases======&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button underneath &amp;quot;Domain aliases&amp;quot; will allow you to add, edit, and remove aliases for the domain in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain-aliases.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Existing aliases will turn into a text field, allowing you to edit them as needed.  Clicking the red &amp;quot;-&amp;quot; button will remove it.  Clicking the green &amp;quot;+&amp;quot; button will add a new text field that can be used to enter a new alias.  &lt;br /&gt;
&lt;br /&gt;
[[File:Domain-alias-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your changes, click &amp;quot;Save&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Editing FTP Accounts======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;FTP accounts&amp;quot; will allow you to add, edit and remove FTP users for the website in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Clicking the blue &amp;quot;+ Add FTP&amp;quot; button will open the New FTP User window.&lt;br /&gt;
&lt;br /&gt;
[[File:New-ftp-user-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here you can enter a new Username, and set the password for the new user.&lt;br /&gt;
&lt;br /&gt;
Clicking on the gear button will allow you to change the password for the FTP user you wish to update.&lt;br /&gt;
&lt;br /&gt;
To remove an FTP user, click on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm the deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Enabling SSL / Editing SSL Certificate in Use======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;HTTPS&amp;quot; will allow you to enable SSL, turn on HTTPS 301 redirects, and assign a certificate to an existing website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-ssl-certificates.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can enable HTTPS by clicking the check box next to &amp;quot;SSL Enabled&amp;quot;.  Checking &amp;quot;SSL Only&amp;quot; will enable HTTPS 301 redirects for your domain, which will direct all HTTP traffic to HTTPS.&lt;br /&gt;
&lt;br /&gt;
You can set the active certificate by choosing one from the drop down beneath &amp;quot;SSL Certificate&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Ssl-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing a Website=====&lt;br /&gt;
A website can be removed from your server by clicking on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm your deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-virthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: Deleting a website will also delete the relevant directory and files within it, so when deleting a website, ensure that you have backed up the files you want to keep.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
====Databases====&lt;br /&gt;
The databases section allows you to add databases, view database names and usernames associated with those databases, edit database passwords and delete databases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Database=====&lt;br /&gt;
You can add a database by clicking on the &amp;quot;+ Add database&amp;quot; button.  &lt;br /&gt;
&lt;br /&gt;
[[File:Add-database-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can define the database name, username and password in the window that appears.  Note that you will need to confirm the password before the database will be created.&lt;br /&gt;
&lt;br /&gt;
[[File:New-database-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Changing Password on Existing Database=====&lt;br /&gt;
You can change the password on an existing domain by clicking on &amp;quot;Change Password&amp;quot; for the database you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-change-password-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to confirm the new password before it will be updated.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Database=====&lt;br /&gt;
You can remove a database by clicking on the red &amp;quot;Delete&amp;quot; button next to the database you wish to remove.  You will be prompted to confirm deletion before the database is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-delete-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Accessing phpMyAdmin=====&lt;br /&gt;
You can access phpMyAdmin for your databases by clicking on the &amp;quot;phpMyAdmin&amp;quot; button below the database list.&lt;br /&gt;
&lt;br /&gt;
[[File:Phpmyadmin-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Installing WordPress===&lt;br /&gt;
If you would like to install WordPress on your Managed Cloud Server, you can find instructions on how to do so [[Installing WordPress on your Managed Cloud|here]].&lt;br /&gt;
&lt;br /&gt;
==Hosting==&lt;br /&gt;
Under the hosting section, you can see the various website hosting services currently active on the account.&lt;br /&gt;
&lt;br /&gt;
With Shared Web Hosting services, you will be able to see which server your website is located on, the primary username associated with that hosting package, and a Login button that will take you directly to your website control panel.&lt;br /&gt;
&lt;br /&gt;
==DNS==&lt;br /&gt;
The DNS section will show you the DNS you&#039;ve added for the domains you manage.  Domains you have associated with your hosted cloud servers will appear here automatically, but you can further add additional domains if you wish.&lt;br /&gt;
&lt;br /&gt;
Clicking on a domain in the list to the left will show you the current record for that domain.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add Domain===&lt;br /&gt;
To add DNS for a domain, you can click on the &#039;+ Add Domain&#039; button&lt;br /&gt;
&lt;br /&gt;
[[File:Add-domain-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;New Zone&#039; window.  Here, you can input the domain name for the domain you wish to manage, and the TTL for the record.  By default, the TTL is 3600.&lt;br /&gt;
&lt;br /&gt;
When you&#039;re satisfied with what you&#039;ve entered, click on the &#039;Create&#039; button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Domain===&lt;br /&gt;
With the domain selected on the left hand side, you will be able to click on the &#039;Edit&#039; button next to the domain name on the right hand side.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;Edit Zone&#039; window, which looks nearly identical to the New Zone window.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Add New DNS Record====&lt;br /&gt;
With the domain selected on the left hand side, you can click on the green &#039;+&#039; symbol at the bottom of the DNS section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the New Record window, where you can input the record name, as well as determine what type of record it is.&lt;br /&gt;
&lt;br /&gt;
Choosing the type of record will update the window to bring up fields appropriate to the type of record you&#039;re wishing to add.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;A Record&#039;&#039;&#039;&lt;br /&gt;
A records allow you to point a hostname to a specific IP address.  Clicking on &#039;&#039;&#039;A&#039;&#039;&#039; will bring up an IP Address field, allowing you to point the record to a specific IP address.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;TXT Record&#039;&#039;&#039;&lt;br /&gt;
TXT records allow you to specify an arbitrary string of text to be associated with a designated hostname.  Clicking on &#039;&#039;&#039;TXT&#039;&#039;&#039; will bring up a Text field, allowing you to specify the text string you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;AAAA Record&#039;&#039;&#039;&lt;br /&gt;
AAAA records are used to associate IPv6 addresses with the designated hostname.  Clicking on &#039;&#039;&#039;AAAA&#039;&#039;&#039; will bring up an IPv6 Address field, allowing you to specify the IPv6 address you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;CNAME Record&#039;&#039;&#039;&lt;br /&gt;
CNAME records are used to alias one host name to another (most common example being www.domain.tld to domain.tld).  Clicking on &#039;&#039;&#039;CNAME&#039;&#039;&#039; will bring up an Aliased Domain field, allowing you to specify which domain you want the designated hostname to point to.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;SRV Record&#039;&#039;&#039;&lt;br /&gt;
SRV records are used to locate specific protocols on a domain.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NS Record&#039;&#039;&#039;&lt;br /&gt;
NS records are used to delegate DNS to the listed name servers.  Clicking on &#039;&#039;&#039;NS&#039;&#039;&#039; will bring up a name server field.  By default, all DNS will come with name server records populated.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MX Record&#039;&#039;&#039;&lt;br /&gt;
MX records allow you to determine which mail host will control your email.  Clicking on &#039;&#039;&#039;MX&#039;&#039;&#039; will bring up Target and Priority fields.  The target is the url of the host managing your email (XMission&#039;s MX record is mx.xmission.com).  The priority determines the order in which your mail servers will be processed.  A lower priority is always processed first.&lt;br /&gt;
&lt;br /&gt;
====Edit/Remove Existing DNS Record====&lt;br /&gt;
You can edit a DNS record by clicking on the &amp;quot;Edit&amp;quot; button next to the record you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will change the existing record into editable text boxes you can update.  When you are satisfied with your changes, click the blue &amp;quot;Save&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns-fields.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A DNS record can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the dns record you want to remove.  You will be prompted to confirm the deletion before it is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Account Home}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Services}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Billing}}&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Unlimited_Hosting/Plesk_Mail&amp;diff=9218</id>
		<title>Unlimited Hosting/Plesk Mail</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Unlimited_Hosting/Plesk_Mail&amp;diff=9218"/>
		<updated>2018-03-16T19:16:13Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h2 style=&amp;quot;padding-top:1.5em&amp;quot;&amp;gt;Recommended Email Settings&amp;lt;/h2&amp;gt;&lt;br /&gt;
{| style=&amp;quot;text-align: left; border: 1px solid #ccc;&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot; &lt;br /&gt;
! style=&amp;quot;border-bottom:1px solid #ccc; background-color: #eef; padding:2px 8px&amp;quot; colspan=2 | Incoming Server Information:&lt;br /&gt;
! style=&amp;quot;border-style: solid; border-width: 0 0 1px 1px; border-color:#ccc; background-color: #eef; padding:2px 8px&amp;quot; colspan=2 | Outgoing Server Information:&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;padding:2px 8px&amp;quot; |Server Type: || IMAP&lt;br /&gt;
|style=&amp;quot;border-left:1px solid #ccc; padding:2px 8px&amp;quot; | Server Type: || SMTP&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;padding:2px 8px&amp;quot; |Hostname: || example.com&lt;br /&gt;
|style=&amp;quot;border-left:1px solid #ccc; padding:2px 8px&amp;quot; | Hostname: || example.com &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;padding:2px 8px&amp;quot; |Port: || 143&lt;br /&gt;
|style=&amp;quot;border-left:1px solid #ccc; padding:2px 8px&amp;quot; | Port: || 465&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;padding:2px 8px&amp;quot; |Encryption Type: || None&lt;br /&gt;
|style=&amp;quot;border-left:1px solid #ccc; padding:2px 8px&amp;quot; | Encryption Type: || SSL&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;padding:2px 8px&amp;quot; |Authenticate Using: || Clear Text/Normal Password &amp;amp;nbsp;&lt;br /&gt;
|style=&amp;quot;border-left:1px solid #ccc; padding:2px 8px&amp;quot; | Requires Authentication: || Yes&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;padding:2px 8px&amp;quot; |Logon User Name: || yourname@example.com &amp;amp;nbsp;&lt;br /&gt;
|style=&amp;quot;border-left:1px solid #ccc; padding:2px 8px&amp;quot; | ||&lt;br /&gt;
|}&lt;br /&gt;
{| style=&amp;quot;text-align: left; border: 1px solid #ccc;&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;2&amp;quot; &lt;br /&gt;
! style=&amp;quot;border-bottom:1px solid #ccc; background-color: #eef; padding:2px 8px&amp;quot; colspan=2 | SSL Incoming Server Information:&lt;br /&gt;
! style=&amp;quot;border-style: solid; border-width: 0 0 1px 1px; border-color:#ccc; background-color: #eef; padding:2px 8px&amp;quot; colspan=2 | SSL Outgoing Server Information:&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;padding:2px 8px&amp;quot; |Server Type: || IMAP&lt;br /&gt;
|style=&amp;quot;border-left:1px solid #ccc; padding:2px 8px&amp;quot; | Server Type: || SMTP&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;padding:2px 8px&amp;quot; |Hostname: || example.com&lt;br /&gt;
|style=&amp;quot;border-left:1px solid #ccc; padding:2px 8px&amp;quot; | Hostname: || example.com &amp;amp;nbsp;&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;padding:2px 8px&amp;quot; |Port: || 993&lt;br /&gt;
|style=&amp;quot;border-left:1px solid #ccc; padding:2px 8px&amp;quot; | Port: || 465&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;padding:2px 8px&amp;quot; |Encryption Type: || SSL&lt;br /&gt;
|style=&amp;quot;border-left:1px solid #ccc; padding:2px 8px&amp;quot; | Encryption Type: || SSL&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;padding:2px 8px&amp;quot; |Authenticate Using: || Clear Text/Normal Password &amp;amp;nbsp;&lt;br /&gt;
|style=&amp;quot;border-left:1px solid #ccc; padding:2px 8px&amp;quot; | Requires Authentication: || Yes&lt;br /&gt;
|-&lt;br /&gt;
|style=&amp;quot;padding:2px 8px&amp;quot; |Logon User Name: || yourname@example.com &amp;amp;nbsp;&lt;br /&gt;
|style=&amp;quot;border-left:1px solid #ccc; padding:2px 8px&amp;quot; | ||&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
*Set up and use an e-mail client program on your computer. Typically, in such programs you should specify the following settings:&lt;br /&gt;
**Username. In this field, specify your full e-mail address. for example, johndoe@example.com.&lt;br /&gt;
**Password. Most likely, the password to your e-mail account.&lt;br /&gt;
**Mail server protocol. This property defines whether you want to keep copies of messages on the server or not. To keep the copies on the server, select the IMAP option. If you do not want to keep them on the server, select POP3. &lt;br /&gt;
** Incoming mail server (POP3/IMAP). Type your domain name. For example, example.com. The POP3 port is 110. The IMAP port is 143.&lt;br /&gt;
** Outgoing mail server (SMTP). Type your domain name. For example, example.com. The SMTP port is 25. This server requires authentication.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*[http://wiki/Hosting_Control_Panel/Mail_Setup_Outlook2012 Outlook 2012]&lt;br /&gt;
*[http://wiki/Hosting_Control_Panel/Mail_Setup_Outlook_Express Outlook Express]&lt;br /&gt;
*[http://wiki/Hosting_Control_Panel/Mail_Setup_Thunderbird Thunderbird]&lt;br /&gt;
*[http://wiki/Hosting_Control_Panel/Mail_Setup_Apple_Mail Mac Mail]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
{{:Shared Hosting}}&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Secure_Your_Sites&amp;diff=9217</id>
		<title>Secure Your Sites</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Secure_Your_Sites&amp;diff=9217"/>
		<updated>2018-03-16T19:15:25Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Plesk Shared Hosting: Securing Your Sites==&lt;br /&gt;
&lt;br /&gt;
=== Creating CSR ===&lt;br /&gt;
SSL certificates secure transfer of sensitive data from visitors to your website, and also verify the site identity. Below you can find two lists of SSL certificates: the first one showing certificates that you use for securing your websites and the other one showing certificates that you purchased.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* From the Hosting control panel Click on Websites and Domains - if you just logged in you are already there.&lt;br /&gt;
[[File:Plesk_tabs_new.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Find the domain you wish to use your SSL Certificate for and click on the little down arrow to see more options.&lt;br /&gt;
* Next choose &#039;&#039;&#039;Secure Your Sites&#039;&#039;&#039;&lt;br /&gt;
[[File:SharedHosting-SSL-00.png]]&lt;br /&gt;
&lt;br /&gt;
* Next choose &#039;&#039;&#039;Add SSL Certificate&#039;&#039;&#039;&lt;br /&gt;
[[File:SharedHosting-SSL-02.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Next fill in the form to generate a CSR then hit Request&lt;br /&gt;
[[File:SharedHosting-SSL-03.png]]&lt;br /&gt;
* Certificate Name: &#039;&#039;This will help you identify this certificate in the repository.&#039;&#039;&lt;br /&gt;
* Country: &#039;&#039;This is defaulted to United States&#039;&#039;&lt;br /&gt;
* State or province: &#039;&#039;The state in which your company resides&#039;&#039;&lt;br /&gt;
* Location(city): &#039;&#039;The city in which your company resides&#039;&#039;&lt;br /&gt;
* Organization Name: &#039;&#039;This can be your company name&#039;&#039;&lt;br /&gt;
* Organization Department: &#039;&#039;Website, IT or variations, should not exceed 64 characters&#039;&#039;&lt;br /&gt;
* Domain name: &#039;&#039; The domain name for which you want to purchase an SSL certificate. This should be a fully qualified domain name. Example: your-domain.com or www.your-domain.com&#039;&#039;&lt;br /&gt;
* Email: &#039;&#039;The website administrator&#039;s email address&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* After you fill out the above form it will generate a &#039;&#039;&#039;CSR&#039;&#039;&#039; this is what you need to purchase a SSL Certificate.&lt;br /&gt;
* Confirmation that your CSR was created&lt;br /&gt;
[[File:SharedHosting-SSL-04.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Click on the Certificate name to view your CSR&lt;br /&gt;
[[File:SharedHosting-SSL-05.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Locate the CSR section on the page, and copy the text that starts with the line -----BEGIN CERTIFICATE REQUEST----- and ends with the line -----END CERTIFICATE REQUEST----- to the clipboard. &lt;br /&gt;
[[File:SharedHosting-SSL-06.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NOTE&#039;&#039;&#039; when ordering an SSL Certificate the validation email must match your domain with the following conditions&lt;br /&gt;
**admin@&amp;lt;domain.tld&amp;gt;&lt;br /&gt;
**administrator@&amp;lt;domain.tld&amp;gt;&lt;br /&gt;
**hostmaster@&amp;lt;domain.tld&amp;gt;&lt;br /&gt;
**webmaster@&amp;lt;domain.tld&amp;gt;&lt;br /&gt;
**postmaster@&amp;lt;domain.tld&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Installing SSL Certificate ===&lt;br /&gt;
* Once you have ordered your SSL Certificate, you should receive an email to approve the creating of the certificate. Once you approve the process, another email will be sent to you with your Certificate. &lt;br /&gt;
&lt;br /&gt;
* Log in to your Control Panel &lt;br /&gt;
* Find the domain you wish to secure and click on the little down arrow to expand the options&lt;br /&gt;
* Choose &#039;&#039;&#039;Secure Your Sites&#039;&#039;&#039;&lt;br /&gt;
* Click on the Certificate Name that you created earlier&lt;br /&gt;
* After you have copied the Certificate from the email you received past it in the box for Certificate &lt;br /&gt;
** Be sure to include -----Begin Certificate----- and -----End Certificate-----&lt;br /&gt;
[[File:SharedHosting-SSL-07.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Now you need to assign the certificate to your site. To do that, from the menu choose&#039;&#039;&#039;Websites and Domains&#039;&#039;&#039;&lt;br /&gt;
* Find the domain you are add the SSL Certificate for and choose &#039;&#039;&#039;Hosting Settings&#039;&#039;&#039;&lt;br /&gt;
[[File:SharedHosting-SSL-08.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Then check the box for SSL Support and select your certificate&lt;br /&gt;
[[File:SharedHosting-SSL-09.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Click &#039;&#039;&#039;OK&#039;&#039;&#039; at the bottom and that is it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Shared Hosting|Secure Your Sites]]&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Web_Statistics&amp;diff=9216</id>
		<title>Web Statistics</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Web_Statistics&amp;diff=9216"/>
		<updated>2018-03-16T19:15:11Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;View the reports on how your websites are visited: See how many people visited a site and which webpages they viewed.&lt;br /&gt;
&lt;br /&gt;
Your web statistics offer:&lt;br /&gt;
:Month&lt;br /&gt;
:Unique visitors	&lt;br /&gt;
:Number of visits&lt;br /&gt;
:Bandwidth&lt;br /&gt;
:Browsers &lt;br /&gt;
:Search Keyphrases&lt;br /&gt;
And more&lt;br /&gt;
&lt;br /&gt;
===How do I access my web statistics?===&lt;br /&gt;
&lt;br /&gt;
To find out how many people visited a site, from what countries, and what pages of the site they viewed:&lt;br /&gt;
#Go to the Websites &amp;amp; Domains tab and click the domain name for which you want to view the statictics&lt;br /&gt;
#Click Web Statistics.&lt;br /&gt;
#The site visitor statistics will show in a new browser window.&lt;br /&gt;
#To view statistics for web pages viewed from the SSL-secured area of your site, select SSL Web Statistics in the menu.&lt;br /&gt;
#To view statistics for files downloaded over the file transfer protocol (FTP), select FTP Statistics in the menu.&lt;br /&gt;
Alternately, you can view the visits statistics for a site by visiting the following URL: https://your-domain.com/plesk-stat/webstat. When prompted for username and password, specify your FTP account username and password.&lt;br /&gt;
&lt;br /&gt;
===What do my web statistics offer?===&lt;br /&gt;
&lt;br /&gt;
* Number of visits, and number of unique visitors&lt;br /&gt;
* Visits duration and last visits&lt;br /&gt;
* Authenticated users, and last authenticated visits&lt;br /&gt;
* Days of week and rush hours (pages, hits, KB for each hour and day of week)&lt;br /&gt;
* Domains/countries of hosts visitors (pages, hits, KB, 269 domains/countries detected, GeoIp detection)&lt;br /&gt;
* Hosts list, last visits and unresolved IP addresses list&lt;br /&gt;
* Most viewed, entry and exit pages&lt;br /&gt;
* Files type&lt;br /&gt;
* Web compression statistics (for mod_gzip or mod_deflate)&lt;br /&gt;
* OS used (pages, hits, KB for each OS, 35 OS detected)&lt;br /&gt;
* Browsers used (pages, hits, KB for each browser, each version (Web, Wap, Media browsers: 97 browsers, more than 450 if using browsers_phone.pm library file)&lt;br /&gt;
* Visits of robots (319 robots detected)&lt;br /&gt;
* Worms attacks (5 worm&#039;s families)&lt;br /&gt;
* Search engines, keyphrases and keywords used to find your site (The 115 most famous search engines are detected like yahoo, google, altavista, etc...)&lt;br /&gt;
* HTTP errors (Page Not Found with last referrer, ...)&lt;br /&gt;
* Other personalized reports based on url, url parameters, referer field for miscellanous/marketing purpose&lt;br /&gt;
* Number of times your site is &amp;quot;added to favourites bookmarks&amp;quot;&lt;br /&gt;
* Screen size (need to add some HTML tags in index page)&lt;br /&gt;
* Ratio of Browsers with support of: Java, Flash, RealG2 reader, Quicktime reader, WMA reader, PDF reader (need to add some HTML tags in index page)&lt;br /&gt;
* Cluster report for load balanced servers ratio&lt;br /&gt;
&lt;br /&gt;
===How far back do the web statistics go?===&lt;br /&gt;
Web and Traffic statistics are retained for 3 months - however the monthly history will allow you to see the data for the entire year.  You are able to view the complete statistics for the current month and for the past 3 months.&lt;br /&gt;
&lt;br /&gt;
===How often are the web statistics generated?===&lt;br /&gt;
&lt;br /&gt;
Web Statistics are generated every night. So you can have the most updated information the next day.&lt;br /&gt;
&lt;br /&gt;
===How can I change the username and password to access my web statistics?===&lt;br /&gt;
&lt;br /&gt;
Since your FTP username and password is linked to your web statistics. You will need to edit your FTP username and password. &lt;br /&gt;
Follow this link for instructions: [http://wiki.xmission.com/Hosting_Control_Panel/Managing_FTP_Access_-_Users FTP Access]&lt;br /&gt;
&lt;br /&gt;
[[Category:Shared_Hosting]]&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=WordPress&amp;diff=9215</id>
		<title>WordPress</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=WordPress&amp;diff=9215"/>
		<updated>2018-03-16T19:14:49Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== &#039;&#039;&#039;Wordpress one click install&#039;&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Video == &lt;br /&gt;
*[https://www.youtube.com/watch?v=t4KqAr-BwEo XMission Support: How to install Wordpress]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Easy Install ==&lt;br /&gt;
* To utilize the Wordpress once click install you will need to Login to your control panel. &lt;br /&gt;
* Go to [http://hosting.xmission.com http://hosting.xmission.com]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Enter your Username and Password&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Plesk_main_login.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Next select Applications from the menu&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:web_domains.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Next choose Install - Under Wordpress&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Wordpress-1.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE:&#039;&#039;&#039; Pay attention to this section - as the default is to install in &#039;&#039;/wordpress&#039;&#039; if you &#039;&#039;&#039;do not&#039;&#039;&#039; want your clients to goto domain.tld/wordpress. then we suggest to remove &#039;&#039;&#039;/wordpress&#039;&#039;&#039; from that box. &lt;br /&gt;
&lt;br /&gt;
* Next you will choose the directory you wish to install Wordpress&lt;br /&gt;
[[File:Wordpress-2.png ]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Next just click &#039;&#039;&#039;Install&amp;quot;&amp;quot;&amp;quot; and your setup is complete.&lt;br /&gt;
[[File:Wordpress-3.png]]&lt;br /&gt;
&lt;br /&gt;
==Advanced Setup==&lt;br /&gt;
&lt;br /&gt;
* When choosing Wordpress - Click on the down arrow and choose &#039;&#039;&#039;Install (Custom)&#039;&#039;&#039;&lt;br /&gt;
[[File:Wordpress4.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Agree to the terms &lt;br /&gt;
[[File:Screen_Shot_2014-09-25_at_2.58.10_PM.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Next &lt;br /&gt;
[[File:Screen_Shot_2014-09-25_at_3.00.37_PM.png]]&lt;br /&gt;
&lt;br /&gt;
*Specify the location: &#039;&#039;Choose where you want to install Wordpress. We recommend putting it in the root of your website.&#039;&#039;&lt;br /&gt;
*Automatically update this app when updates are available : &#039;&#039;We recommend that you check this box to keep your Wordpress up to date.&#039;&#039;&lt;br /&gt;
*Administrative access to the application: &#039;&#039;The default option is best in this case.&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;Moving an Existing Wordpress to XMission Hosting&#039;&#039;&#039; ==&lt;br /&gt;
&lt;br /&gt;
[[1]] Follow the above section&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[2]] Export the Database for your WordPress and save it to your local computer&amp;lt;br&amp;gt;&lt;br /&gt;
* Most Hosting companies will use PHPMyAdmin - you can log into this and export your database. &lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[3]] Once your Database has been exported you will log into your control panel as stated above in Step 2 then click on Websites &amp;amp; Domains as in Step 3&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[4]] Click on Databases &amp;lt;br&amp;gt;&lt;br /&gt;
[[File:wp_database.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[5]] Choose the Database that reflects your Wordpress Install &amp;lt;br&amp;gt;&lt;br /&gt;
[[File:wp_select_database.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[6]] Select webadmin icon located under Tools - This will launch PHPMyAdmin so you can import your WordPress Database&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:wp_webadmin.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[7]] Once in PHPMyAdmin - select Database from the menu&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:phpmyadmin_database.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[8]] Next Select your Database&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:phpmyadmin_database_select.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[9]] Choose Check All under all the tables - &amp;lt;br&amp;gt;&lt;br /&gt;
[[File:phpmyadmin_checkall.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[10]] Where is says With Selected choose Drop&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:phpmyadmin_drop.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[11]] Choose Yes after you select Drop this will remove all the tables that the Pre-Installed WordPress has created and allow you to import your database.&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[12]] Now choose Import from the menu bar&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:phpmyadmin_database.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[13]] In the Section File to Import: Click on Choose File so you can select your database to import. &amp;lt;br&amp;gt;&lt;br /&gt;
[[File:phpmyadmin_import.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[14]] Once you have imported your database - you can then FTP your files to your new server. Use an FTP program like [http://filezilla-project.org/  FileZIlla] that is free and will work for Mac, Windows, and Linux&amp;lt;br&amp;gt;&lt;br /&gt;
* IF you are using FileZilla fill in the following information:&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:filezilla.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
** &#039;&#039;&#039;Host Name&#039;&#039;&#039; - your domain name (i.e. domain.com )&lt;br /&gt;
** &#039;&#039;&#039;Username&#039;&#039;&#039; - your FTP username&lt;br /&gt;
** &#039;&#039;&#039;Password&#039;&#039;&#039; - your FTP password&lt;br /&gt;
&lt;br /&gt;
* When you FTP your files to your new Hosting - &#039;&#039;&#039;DO NOT&#039;&#039;&#039; include the &#039;&#039;&#039;wp-config.php&#039;&#039;&#039; or the &#039;&#039;&#039;.htaccess&#039;&#039;&#039; files&lt;br /&gt;
[[15]] Once you have FTP&#039;d all of your files - you can then log in to your Admin panel (i.e. http://domain.com/wp-admin/) you can log in with the same username and password that you always have. &lt;br /&gt;
* Once you have logged in you will want to Click on Settings &amp;gt; Permalinks make sure it is currently set to Default .. click Save .. This will crate a .htaccess file. Now you can set the Permalinks the way you want. &lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
Your Site should now be up and running the way it was at your old host.&lt;br /&gt;
&lt;br /&gt;
== &#039;&#039;&#039;Moving your wordpress from one Domain to Another&#039;&#039;&#039; ==&lt;br /&gt;
[[1]] Follow the sections above - However After Step 13 follow these instructions&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[2]] Choose SQL from the menu bar&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:phpmyadmin_database.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[3]] Insert the following:&lt;br /&gt;
 UPDATE wp_options SET option_value = &#039;http://www.domain.com&#039; WHERE option_name IN (&#039;siteurl&#039;, &#039;home&#039;)&lt;br /&gt;
Insert that SQL query in the giant ‘Run SQL query/queries on database…’ field and change the http://www.domain.com to reflect the root level of the site you’re transferring to (so, if you’re moving WordPress to www.domain.com/bar make sure that the /bar is appended here)&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:phpmyadmin_change_domain.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[4]] Next you will want to run another SQL command:&lt;br /&gt;
 UPDATE wp_posts SET post_content=(REPLACE (post_content, &#039;{old url}&#039;,&#039;{new url}&#039;))&lt;br /&gt;
If you’re moving from http://www.olddomain.com/blog to http://www.newdomain.com you’ll want &#039;&#039;&#039;{old url}&#039;&#039;&#039; to say ‘www.olddomain.com/blog’ and &#039;&#039;&#039;{new url}&#039;&#039;&#039; to say ‘www.newdomain.com’.)&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:phpmyadmin_update_wp_post.png]]&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
* After you run the above commands your WordPress site should now reflect your new domain. &lt;br /&gt;
* Continue steps 14 and 15 above as you will also want to edit your settings in Wordpress to reflect your new Domain name&lt;br /&gt;
&lt;br /&gt;
{{:Shared_Hosting}}&lt;br /&gt;
[[Category:Shared Hosting|Wordpress]]&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Category:Shared_Hosting&amp;diff=9214</id>
		<title>Category:Shared Hosting</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Category:Shared_Hosting&amp;diff=9214"/>
		<updated>2018-03-16T19:14:15Z</updated>

		<summary type="html">&lt;p&gt;Envy: Created page with &amp;quot;&amp;lt;h1 class=&amp;quot;superHeader blue&amp;quot;&amp;gt;File:support.pngShared Hosting&amp;lt;/h1&amp;gt;  Category:Hosting Troubleshooting Category:Troubleshooting&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1 class=&amp;quot;superHeader blue&amp;quot;&amp;gt;[[File:support.png]]Shared Hosting&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Hosting Troubleshooting]]&lt;br /&gt;
[[Category:Troubleshooting]]&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Category:Unlimited_Hosting&amp;diff=9213</id>
		<title>Category:Unlimited Hosting</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Category:Unlimited_Hosting&amp;diff=9213"/>
		<updated>2018-03-16T19:13:00Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1 class=&amp;quot;superHeader blue&amp;quot;&amp;gt;[[File:support.png]]Unlimited Hosting&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Hosting Troubleshooting]]&lt;br /&gt;
[[Category:Troubleshooting]]&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Category:Unlimited_Hosting&amp;diff=9212</id>
		<title>Category:Unlimited Hosting</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Category:Unlimited_Hosting&amp;diff=9212"/>
		<updated>2018-03-16T19:12:41Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h1 class=&amp;quot;superHeader blue&amp;quot;&amp;gt;[[File:support.png]]Shared Hosting&amp;lt;/h1&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Hosting Troubleshooting]]&lt;br /&gt;
[[Category:Troubleshooting]]&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Preparing_for_Cloud_Migrations&amp;diff=9211</id>
		<title>Preparing for Cloud Migrations</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Preparing_for_Cloud_Migrations&amp;diff=9211"/>
		<updated>2018-03-16T18:44:02Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Migrating your site to our Cloud Server */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Archived}}&lt;br /&gt;
==Migrating your site to our Cloud Server==&lt;br /&gt;
&lt;br /&gt;
When chooing our Cloud Server we want to make sure you have the best tools and information you will need to complete the process. This article will cover the step involved in preparing your site for migration to your new Cloud Server. &lt;br /&gt;
&lt;br /&gt;
In most instances we will be handling the migration of your site from our legacy hosting, shared hosting or Stackable. If you are savvy you are also welcome to migrate your files over your sef. Here is an outline of the process. &lt;br /&gt;
&lt;br /&gt;
A good thing to remember and if possible - make sure your applications are up to date - for instance if you are still using Wordpress 2.9 you might want to think about upgrading to the latest version - not only for compatibility issues but for security as well.&lt;br /&gt;
&lt;br /&gt;
===Signing up===&lt;br /&gt;
First you will create an account at store.xmission.com to sign up for our Cloud Service. This will initiate the first phase in the migration process. &lt;br /&gt;
&lt;br /&gt;
Any files located on your legacy hosting, shared hosting or Stackable account are now scheduled to be copied over to the new Cloud Server. During this time the server is up and running and available to log in to. &lt;br /&gt;
&lt;br /&gt;
Any databases are then copied over to the new Cloud Server and files that call to the database are optimized for the new settings. &amp;lt;br&amp;gt;&#039;&#039;&#039;Note - this is on a case by case basis&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Once all the files are migrated an email will be sent out to you notifying you that your new server is ready for testing. &lt;br /&gt;
&lt;br /&gt;
Once testing is complete this will start phase 2 &lt;br /&gt;
&lt;br /&gt;
===Migration===&lt;br /&gt;
Once you have tested and reviewed the contents of your new Cloud Server you should respond to the email notifying us that everythign is &#039;good to go&#039;. Once we receive this email we will rsync your files making sure any changed files are re-copied to the Cloud server - if you have a database we will make sure to do a database dump and move that over as well. &lt;br /&gt;
&lt;br /&gt;
The time taken to migrate your site depends on how large your site is. This can be reduced by removing any large files you no longer need. Removing or deleting any log files, or archived log files or any application cache files.&lt;br /&gt;
&lt;br /&gt;
===Check for large files===&lt;br /&gt;
One way to reduce the time of your migration is to remove large files or log files you no longer need. Here is a handy script you can run from the command line that will tell you where the large files are and what size they are. &lt;br /&gt;
&lt;br /&gt;
If you are on Stackable you can run this from the command line&lt;br /&gt;
&amp;lt;code&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
find / -mount -type f -ls|sort -rnk7 |head -30|awk &#039;{printf &amp;quot;%10d MB\t%s\n&amp;quot;,($7/1024)/1024,$NF}&#039;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This will give you an understanding of where your larger files are and if you need them or if you can remove them prior to migration.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Email&amp;diff=9209</id>
		<title>Email</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Email&amp;diff=9209"/>
		<updated>2018-03-16T18:39:23Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h3&amp;gt;Information&amp;lt;/h3&amp;gt;&lt;br /&gt;
*[[Zimbra Domain Email and Collaboration Suite|Zimbra Email and Collaboration Suite]]&lt;br /&gt;
*[https://xmission.com/blog/?s=zimbra Zimbra power tips on our XMission blog]&lt;br /&gt;
*[[Hosting_Control_Panel/Mail| Shared Hosting Mail (Plesk Mail)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Setup Instructions&amp;lt;/h3&amp;gt;&lt;br /&gt;
*[[Client_Configuration_for_%40XMission.com_Email|XMission.com Email Configuration Instructions]]&lt;br /&gt;
*[[Zimbra_Email_Client_Configurations|Zimbra Email Configuration Instructions]]&lt;br /&gt;
*[[General Email Settings]]&lt;br /&gt;
*[[webmail|XMission webmail help for @xmission.com email accounts]]&lt;br /&gt;
[[Category:Email]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt; Miscellaneous&amp;lt;/h3&amp;gt;&lt;br /&gt;
*[[Suffix_support | Suffix support adds unlimited address options to your XMission email]]&lt;br /&gt;
*[[Email attachments | Security: Why certain email attachments are blocked by XMission.]]&lt;br /&gt;
*[[LDAP/Active Directory | Authenticating XMission hosted Zimbra with customer LDAP/Active Directory.]]&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Email&amp;diff=9208</id>
		<title>Email</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Email&amp;diff=9208"/>
		<updated>2018-03-16T18:38:23Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;h3&amp;gt;Information&amp;lt;/h3&amp;gt;&lt;br /&gt;
*[[Zimbra Domain Email and Collaboration Suite|Zimbra Email and Collaboration Suite]]&lt;br /&gt;
*[https://xmission.com/blog/?s=zimbra Zimbra power tips on our XMission blog]&lt;br /&gt;
*[[Hosting_Control_Panel/Mail| Shared Shared Hosting Mail (Plesk Mail)]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Setup Instructions&amp;lt;/h3&amp;gt;&lt;br /&gt;
*[[Client_Configuration_for_%40XMission.com_Email|XMission.com Email Configuration Instructions]]&lt;br /&gt;
*[[Zimbra_Email_Client_Configurations|Zimbra Email Configuration Instructions]]&lt;br /&gt;
*[[General Email Settings]]&lt;br /&gt;
*[[webmail|XMission webmail help for @xmission.com email accounts]]&lt;br /&gt;
[[Category:Email]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt; Miscellaneous&amp;lt;/h3&amp;gt;&lt;br /&gt;
*[[Suffix_support | Suffix support adds unlimited address options to your XMission email]]&lt;br /&gt;
*[[Email attachments | Security: Why certain email attachments are blocked by XMission.]]&lt;br /&gt;
*[[LDAP/Active Directory | Authenticating XMission hosted Zimbra with customer LDAP/Active Directory.]]&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Secure_Your_Sites&amp;diff=9207</id>
		<title>Secure Your Sites</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Secure_Your_Sites&amp;diff=9207"/>
		<updated>2018-03-16T18:23:20Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Plesk Shared Hosting: Securing Your Sites==&lt;br /&gt;
&lt;br /&gt;
=== Creating CSR ===&lt;br /&gt;
SSL certificates secure transfer of sensitive data from visitors to your website, and also verify the site identity. Below you can find two lists of SSL certificates: the first one showing certificates that you use for securing your websites and the other one showing certificates that you purchased.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* From the Hosting control panel Click on Websites and Domains - if you just logged in you are already there.&lt;br /&gt;
[[File:Plesk_tabs_new.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Find the domain you wish to use your SSL Certificate for and click on the little down arrow to see more options.&lt;br /&gt;
* Next choose &#039;&#039;&#039;Secure Your Sites&#039;&#039;&#039;&lt;br /&gt;
[[File:SharedHosting-SSL-00.png]]&lt;br /&gt;
&lt;br /&gt;
* Next choose &#039;&#039;&#039;Add SSL Certificate&#039;&#039;&#039;&lt;br /&gt;
[[File:SharedHosting-SSL-02.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Next fill in the form to generate a CSR then hit Request&lt;br /&gt;
[[File:SharedHosting-SSL-03.png]]&lt;br /&gt;
* Certificate Name: &#039;&#039;This will help you identify this certificate in the repository.&#039;&#039;&lt;br /&gt;
* Country: &#039;&#039;This is defaulted to United States&#039;&#039;&lt;br /&gt;
* State or province: &#039;&#039;The state in which your company resides&#039;&#039;&lt;br /&gt;
* Location(city): &#039;&#039;The city in which your company resides&#039;&#039;&lt;br /&gt;
* Organization Name: &#039;&#039;This can be your company name&#039;&#039;&lt;br /&gt;
* Organization Department: &#039;&#039;Website, IT or variations, should not exceed 64 characters&#039;&#039;&lt;br /&gt;
* Domain name: &#039;&#039; The domain name for which you want to purchase an SSL certificate. This should be a fully qualified domain name. Example: your-domain.com or www.your-domain.com&#039;&#039;&lt;br /&gt;
* Email: &#039;&#039;The website administrator&#039;s email address&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* After you fill out the above form it will generate a &#039;&#039;&#039;CSR&#039;&#039;&#039; this is what you need to purchase a SSL Certificate.&lt;br /&gt;
* Confirmation that your CSR was created&lt;br /&gt;
[[File:SharedHosting-SSL-04.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Click on the Certificate name to view your CSR&lt;br /&gt;
[[File:SharedHosting-SSL-05.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Locate the CSR section on the page, and copy the text that starts with the line -----BEGIN CERTIFICATE REQUEST----- and ends with the line -----END CERTIFICATE REQUEST----- to the clipboard. &lt;br /&gt;
[[File:SharedHosting-SSL-06.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NOTE&#039;&#039;&#039; when ordering an SSL Certificate the validation email must match your domain with the following conditions&lt;br /&gt;
**admin@&amp;lt;domain.tld&amp;gt;&lt;br /&gt;
**administrator@&amp;lt;domain.tld&amp;gt;&lt;br /&gt;
**hostmaster@&amp;lt;domain.tld&amp;gt;&lt;br /&gt;
**webmaster@&amp;lt;domain.tld&amp;gt;&lt;br /&gt;
**postmaster@&amp;lt;domain.tld&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Installing SSL Certificate ===&lt;br /&gt;
* Once you have ordered your SSL Certificate, you should receive an email to approve the creating of the certificate. Once you approve the process, another email will be sent to you with your Certificate. &lt;br /&gt;
&lt;br /&gt;
* Log in to your Control Panel &lt;br /&gt;
* Find the domain you wish to secure and click on the little down arrow to expand the options&lt;br /&gt;
* Choose &#039;&#039;&#039;Secure Your Sites&#039;&#039;&#039;&lt;br /&gt;
* Click on the Certificate Name that you created earlier&lt;br /&gt;
* After you have copied the Certificate from the email you received past it in the box for Certificate &lt;br /&gt;
** Be sure to include -----Begin Certificate----- and -----End Certificate-----&lt;br /&gt;
[[File:SharedHosting-SSL-07.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Now you need to assign the certificate to your site. To do that, from the menu choose&#039;&#039;&#039;Websites and Domains&#039;&#039;&#039;&lt;br /&gt;
* Find the domain you are add the SSL Certificate for and choose &#039;&#039;&#039;Hosting Settings&#039;&#039;&#039;&lt;br /&gt;
[[File:SharedHosting-SSL-08.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Then check the box for SSL Support and select your certificate&lt;br /&gt;
[[File:SharedHosting-SSL-09.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* Click &#039;&#039;&#039;OK&#039;&#039;&#039; at the bottom and that is it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Unlimited Hosting|Secure Your Sites]]&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Copying_a_Website&amp;diff=9206</id>
		<title>Copying a Website</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Copying_a_Website&amp;diff=9206"/>
		<updated>2018-03-16T18:17:08Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Plesk Shared Hosting: Copying a Website ==&lt;br /&gt;
&lt;br /&gt;
Copying your website to a new location can be extremely useful. For example, you may want to make your current website only available at a subdomain or you may want to copy it for development purposes. Luckily, making a copy of your existing website is quite easy. First, ensure you are logged into your account at http://hosting.xmission.com. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*From the Control Panel, click on the &amp;quot;Websites &amp;amp; Domains&amp;quot; tab near the top of the screen.&lt;br /&gt;
[[File:Plesk tabs new.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Click the little arrow in the Doman name Box to expand the Hosting Settings, next select the &amp;quot;Website Copying&amp;quot; button. &lt;br /&gt;
[[File:2websitecopy.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*You will now see a list of options and features. In this example, we will be copying the content of &amp;quot;stmyl.com&amp;quot; to &amp;quot;dev.stmyl.com&amp;quot; A brief description of the options follows below.&lt;br /&gt;
[[File:4websitecopy.png]]&lt;br /&gt;
*Website in the Panel: &#039;&#039;If you are copying the content of your current site to a location also hosted within your Control Panel, you will want to select this option.&#039;&#039;&lt;br /&gt;
*Site name: &#039;&#039;This is the destination for the content to be copied. In our example, it is the subdomain &amp;quot;dev.stmyl.com&amp;quot; You may also copy content to an entirely separate domain.&#039;&#039; &amp;lt;blockquote style=&amp;quot;background-color: lightblue; border: solid thin grey;&amp;quot;&amp;gt;Please note: You must have first created the destination domain or subdomain before you can copy the content. For information on creating new domains and subdomains, pursue the links at the bottom of this page.&amp;lt;/blockquote&amp;gt; &lt;br /&gt;
*What to do with existing files: &#039;&#039;If there is already content at the destination you are copying to, you can choose to either have the copy overwrite the relevant existing content or delete all the content completely.&#039;&#039; &lt;br /&gt;
*FTP Storage: &#039;&#039;If you wish to copy your current content via FTP or to a host outside your Control Panel, you can use this option.&#039;&#039; &amp;lt;blockquote style=&amp;quot;background-color: lightblue; border: solid thin grey;&amp;quot;&amp;gt;Please note: You will need the relevant FTP information and credentials for any external servers.&amp;lt;/blockquote&amp;gt;  &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Once you&#039;ve entered the correct information for your new domain, simply click &amp;quot;OK.&amp;quot; Depending on the size of your website content, it may take the server some time to complete the task. You will receive an email when all content has been copied successfully.&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{:Shared_Hosting}}&lt;br /&gt;
[[Category:Shared Hosting|Copy a Website]]&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9151</id>
		<title>XMission Control Panel/Services Tab</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9151"/>
		<updated>2018-02-09T21:01:09Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* PHP Settings */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Services=&lt;br /&gt;
The &#039;&#039;&#039;Services&#039;&#039;&#039; section of your account details the various services you have active, and depending on the service, assorted tools to help you manage the service.&lt;br /&gt;
&lt;br /&gt;
You can get to your &#039;&#039;&#039;Services&#039;&#039;&#039; page by clicking on the &#039;&#039;&#039;Services&#039;&#039;&#039; link at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
[[File:Services_header.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On the &#039;&#039;&#039;Services&#039;&#039;&#039; screen, you will see various sections depending on the services on your account.  You can click on a section to expand it and see detailed information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
The &#039;&#039;&#039;Summary&#039;&#039;&#039; section details all of the services currently on your account.  Certain services that don&#039;t have additional tools available, such as Internet connections, will appear here instead of appearing in their own section.&lt;br /&gt;
&lt;br /&gt;
==Email==&lt;br /&gt;
The &#039;&#039;&#039;Email&#039;&#039;&#039; section details all of the email services currently active on the account and provides login buttons to grant you quick access to your inbox for personal accounts.&lt;br /&gt;
&lt;br /&gt;
NOTE: the panel currently does not provide specific controls for Zimbra Base and Premium accounts in the Email section.  To manage your Zimbra domain, login to [https://zimbra.xmission.com:7071/zimbraAdmin/ Zimbra Admin] with the appropriate administrator account.&lt;br /&gt;
&lt;br /&gt;
==Cloud Servers==&lt;br /&gt;
The &#039;&#039;&#039;Cloud Servers&#039;&#039;&#039; section details all of the Managed and Unmanaged Cloud hosting servers currently active on the account.  Furthermore, the servers can be managed from this page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add a Server===&lt;br /&gt;
To add a hosted cloud server to your account, click on the &#039;Add a server&#039; button at the bottom of the expanded Cloud Servers section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A window will appear with the various options you have when adding a server.  The cost field will dynamically update based on the options you choose.  &lt;br /&gt;
&lt;br /&gt;
[[File:Create-new-server.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can read up on the Managed Cloud and Unmanaged Cloud servers by clicking on the &#039;Read more&#039; links.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Change the Status of an Existing Server===&lt;br /&gt;
You can start or shut down your servers by clicking on the &amp;quot;Status&amp;quot; drop down underneath the &amp;quot;Cloud Servers&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
[[File:Server-status-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Existing Servers===&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button for a cloud server will allow you to edit resources, and on Managed servers, allow you to tweak specific features related to your hosted website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Configure Resources====&lt;br /&gt;
Clicking on the &amp;quot;Configure resources&amp;quot; button will allow you to change the current CPU Cores, Memory, and Storage settings on your Cloud Server.  &lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Changing any of these settings will automatically update the Cost section, reflecting what the allocated resources will cost you monthly.&lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====SSL Certificates====&lt;br /&gt;
You can view the SSL Certificates currently installed on your Managed Server by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;SSL Certificates&amp;quot; section of &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-ssl-certs.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding an SSL Certificate=====&lt;br /&gt;
You can add an SSL Certificate by clicking on the green &amp;quot;Add SSL Certification&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to name your certificate, insert the Cert and Key information, and finally the Chain Cert/CA information if you have it.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-window.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing an SSL Certificate=====&lt;br /&gt;
You can remove an SSL certificate by clicking on the red &amp;quot;Delete&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be asked to confirm the deletion before your certificate is actually deleted.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Domain Redirects====&lt;br /&gt;
You can add a redirect for one of your domains by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;Redirects&amp;quot; section under &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-redirects-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Domain Redirect=====&lt;br /&gt;
You can add a domain redirect by clicking on the green &amp;quot;Add Domain Redirect&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:Domain-redirect-window.png]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If your domain is pointed at XMission, you will also need to add it to your DNS if you have not already, otherwise the redirect will not work.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Domain Redirect=====&lt;br /&gt;
Domain redirects can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the redirect you want to remove.  &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the redirect is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====PHP Settings====&lt;br /&gt;
You can configure your PHP settings under the &amp;quot;PHP settings&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a New PHP Setting=====&lt;br /&gt;
You can add a new PHP setting by clicking on the &amp;quot;+ Add&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can name the key and set its value in the window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-php-setting-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your setting, click on &amp;quot;Submit&amp;quot;. Note: ensure your syntax is correct.&lt;br /&gt;
&lt;br /&gt;
If you are looking to update your upload size specifically, you can find a guide on updating that [[Changing your upload limits|here]]&lt;br /&gt;
&lt;br /&gt;
=====Removing an Existing PHP Setting=====&lt;br /&gt;
You can remove a PHP setting by clicking on the red &amp;quot;Delete&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the setting is removed.&lt;br /&gt;
&lt;br /&gt;
====Virtual Hosts====&lt;br /&gt;
You can manage the websites hosted on the server under the &amp;quot;Virtual Hosts&amp;quot; section.  You can configure the active aliases, FTP accounts, and SSL certificates.  If you would like to view sites built on your server without updating your DNS, you can view instructions on modifying your hosts file [http://wiki.xmission.com/Cloud_Hosting/Hosts_File here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Website=====&lt;br /&gt;
You can add a website to your server by clicking on the &amp;quot;+ Add website&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-virsthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can set the domain name, any aliases you want to add, and SSL options for the site in the New Website window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-virthost-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTES:&lt;br /&gt;
* Enabling &amp;quot;SSL Only&amp;quot; will setup a 301 redirect to direct any http traffic to https.  &lt;br /&gt;
* You will need to have an SSL Certificate already in place to choose when enabling SSL for a website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Adding / Editing Domain Aliases======&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button underneath &amp;quot;Domain aliases&amp;quot; will allow you to add, edit, and remove aliases for the domain in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain-aliases.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Existing aliases will turn into a text field, allowing you to edit them as needed.  Clicking the red &amp;quot;-&amp;quot; button will remove it.  Clicking the green &amp;quot;+&amp;quot; button will add a new text field that can be used to enter a new alias.  &lt;br /&gt;
&lt;br /&gt;
[[File:Domain-alias-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your changes, click &amp;quot;Save&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Editing FTP Accounts======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;FTP accounts&amp;quot; will allow you to add, edit and remove FTP users for the website in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Clicking the blue &amp;quot;+ Add FTP&amp;quot; button will open the New FTP User window.&lt;br /&gt;
&lt;br /&gt;
[[File:New-ftp-user-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here you can enter a new Username, and set the password for the new user.&lt;br /&gt;
&lt;br /&gt;
Clicking on the gear button will allow you to change the password for the FTP user you wish to update.&lt;br /&gt;
&lt;br /&gt;
To remove an FTP user, click on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm the deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Enabling SSL / Editing SSL Certificate in Use======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;HTTPS&amp;quot; will allow you to enable SSL, turn on HTTPS 301 redirects, and assign a certificate to an existing website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-ssl-certificates.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can enable HTTPS by clicking the check box next to &amp;quot;SSL Enabled&amp;quot;.  Checking &amp;quot;SSL Only&amp;quot; will enable HTTPS 301 redirects for your domain, which will direct all HTTP traffic to HTTPS.&lt;br /&gt;
&lt;br /&gt;
You can set the active certificate by choosing one from the drop down beneath &amp;quot;SSL Certificate&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Ssl-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing a Website=====&lt;br /&gt;
A website can be removed from your server by clicking on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm your deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-virthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: Deleting a website will also delete the relevant directory and files within it, so when deleting a website, ensure that you have backed up the files you want to keep.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
====Databases====&lt;br /&gt;
The databases section allows you to add databases, view database names and usernames associated with those databases, edit database passwords and delete databases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Database=====&lt;br /&gt;
You can add a database by clicking on the &amp;quot;+ Add database&amp;quot; button.  &lt;br /&gt;
&lt;br /&gt;
[[File:Add-database-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can define the database name, username and password in the window that appears.  Note that you will need to confirm the password before the database will be created.&lt;br /&gt;
&lt;br /&gt;
[[File:New-database-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Changing Password on Existing Database=====&lt;br /&gt;
You can change the password on an existing domain by clicking on &amp;quot;Change Password&amp;quot; for the database you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-change-password-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to confirm the new password before it will be updated.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Database=====&lt;br /&gt;
You can remove a database by clicking on the red &amp;quot;Delete&amp;quot; button next to the database you wish to remove.  You will be prompted to confirm deletion before the database is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-delete-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Accessing phpMyAdmin=====&lt;br /&gt;
You can access phpMyAdmin for your databases by clicking on the &amp;quot;phpMyAdmin&amp;quot; button below the database list.&lt;br /&gt;
&lt;br /&gt;
[[File:Phpmyadmin-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Installing WordPress===&lt;br /&gt;
If you would like to install WordPress on your Managed Cloud Server, you can find instructions on how to do so [[Installing WordPress on your Managed Cloud|here]].&lt;br /&gt;
&lt;br /&gt;
==Hosting==&lt;br /&gt;
Under the hosting section, you can see the various website hosting services currently active on the account.&lt;br /&gt;
&lt;br /&gt;
With Shared Web Hosting services, you will be able to see which server your website is located on, the primary username associated with that hosting package, and a Login button that will take you directly to your website control panel.&lt;br /&gt;
&lt;br /&gt;
==DNS==&lt;br /&gt;
The DNS section will show you the DNS you&#039;ve added for the domains you manage.  Domains you have associated with your hosted cloud servers will appear here automatically, but you can further add additional domains if you wish.&lt;br /&gt;
&lt;br /&gt;
Clicking on a domain in the list to the left will show you the current record for that domain.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add Domain===&lt;br /&gt;
To add DNS for a domain, you can click on the &#039;+ Add Domain&#039; button&lt;br /&gt;
&lt;br /&gt;
[[File:Add-domain-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;New Zone&#039; window.  Here, you can input the domain name for the domain you wish to manage, and the TTL for the record.  By default, the TTL is 3600.&lt;br /&gt;
&lt;br /&gt;
When you&#039;re satisfied with what you&#039;ve entered, click on the &#039;Create&#039; button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Domain===&lt;br /&gt;
With the domain selected on the left hand side, you will be able to click on the &#039;Edit&#039; button next to the domain name on the right hand side.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;Edit Zone&#039; window, which looks nearly identical to the New Zone window.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Add New DNS Record====&lt;br /&gt;
With the domain selected on the left hand side, you can click on the green &#039;+&#039; symbol at the bottom of the DNS section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the New Record window, where you can input the record name, as well as determine what type of record it is.&lt;br /&gt;
&lt;br /&gt;
Choosing the type of record will update the window to bring up fields appropriate to the type of record you&#039;re wishing to add.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;A Record&#039;&#039;&#039;&lt;br /&gt;
A records allow you to point a hostname to a specific IP address.  Clicking on &#039;&#039;&#039;A&#039;&#039;&#039; will bring up an IP Address field, allowing you to point the record to a specific IP address.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;TXT Record&#039;&#039;&#039;&lt;br /&gt;
TXT records allow you to specify an arbitrary string of text to be associated with a designated hostname.  Clicking on &#039;&#039;&#039;TXT&#039;&#039;&#039; will bring up a Text field, allowing you to specify the text string you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;AAAA Record&#039;&#039;&#039;&lt;br /&gt;
AAAA records are used to associate IPv6 addresses with the designated hostname.  Clicking on &#039;&#039;&#039;AAAA&#039;&#039;&#039; will bring up an IPv6 Address field, allowing you to specify the IPv6 address you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;CNAME Record&#039;&#039;&#039;&lt;br /&gt;
CNAME records are used to alias one host name to another (most common example being www.domain.tld to domain.tld).  Clicking on &#039;&#039;&#039;CNAME&#039;&#039;&#039; will bring up an Aliased Domain field, allowing you to specify which domain you want the designated hostname to point to.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;SRV Record&#039;&#039;&#039;&lt;br /&gt;
SRV records are used to locate specific protocols on a domain.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NS Record&#039;&#039;&#039;&lt;br /&gt;
NS records are used to delegate DNS to the listed name servers.  Clicking on &#039;&#039;&#039;NS&#039;&#039;&#039; will bring up a name server field.  By default, all DNS will come with name server records populated.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MX Record&#039;&#039;&#039;&lt;br /&gt;
MX records allow you to determine which mail host will control your email.  Clicking on &#039;&#039;&#039;MX&#039;&#039;&#039; will bring up Target and Priority fields.  The target is the url of the host managing your email (XMission&#039;s MX record is mx.xmission.com).  The priority determines the order in which your mail servers will be processed.  A lower priority is always processed first.&lt;br /&gt;
&lt;br /&gt;
====Edit/Remove Existing DNS Record====&lt;br /&gt;
You can edit a DNS record by clicking on the &amp;quot;Edit&amp;quot; button next to the record you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will change the existing record into editable text boxes you can update.  When you are satisfied with your changes, click the blue &amp;quot;Save&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns-fields.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A DNS record can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the dns record you want to remove.  You will be prompted to confirm the deletion before it is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Account Home}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Services}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Billing}}&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Changing_your_upload_limits&amp;diff=9150</id>
		<title>Changing your upload limits</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Changing_your_upload_limits&amp;diff=9150"/>
		<updated>2018-02-09T20:58:56Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Changing your upload limits */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Changing your upload limits=&lt;br /&gt;
By default, PHP limits uploads to 2MB.  In practical usage, you probably want more than this.&lt;br /&gt;
&lt;br /&gt;
==Plesk==&lt;br /&gt;
&lt;br /&gt;
Once logged into the Plesk hosting panel, you will want to click on &#039;&#039;&#039;PHP Settings&#039;&#039;&#039; in the control area for your domain.&lt;br /&gt;
&lt;br /&gt;
[[File:Php-settings-dashboard.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once here, under &#039;&#039;&#039;Performance Settings&#039;&#039;&#039;, you want to update &#039;&#039;&#039;post_max_size&#039;&#039;&#039; and &#039;&#039;&#039;upload_max_filesize&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:The-actual-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Once the settings are configured to your needs, scroll down and click &#039;&#039;&#039;OK&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[File:Settings-confirm.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Cloud Hosting==&lt;br /&gt;
&lt;br /&gt;
On managed cloud servers, PHP settings are configured in the [https://xmission.com/control Control Panel].  Log into the control pane, and click on the &#039;&#039;&#039;Services&#039;&#039;&#039; tab.&lt;br /&gt;
&lt;br /&gt;
[[File:Control-panel-services.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Expand the &#039;&#039;&#039;Servers&#039;&#039;&#039; section, then click on &#039;&#039;&#039;Edit&#039;&#039;&#039; on the server you would like to configure PHP on.&lt;br /&gt;
&lt;br /&gt;
[[File:Control-edit-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On this screen, under &#039;&#039;&#039;Server Settings&#039;&#039;&#039; is a section labelled &#039;&#039;&#039;PHP Settings&#039;&#039;&#039;.  Here, click on &#039;&#039;&#039;Add&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[File:Control-php-add-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the window that appears, first we want to put &#039;&#039;&#039;post_max_size&#039;&#039;&#039; under &#039;&#039;&#039;Key&#039;&#039;&#039;, and the size limit we want to implement under &#039;&#039;&#039;Value&#039;&#039;&#039;.  In this example, I&#039;m setting it to 256M.&lt;br /&gt;
&lt;br /&gt;
[[File:Control-php-values.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click &#039;&#039;&#039;Submit&#039;&#039;&#039; when you&#039;re done.  &lt;br /&gt;
&lt;br /&gt;
We want to do this one more time, this time putting &#039;&#039;&#039;upload_max_filesize&#039;&#039;&#039; as the Key, but keeping the same value.&lt;br /&gt;
&lt;br /&gt;
Once that is done, PHP should be configured on your server.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=File:The-actual-settings.png&amp;diff=9149</id>
		<title>File:The-actual-settings.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=File:The-actual-settings.png&amp;diff=9149"/>
		<updated>2018-02-09T20:58:23Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=File:Settings-confirm.png&amp;diff=9148</id>
		<title>File:Settings-confirm.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=File:Settings-confirm.png&amp;diff=9148"/>
		<updated>2018-02-09T20:58:16Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=File:Php-settings-dashboard.png&amp;diff=9147</id>
		<title>File:Php-settings-dashboard.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=File:Php-settings-dashboard.png&amp;diff=9147"/>
		<updated>2018-02-09T20:58:11Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=File:Control-php-values.png&amp;diff=9146</id>
		<title>File:Control-php-values.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=File:Control-php-values.png&amp;diff=9146"/>
		<updated>2018-02-09T20:57:57Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=File:Control-panel-services.png&amp;diff=9145</id>
		<title>File:Control-panel-services.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=File:Control-panel-services.png&amp;diff=9145"/>
		<updated>2018-02-09T20:57:49Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=File:Control-php-add-button.png&amp;diff=9144</id>
		<title>File:Control-php-add-button.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=File:Control-php-add-button.png&amp;diff=9144"/>
		<updated>2018-02-09T20:57:43Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=File:Control-edit-button.png&amp;diff=9143</id>
		<title>File:Control-edit-button.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=File:Control-edit-button.png&amp;diff=9143"/>
		<updated>2018-02-09T20:57:25Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=Changing_your_upload_limits&amp;diff=9142</id>
		<title>Changing your upload limits</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=Changing_your_upload_limits&amp;diff=9142"/>
		<updated>2018-02-09T20:54:49Z</updated>

		<summary type="html">&lt;p&gt;Envy: Created page with &amp;quot;=Changing your upload limits= By default, PHP limits uploads to 2MB.  In practical usage, you probably want more than this.  ==Plesk==  Once logged into the Plesk hosting pane...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Changing your upload limits=&lt;br /&gt;
By default, PHP limits uploads to 2MB.  In practical usage, you probably want more than this.&lt;br /&gt;
&lt;br /&gt;
==Plesk==&lt;br /&gt;
&lt;br /&gt;
Once logged into the Plesk hosting panel, you will want to click on &#039;&#039;&#039;PHP Settings&#039;&#039;&#039; in the control area for your domain.&lt;br /&gt;
&lt;br /&gt;
[[File:Php-settings-dashboard.png]]&lt;br /&gt;
&lt;br /&gt;
Once here, under &#039;&#039;&#039;Performance Settings&#039;&#039;&#039;, you want to update &#039;&#039;&#039;post_max_size&#039;&#039;&#039; and &#039;&#039;&#039;upload_max_filesize&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[[File:The-actual-settings.png]]&lt;br /&gt;
&lt;br /&gt;
Once the settings are configured to your needs, scroll down and click &#039;&#039;&#039;OK&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[File:Settings-confirm.png]]&lt;br /&gt;
&lt;br /&gt;
==Cloud Hosting==&lt;br /&gt;
&lt;br /&gt;
On managed cloud servers, PHP settings are configured in the [https://xmission.com/control Control Panel].  Log into the control pane, and click on the &#039;&#039;&#039;Services&#039;&#039;&#039; tab.&lt;br /&gt;
&lt;br /&gt;
[[File:Control-panel-services.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Expand the &#039;&#039;&#039;Servers&#039;&#039;&#039; section, then click on &#039;&#039;&#039;Edit&#039;&#039;&#039; on the server you would like to configure PHP on.&lt;br /&gt;
&lt;br /&gt;
[[File:Control-edit-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On this screen, under &#039;&#039;&#039;Server Settings&#039;&#039;&#039; is a section labelled &#039;&#039;&#039;PHP Settings&#039;&#039;&#039;.  Here, click on &#039;&#039;&#039;Add&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
[[File:Control-php-add-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
In the window that appears, first we want to put &#039;&#039;&#039;post_max_size&#039;&#039;&#039; under &#039;&#039;&#039;Key&#039;&#039;&#039;, and the size limit we want to implement under &#039;&#039;&#039;Value&#039;&#039;&#039;.  In this example, I&#039;m setting it to 256M.&lt;br /&gt;
&lt;br /&gt;
[[File:Control-php-values.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Click &#039;&#039;&#039;Submit&#039;&#039;&#039; when you&#039;re done.  &lt;br /&gt;
&lt;br /&gt;
We want to do this one more time, this time putting &#039;&#039;&#039;upload_max_filesize&#039;&#039;&#039; as the Key, but keeping the same value.&lt;br /&gt;
&lt;br /&gt;
Once that is done, PHP should be configured on your server.&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Server/How_to_FTP_to_your_server&amp;diff=9126</id>
		<title>XMission Control Panel/Server/How to FTP to your server</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Server/How_to_FTP_to_your_server&amp;diff=9126"/>
		<updated>2018-01-23T20:01:50Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Archived}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=What is FTP=&lt;br /&gt;
&lt;br /&gt;
FTP stands for File Transfer Protocol, and is used to transfer files over a TCP/IP network (Internet, UNIX, etc.). For example, after developing the HTML pages for a website on a local machine, they are typically uploaded to the Web server using FTP. FTP includes functions to log onto the network, list directories, and copy files. FTP operations can be performed by typing commands at a command prompt or via an FTP client running under a graphical interface such as Windows.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color: #ff0000;&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;NOTE&amp;lt;/strong&amp;gt;&amp;lt;/span&amp;gt; There are many different FTP programs available, and their interfaces will be different from each other. However the information to connect via FTP will be the same for all platforms. For the purpose of this guide, we will cover FTP through Filezilla. &#039;&#039;&#039;We highly recommend using an FTP client, such as [http://ninite.com/filezilla/ Filezilla].&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==How does FTP work with my Cloud Hosting?==&lt;br /&gt;
&lt;br /&gt;
FTP is the recommended way to upload the files you have created for your website to our server. In general, FTP, both as a command-line function and as utility, is more reliable than uploading files via your web browser. It is also a useful tool in making files available to friends, family, or clients without sending bulky attachments via email.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What is the Server Hostname for my Cloud Hosting?==&lt;br /&gt;
* You can use your IP address as the Server Hostname&lt;br /&gt;
* If your Name Servers are pointed to us you can use your domain name for the Server Hostname&lt;br /&gt;
&lt;br /&gt;
==How to Connect through FTP==&lt;br /&gt;
As mentioned, every FTP client has a slightly different interface. However, the three pieces below are typically all that is necessary to create an FTP connection:&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Host Address&#039;&#039;&#039; = &amp;lt;tt&amp;gt;&amp;lt;your ip address&amp;gt; or &amp;lt;your domain name&amp;gt;&amp;lt;/tt&amp;gt; &lt;br /&gt;
:&#039;&#039;&#039;UserID or Username&#039;&#039;&#039; = &amp;lt;tt&amp;gt;&amp;lt;your username&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
:&#039;&#039;&#039;Password&#039;&#039;&#039; = &amp;lt;tt&amp;gt;&amp;lt;your password&amp;gt;&amp;lt;/tt&amp;gt;  &lt;br /&gt;
:&#039;&#039;&#039;Port&#039;&#039;&#039; = &amp;lt;tt&amp;gt;Port 22&amp;lt;/tt&amp;gt; (The default for most FTP client is 21. &#039;&#039;&#039;If you want to use a secure connection use 22 which will be needed for most FTP users&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
For example, using Filezilla, a common connection would look like this, where &#039;&#039;example.com&#039;&#039; is the example host and &#039;&#039;testuser&#039;&#039; is the example username: &lt;br /&gt;
[[File:FilezillaConnected.png]]&lt;br /&gt;
&lt;br /&gt;
*Once the connection is complete, you will both the local site (your computer or device) and the remote site (the web server):&lt;br /&gt;
&lt;br /&gt;
*In most cases, the root folder for your website is going to &#039;&#039;httpdocs&#039;&#039; and you will want to upload the files for your website to this directory. This can be done a variety of ways. You can select the files you want to upload, and right click them for uploading options, or you can also simply drag them to the remote site and folder you would like them to be uploaded to. &lt;br /&gt;
[[File:FilezillaHttpdocs.png]]&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Control_Panel/How_to_FTP_to_your_server&amp;diff=9125</id>
		<title>XMission Control Panel/How to FTP to your server</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Control_Panel/How_to_FTP_to_your_server&amp;diff=9125"/>
		<updated>2018-01-23T20:01:38Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Archived}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=What is FTP=&lt;br /&gt;
&lt;br /&gt;
FTP stands for File Transfer Protocol, and is used to transfer files over a TCP/IP network (Internet, UNIX, etc.). For example, after developing the HTML pages for a website on a local machine, they are typically uploaded to the Web server using FTP. FTP includes functions to log onto the network, list directories, and copy files. FTP operations can be performed by typing commands at a command prompt or via an FTP client running under a graphical interface such as Windows.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color: #ff0000;&amp;quot;&amp;gt;&amp;lt;strong&amp;gt;NOTE&amp;lt;/strong&amp;gt;&amp;lt;/span&amp;gt; There are many different FTP programs available, and their interfaces will be different from each other. However the information to connect via FTP will be the same for all platforms. For the purpose of this guide, we will cover FTP through Filezilla. &#039;&#039;&#039;We highly recommend using an FTP client, such as [https://ninite.com/filezilla/ Filezilla].&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
==How does FTP work with my Cloud Hosting?==&lt;br /&gt;
&lt;br /&gt;
FTP is the recommended way to upload the files you have created for your website to our server. In general, FTP, both as a command-line function and as utility, is more reliable than uploading files via your web browser. It is also a useful tool in making files available to friends, family, or clients without sending bulky attachments via email.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==What is the Server Hostname for my Cloud Hosting?==&lt;br /&gt;
* You can use your IP address as the Server Hostname&lt;br /&gt;
* If your Name Servers are pointed to us you can use your domain name for the Server Hostname&lt;br /&gt;
&lt;br /&gt;
==How to Connect through FTP==&lt;br /&gt;
As mentioned, every FTP client has a slightly different interface. However, the three pieces below are typically all that is necessary to create an FTP connection:&lt;br /&gt;
&lt;br /&gt;
:&#039;&#039;&#039;Host Address&#039;&#039;&#039; = &amp;lt;tt&amp;gt;&amp;lt;your ip address&amp;gt; or &amp;lt;your domain name&amp;gt;&amp;lt;/tt&amp;gt; &lt;br /&gt;
:&#039;&#039;&#039;UserID or Username&#039;&#039;&#039; = &amp;lt;tt&amp;gt;&amp;lt;your username&amp;gt;&amp;lt;/tt&amp;gt;&lt;br /&gt;
:&#039;&#039;&#039;Password&#039;&#039;&#039; = &amp;lt;tt&amp;gt;&amp;lt;your password&amp;gt;&amp;lt;/tt&amp;gt;  &lt;br /&gt;
:&#039;&#039;&#039;Port&#039;&#039;&#039; = &amp;lt;tt&amp;gt;Port 22&amp;lt;/tt&amp;gt; (The default for most FTP client is 21. &#039;&#039;&#039;If you want to use a secure connection use 22 which will be needed for most FTP users&#039;&#039;&#039;)&lt;br /&gt;
&lt;br /&gt;
For example, using Filezilla, a common connection would look like this, where &#039;&#039;example.com&#039;&#039; is the example host and &#039;&#039;testuser&#039;&#039; is the example username: &lt;br /&gt;
[[File:FilezillaConnected.png]]&lt;br /&gt;
&lt;br /&gt;
*Once the connection is complete, you will both the local site (your computer or device) and the remote site (the web server):&lt;br /&gt;
&lt;br /&gt;
*In most cases, the root folder for your website is going to &#039;&#039;httpdocs&#039;&#039; and you will want to upload the files for your website to this directory. This can be done a variety of ways. You can select the files you want to upload, and right click them for uploading options, or you can also simply drag them to the remote site and folder you would like them to be uploaded to. &lt;br /&gt;
[[File:FilezillaHttpdocs.png]]&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9123</id>
		<title>XMission Control Panel/Services Tab</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9123"/>
		<updated>2018-01-22T21:23:05Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Installing WordPress */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Services=&lt;br /&gt;
The &#039;&#039;&#039;Services&#039;&#039;&#039; section of your account details the various services you have active, and depending on the service, assorted tools to help you manage the service.&lt;br /&gt;
&lt;br /&gt;
You can get to your &#039;&#039;&#039;Services&#039;&#039;&#039; page by clicking on the &#039;&#039;&#039;Services&#039;&#039;&#039; link at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
[[File:Services_header.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On the &#039;&#039;&#039;Services&#039;&#039;&#039; screen, you will see various sections depending on the services on your account.  You can click on a section to expand it and see detailed information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
The &#039;&#039;&#039;Summary&#039;&#039;&#039; section details all of the services currently on your account.  Certain services that don&#039;t have additional tools available, such as Internet connections, will appear here instead of appearing in their own section.&lt;br /&gt;
&lt;br /&gt;
==Email==&lt;br /&gt;
The &#039;&#039;&#039;Email&#039;&#039;&#039; section details all of the email services currently active on the account and provides login buttons to grant you quick access to your inbox for personal accounts.&lt;br /&gt;
&lt;br /&gt;
NOTE: the panel currently does not provide specific controls for Zimbra Base and Premium accounts in the Email section.  To manage your Zimbra domain, login to [https://zimbra.xmission.com:7071/zimbraAdmin/ Zimbra Admin] with the appropriate administrator account.&lt;br /&gt;
&lt;br /&gt;
==Cloud Servers==&lt;br /&gt;
The &#039;&#039;&#039;Cloud Servers&#039;&#039;&#039; section details all of the Managed and Unmanaged Cloud hosting servers currently active on the account.  Furthermore, the servers can be managed from this page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add a Server===&lt;br /&gt;
To add a hosted cloud server to your account, click on the &#039;Add a server&#039; button at the bottom of the expanded Cloud Servers section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A window will appear with the various options you have when adding a server.  The cost field will dynamically update based on the options you choose.  &lt;br /&gt;
&lt;br /&gt;
[[File:Create-new-server.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can read up on the Managed Cloud and Unmanaged Cloud servers by clicking on the &#039;Read more&#039; links.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Change the Status of an Existing Server===&lt;br /&gt;
You can start or shut down your servers by clicking on the &amp;quot;Status&amp;quot; drop down underneath the &amp;quot;Cloud Servers&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
[[File:Server-status-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Existing Servers===&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button for a cloud server will allow you to edit resources, and on Managed servers, allow you to tweak specific features related to your hosted website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Configure Resources====&lt;br /&gt;
Clicking on the &amp;quot;Configure resources&amp;quot; button will allow you to change the current CPU Cores, Memory, and Storage settings on your Cloud Server.  &lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Changing any of these settings will automatically update the Cost section, reflecting what the allocated resources will cost you monthly.&lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====SSL Certificates====&lt;br /&gt;
You can view the SSL Certificates currently installed on your Managed Server by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;SSL Certificates&amp;quot; section of &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-ssl-certs.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding an SSL Certificate=====&lt;br /&gt;
You can add an SSL Certificate by clicking on the green &amp;quot;Add SSL Certification&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to name your certificate, insert the Cert and Key information, and finally the Chain Cert/CA information if you have it.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-window.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing an SSL Certificate=====&lt;br /&gt;
You can remove an SSL certificate by clicking on the red &amp;quot;Delete&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be asked to confirm the deletion before your certificate is actually deleted.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Domain Redirects====&lt;br /&gt;
You can add a redirect for one of your domains by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;Redirects&amp;quot; section under &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-redirects-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Domain Redirect=====&lt;br /&gt;
You can add a domain redirect by clicking on the green &amp;quot;Add Domain Redirect&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:Domain-redirect-window.png]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If your domain is pointed at XMission, you will also need to add it to your DNS if you have not already, otherwise the redirect will not work.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Domain Redirect=====&lt;br /&gt;
Domain redirects can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the redirect you want to remove.  &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the redirect is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====PHP Settings====&lt;br /&gt;
You can configure your PHP settings under the &amp;quot;PHP settings&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a New PHP Setting=====&lt;br /&gt;
You can add a new PHP setting by clicking on the &amp;quot;+ Add&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can name the key and set its value in the window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-php-setting-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your setting, click on &amp;quot;Submit&amp;quot;. Note: ensure your syntax is correct.&lt;br /&gt;
&lt;br /&gt;
=====Removing an Existing PHP Setting=====&lt;br /&gt;
You can remove a PHP setting by clicking on the red &amp;quot;Delete&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the setting is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Virtual Hosts====&lt;br /&gt;
You can manage the websites hosted on the server under the &amp;quot;Virtual Hosts&amp;quot; section.  You can configure the active aliases, FTP accounts, and SSL certificates.  If you would like to view sites built on your server without updating your DNS, you can view instructions on modifying your hosts file [http://wiki.xmission.com/Cloud_Hosting/Hosts_File here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Website=====&lt;br /&gt;
You can add a website to your server by clicking on the &amp;quot;+ Add website&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-virsthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can set the domain name, any aliases you want to add, and SSL options for the site in the New Website window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-virthost-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTES:&lt;br /&gt;
* Enabling &amp;quot;SSL Only&amp;quot; will setup a 301 redirect to direct any http traffic to https.  &lt;br /&gt;
* You will need to have an SSL Certificate already in place to choose when enabling SSL for a website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Adding / Editing Domain Aliases======&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button underneath &amp;quot;Domain aliases&amp;quot; will allow you to add, edit, and remove aliases for the domain in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain-aliases.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Existing aliases will turn into a text field, allowing you to edit them as needed.  Clicking the red &amp;quot;-&amp;quot; button will remove it.  Clicking the green &amp;quot;+&amp;quot; button will add a new text field that can be used to enter a new alias.  &lt;br /&gt;
&lt;br /&gt;
[[File:Domain-alias-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your changes, click &amp;quot;Save&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Editing FTP Accounts======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;FTP accounts&amp;quot; will allow you to add, edit and remove FTP users for the website in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Clicking the blue &amp;quot;+ Add FTP&amp;quot; button will open the New FTP User window.&lt;br /&gt;
&lt;br /&gt;
[[File:New-ftp-user-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here you can enter a new Username, and set the password for the new user.&lt;br /&gt;
&lt;br /&gt;
Clicking on the gear button will allow you to change the password for the FTP user you wish to update.&lt;br /&gt;
&lt;br /&gt;
To remove an FTP user, click on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm the deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Enabling SSL / Editing SSL Certificate in Use======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;HTTPS&amp;quot; will allow you to enable SSL, turn on HTTPS 301 redirects, and assign a certificate to an existing website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-ssl-certificates.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can enable HTTPS by clicking the check box next to &amp;quot;SSL Enabled&amp;quot;.  Checking &amp;quot;SSL Only&amp;quot; will enable HTTPS 301 redirects for your domain, which will direct all HTTP traffic to HTTPS.&lt;br /&gt;
&lt;br /&gt;
You can set the active certificate by choosing one from the drop down beneath &amp;quot;SSL Certificate&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Ssl-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing a Website=====&lt;br /&gt;
A website can be removed from your server by clicking on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm your deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-virthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: Deleting a website will also delete the relevant directory and files within it, so when deleting a website, ensure that you have backed up the files you want to keep.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
====Databases====&lt;br /&gt;
The databases section allows you to add databases, view database names and usernames associated with those databases, edit database passwords and delete databases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Database=====&lt;br /&gt;
You can add a database by clicking on the &amp;quot;+ Add database&amp;quot; button.  &lt;br /&gt;
&lt;br /&gt;
[[File:Add-database-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can define the database name, username and password in the window that appears.  Note that you will need to confirm the password before the database will be created.&lt;br /&gt;
&lt;br /&gt;
[[File:New-database-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Changing Password on Existing Database=====&lt;br /&gt;
You can change the password on an existing domain by clicking on &amp;quot;Change Password&amp;quot; for the database you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-change-password-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to confirm the new password before it will be updated.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Database=====&lt;br /&gt;
You can remove a database by clicking on the red &amp;quot;Delete&amp;quot; button next to the database you wish to remove.  You will be prompted to confirm deletion before the database is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-delete-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Accessing phpMyAdmin=====&lt;br /&gt;
You can access phpMyAdmin for your databases by clicking on the &amp;quot;phpMyAdmin&amp;quot; button below the database list.&lt;br /&gt;
&lt;br /&gt;
[[File:Phpmyadmin-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Installing WordPress===&lt;br /&gt;
If you would like to install WordPress on your Managed Cloud Server, you can find instructions on how to do so [[Installing WordPress on your Managed Cloud|here]].&lt;br /&gt;
&lt;br /&gt;
==Hosting==&lt;br /&gt;
Under the hosting section, you can see the various website hosting services currently active on the account.&lt;br /&gt;
&lt;br /&gt;
With Shared Web Hosting services, you will be able to see which server your website is located on, the primary username associated with that hosting package, and a Login button that will take you directly to your website control panel.&lt;br /&gt;
&lt;br /&gt;
==DNS==&lt;br /&gt;
The DNS section will show you the DNS you&#039;ve added for the domains you manage.  Domains you have associated with your hosted cloud servers will appear here automatically, but you can further add additional domains if you wish.&lt;br /&gt;
&lt;br /&gt;
Clicking on a domain in the list to the left will show you the current record for that domain.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add Domain===&lt;br /&gt;
To add DNS for a domain, you can click on the &#039;+ Add Domain&#039; button&lt;br /&gt;
&lt;br /&gt;
[[File:Add-domain-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;New Zone&#039; window.  Here, you can input the domain name for the domain you wish to manage, and the TTL for the record.  By default, the TTL is 3600.&lt;br /&gt;
&lt;br /&gt;
When you&#039;re satisfied with what you&#039;ve entered, click on the &#039;Create&#039; button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Domain===&lt;br /&gt;
With the domain selected on the left hand side, you will be able to click on the &#039;Edit&#039; button next to the domain name on the right hand side.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;Edit Zone&#039; window, which looks nearly identical to the New Zone window.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Add New DNS Record====&lt;br /&gt;
With the domain selected on the left hand side, you can click on the green &#039;+&#039; symbol at the bottom of the DNS section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the New Record window, where you can input the record name, as well as determine what type of record it is.&lt;br /&gt;
&lt;br /&gt;
Choosing the type of record will update the window to bring up fields appropriate to the type of record you&#039;re wishing to add.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;A Record&#039;&#039;&#039;&lt;br /&gt;
A records allow you to point a hostname to a specific IP address.  Clicking on &#039;&#039;&#039;A&#039;&#039;&#039; will bring up an IP Address field, allowing you to point the record to a specific IP address.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;TXT Record&#039;&#039;&#039;&lt;br /&gt;
TXT records allow you to specify an arbitrary string of text to be associated with a designated hostname.  Clicking on &#039;&#039;&#039;TXT&#039;&#039;&#039; will bring up a Text field, allowing you to specify the text string you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;AAAA Record&#039;&#039;&#039;&lt;br /&gt;
AAAA records are used to associate IPv6 addresses with the designated hostname.  Clicking on &#039;&#039;&#039;AAAA&#039;&#039;&#039; will bring up an IPv6 Address field, allowing you to specify the IPv6 address you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;CNAME Record&#039;&#039;&#039;&lt;br /&gt;
CNAME records are used to alias one host name to another (most common example being www.domain.tld to domain.tld).  Clicking on &#039;&#039;&#039;CNAME&#039;&#039;&#039; will bring up an Aliased Domain field, allowing you to specify which domain you want the designated hostname to point to.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;SRV Record&#039;&#039;&#039;&lt;br /&gt;
SRV records are used to locate specific protocols on a domain.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NS Record&#039;&#039;&#039;&lt;br /&gt;
NS records are used to delegate DNS to the listed name servers.  Clicking on &#039;&#039;&#039;NS&#039;&#039;&#039; will bring up a name server field.  By default, all DNS will come with name server records populated.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MX Record&#039;&#039;&#039;&lt;br /&gt;
MX records allow you to determine which mail host will control your email.  Clicking on &#039;&#039;&#039;MX&#039;&#039;&#039; will bring up Target and Priority fields.  The target is the url of the host managing your email (XMission&#039;s MX record is mx.xmission.com).  The priority determines the order in which your mail servers will be processed.  A lower priority is always processed first.&lt;br /&gt;
&lt;br /&gt;
====Edit/Remove Existing DNS Record====&lt;br /&gt;
You can edit a DNS record by clicking on the &amp;quot;Edit&amp;quot; button next to the record you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will change the existing record into editable text boxes you can update.  When you are satisfied with your changes, click the blue &amp;quot;Save&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns-fields.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A DNS record can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the dns record you want to remove.  You will be prompted to confirm the deletion before it is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Account Home}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Services}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Billing}}&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9122</id>
		<title>XMission Control Panel/Services Tab</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9122"/>
		<updated>2018-01-22T21:22:55Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Installing WordPress */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Services=&lt;br /&gt;
The &#039;&#039;&#039;Services&#039;&#039;&#039; section of your account details the various services you have active, and depending on the service, assorted tools to help you manage the service.&lt;br /&gt;
&lt;br /&gt;
You can get to your &#039;&#039;&#039;Services&#039;&#039;&#039; page by clicking on the &#039;&#039;&#039;Services&#039;&#039;&#039; link at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
[[File:Services_header.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On the &#039;&#039;&#039;Services&#039;&#039;&#039; screen, you will see various sections depending on the services on your account.  You can click on a section to expand it and see detailed information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
The &#039;&#039;&#039;Summary&#039;&#039;&#039; section details all of the services currently on your account.  Certain services that don&#039;t have additional tools available, such as Internet connections, will appear here instead of appearing in their own section.&lt;br /&gt;
&lt;br /&gt;
==Email==&lt;br /&gt;
The &#039;&#039;&#039;Email&#039;&#039;&#039; section details all of the email services currently active on the account and provides login buttons to grant you quick access to your inbox for personal accounts.&lt;br /&gt;
&lt;br /&gt;
NOTE: the panel currently does not provide specific controls for Zimbra Base and Premium accounts in the Email section.  To manage your Zimbra domain, login to [https://zimbra.xmission.com:7071/zimbraAdmin/ Zimbra Admin] with the appropriate administrator account.&lt;br /&gt;
&lt;br /&gt;
==Cloud Servers==&lt;br /&gt;
The &#039;&#039;&#039;Cloud Servers&#039;&#039;&#039; section details all of the Managed and Unmanaged Cloud hosting servers currently active on the account.  Furthermore, the servers can be managed from this page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add a Server===&lt;br /&gt;
To add a hosted cloud server to your account, click on the &#039;Add a server&#039; button at the bottom of the expanded Cloud Servers section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A window will appear with the various options you have when adding a server.  The cost field will dynamically update based on the options you choose.  &lt;br /&gt;
&lt;br /&gt;
[[File:Create-new-server.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can read up on the Managed Cloud and Unmanaged Cloud servers by clicking on the &#039;Read more&#039; links.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Change the Status of an Existing Server===&lt;br /&gt;
You can start or shut down your servers by clicking on the &amp;quot;Status&amp;quot; drop down underneath the &amp;quot;Cloud Servers&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
[[File:Server-status-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Existing Servers===&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button for a cloud server will allow you to edit resources, and on Managed servers, allow you to tweak specific features related to your hosted website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Configure Resources====&lt;br /&gt;
Clicking on the &amp;quot;Configure resources&amp;quot; button will allow you to change the current CPU Cores, Memory, and Storage settings on your Cloud Server.  &lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Changing any of these settings will automatically update the Cost section, reflecting what the allocated resources will cost you monthly.&lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====SSL Certificates====&lt;br /&gt;
You can view the SSL Certificates currently installed on your Managed Server by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;SSL Certificates&amp;quot; section of &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-ssl-certs.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding an SSL Certificate=====&lt;br /&gt;
You can add an SSL Certificate by clicking on the green &amp;quot;Add SSL Certification&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to name your certificate, insert the Cert and Key information, and finally the Chain Cert/CA information if you have it.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-window.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing an SSL Certificate=====&lt;br /&gt;
You can remove an SSL certificate by clicking on the red &amp;quot;Delete&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be asked to confirm the deletion before your certificate is actually deleted.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Domain Redirects====&lt;br /&gt;
You can add a redirect for one of your domains by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;Redirects&amp;quot; section under &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-redirects-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Domain Redirect=====&lt;br /&gt;
You can add a domain redirect by clicking on the green &amp;quot;Add Domain Redirect&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:Domain-redirect-window.png]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If your domain is pointed at XMission, you will also need to add it to your DNS if you have not already, otherwise the redirect will not work.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Domain Redirect=====&lt;br /&gt;
Domain redirects can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the redirect you want to remove.  &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the redirect is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====PHP Settings====&lt;br /&gt;
You can configure your PHP settings under the &amp;quot;PHP settings&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a New PHP Setting=====&lt;br /&gt;
You can add a new PHP setting by clicking on the &amp;quot;+ Add&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can name the key and set its value in the window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-php-setting-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your setting, click on &amp;quot;Submit&amp;quot;. Note: ensure your syntax is correct.&lt;br /&gt;
&lt;br /&gt;
=====Removing an Existing PHP Setting=====&lt;br /&gt;
You can remove a PHP setting by clicking on the red &amp;quot;Delete&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the setting is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Virtual Hosts====&lt;br /&gt;
You can manage the websites hosted on the server under the &amp;quot;Virtual Hosts&amp;quot; section.  You can configure the active aliases, FTP accounts, and SSL certificates.  If you would like to view sites built on your server without updating your DNS, you can view instructions on modifying your hosts file [http://wiki.xmission.com/Cloud_Hosting/Hosts_File here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Website=====&lt;br /&gt;
You can add a website to your server by clicking on the &amp;quot;+ Add website&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-virsthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can set the domain name, any aliases you want to add, and SSL options for the site in the New Website window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-virthost-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTES:&lt;br /&gt;
* Enabling &amp;quot;SSL Only&amp;quot; will setup a 301 redirect to direct any http traffic to https.  &lt;br /&gt;
* You will need to have an SSL Certificate already in place to choose when enabling SSL for a website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Adding / Editing Domain Aliases======&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button underneath &amp;quot;Domain aliases&amp;quot; will allow you to add, edit, and remove aliases for the domain in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain-aliases.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Existing aliases will turn into a text field, allowing you to edit them as needed.  Clicking the red &amp;quot;-&amp;quot; button will remove it.  Clicking the green &amp;quot;+&amp;quot; button will add a new text field that can be used to enter a new alias.  &lt;br /&gt;
&lt;br /&gt;
[[File:Domain-alias-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your changes, click &amp;quot;Save&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Editing FTP Accounts======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;FTP accounts&amp;quot; will allow you to add, edit and remove FTP users for the website in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Clicking the blue &amp;quot;+ Add FTP&amp;quot; button will open the New FTP User window.&lt;br /&gt;
&lt;br /&gt;
[[File:New-ftp-user-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here you can enter a new Username, and set the password for the new user.&lt;br /&gt;
&lt;br /&gt;
Clicking on the gear button will allow you to change the password for the FTP user you wish to update.&lt;br /&gt;
&lt;br /&gt;
To remove an FTP user, click on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm the deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Enabling SSL / Editing SSL Certificate in Use======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;HTTPS&amp;quot; will allow you to enable SSL, turn on HTTPS 301 redirects, and assign a certificate to an existing website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-ssl-certificates.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can enable HTTPS by clicking the check box next to &amp;quot;SSL Enabled&amp;quot;.  Checking &amp;quot;SSL Only&amp;quot; will enable HTTPS 301 redirects for your domain, which will direct all HTTP traffic to HTTPS.&lt;br /&gt;
&lt;br /&gt;
You can set the active certificate by choosing one from the drop down beneath &amp;quot;SSL Certificate&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Ssl-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing a Website=====&lt;br /&gt;
A website can be removed from your server by clicking on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm your deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-virthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: Deleting a website will also delete the relevant directory and files within it, so when deleting a website, ensure that you have backed up the files you want to keep.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
====Databases====&lt;br /&gt;
The databases section allows you to add databases, view database names and usernames associated with those databases, edit database passwords and delete databases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Database=====&lt;br /&gt;
You can add a database by clicking on the &amp;quot;+ Add database&amp;quot; button.  &lt;br /&gt;
&lt;br /&gt;
[[File:Add-database-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can define the database name, username and password in the window that appears.  Note that you will need to confirm the password before the database will be created.&lt;br /&gt;
&lt;br /&gt;
[[File:New-database-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Changing Password on Existing Database=====&lt;br /&gt;
You can change the password on an existing domain by clicking on &amp;quot;Change Password&amp;quot; for the database you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-change-password-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to confirm the new password before it will be updated.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Database=====&lt;br /&gt;
You can remove a database by clicking on the red &amp;quot;Delete&amp;quot; button next to the database you wish to remove.  You will be prompted to confirm deletion before the database is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-delete-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Accessing phpMyAdmin=====&lt;br /&gt;
You can access phpMyAdmin for your databases by clicking on the &amp;quot;phpMyAdmin&amp;quot; button below the database list.&lt;br /&gt;
&lt;br /&gt;
[[File:Phpmyadmin-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Installing WordPress===&lt;br /&gt;
If you would like to install WordPress on your Managed Cloud Server, you can find instructions on how to do so [[Installing WordPress on your Managed Cloud|here]]&lt;br /&gt;
&lt;br /&gt;
==Hosting==&lt;br /&gt;
Under the hosting section, you can see the various website hosting services currently active on the account.&lt;br /&gt;
&lt;br /&gt;
With Shared Web Hosting services, you will be able to see which server your website is located on, the primary username associated with that hosting package, and a Login button that will take you directly to your website control panel.&lt;br /&gt;
&lt;br /&gt;
==DNS==&lt;br /&gt;
The DNS section will show you the DNS you&#039;ve added for the domains you manage.  Domains you have associated with your hosted cloud servers will appear here automatically, but you can further add additional domains if you wish.&lt;br /&gt;
&lt;br /&gt;
Clicking on a domain in the list to the left will show you the current record for that domain.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add Domain===&lt;br /&gt;
To add DNS for a domain, you can click on the &#039;+ Add Domain&#039; button&lt;br /&gt;
&lt;br /&gt;
[[File:Add-domain-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;New Zone&#039; window.  Here, you can input the domain name for the domain you wish to manage, and the TTL for the record.  By default, the TTL is 3600.&lt;br /&gt;
&lt;br /&gt;
When you&#039;re satisfied with what you&#039;ve entered, click on the &#039;Create&#039; button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Domain===&lt;br /&gt;
With the domain selected on the left hand side, you will be able to click on the &#039;Edit&#039; button next to the domain name on the right hand side.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;Edit Zone&#039; window, which looks nearly identical to the New Zone window.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Add New DNS Record====&lt;br /&gt;
With the domain selected on the left hand side, you can click on the green &#039;+&#039; symbol at the bottom of the DNS section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the New Record window, where you can input the record name, as well as determine what type of record it is.&lt;br /&gt;
&lt;br /&gt;
Choosing the type of record will update the window to bring up fields appropriate to the type of record you&#039;re wishing to add.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;A Record&#039;&#039;&#039;&lt;br /&gt;
A records allow you to point a hostname to a specific IP address.  Clicking on &#039;&#039;&#039;A&#039;&#039;&#039; will bring up an IP Address field, allowing you to point the record to a specific IP address.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;TXT Record&#039;&#039;&#039;&lt;br /&gt;
TXT records allow you to specify an arbitrary string of text to be associated with a designated hostname.  Clicking on &#039;&#039;&#039;TXT&#039;&#039;&#039; will bring up a Text field, allowing you to specify the text string you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;AAAA Record&#039;&#039;&#039;&lt;br /&gt;
AAAA records are used to associate IPv6 addresses with the designated hostname.  Clicking on &#039;&#039;&#039;AAAA&#039;&#039;&#039; will bring up an IPv6 Address field, allowing you to specify the IPv6 address you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;CNAME Record&#039;&#039;&#039;&lt;br /&gt;
CNAME records are used to alias one host name to another (most common example being www.domain.tld to domain.tld).  Clicking on &#039;&#039;&#039;CNAME&#039;&#039;&#039; will bring up an Aliased Domain field, allowing you to specify which domain you want the designated hostname to point to.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;SRV Record&#039;&#039;&#039;&lt;br /&gt;
SRV records are used to locate specific protocols on a domain.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NS Record&#039;&#039;&#039;&lt;br /&gt;
NS records are used to delegate DNS to the listed name servers.  Clicking on &#039;&#039;&#039;NS&#039;&#039;&#039; will bring up a name server field.  By default, all DNS will come with name server records populated.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MX Record&#039;&#039;&#039;&lt;br /&gt;
MX records allow you to determine which mail host will control your email.  Clicking on &#039;&#039;&#039;MX&#039;&#039;&#039; will bring up Target and Priority fields.  The target is the url of the host managing your email (XMission&#039;s MX record is mx.xmission.com).  The priority determines the order in which your mail servers will be processed.  A lower priority is always processed first.&lt;br /&gt;
&lt;br /&gt;
====Edit/Remove Existing DNS Record====&lt;br /&gt;
You can edit a DNS record by clicking on the &amp;quot;Edit&amp;quot; button next to the record you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will change the existing record into editable text boxes you can update.  When you are satisfied with your changes, click the blue &amp;quot;Save&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns-fields.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A DNS record can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the dns record you want to remove.  You will be prompted to confirm the deletion before it is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Account Home}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Services}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Billing}}&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9121</id>
		<title>XMission Control Panel/Services Tab</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9121"/>
		<updated>2018-01-22T21:22:42Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Installing WordPress */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Services=&lt;br /&gt;
The &#039;&#039;&#039;Services&#039;&#039;&#039; section of your account details the various services you have active, and depending on the service, assorted tools to help you manage the service.&lt;br /&gt;
&lt;br /&gt;
You can get to your &#039;&#039;&#039;Services&#039;&#039;&#039; page by clicking on the &#039;&#039;&#039;Services&#039;&#039;&#039; link at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
[[File:Services_header.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On the &#039;&#039;&#039;Services&#039;&#039;&#039; screen, you will see various sections depending on the services on your account.  You can click on a section to expand it and see detailed information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
The &#039;&#039;&#039;Summary&#039;&#039;&#039; section details all of the services currently on your account.  Certain services that don&#039;t have additional tools available, such as Internet connections, will appear here instead of appearing in their own section.&lt;br /&gt;
&lt;br /&gt;
==Email==&lt;br /&gt;
The &#039;&#039;&#039;Email&#039;&#039;&#039; section details all of the email services currently active on the account and provides login buttons to grant you quick access to your inbox for personal accounts.&lt;br /&gt;
&lt;br /&gt;
NOTE: the panel currently does not provide specific controls for Zimbra Base and Premium accounts in the Email section.  To manage your Zimbra domain, login to [https://zimbra.xmission.com:7071/zimbraAdmin/ Zimbra Admin] with the appropriate administrator account.&lt;br /&gt;
&lt;br /&gt;
==Cloud Servers==&lt;br /&gt;
The &#039;&#039;&#039;Cloud Servers&#039;&#039;&#039; section details all of the Managed and Unmanaged Cloud hosting servers currently active on the account.  Furthermore, the servers can be managed from this page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add a Server===&lt;br /&gt;
To add a hosted cloud server to your account, click on the &#039;Add a server&#039; button at the bottom of the expanded Cloud Servers section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A window will appear with the various options you have when adding a server.  The cost field will dynamically update based on the options you choose.  &lt;br /&gt;
&lt;br /&gt;
[[File:Create-new-server.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can read up on the Managed Cloud and Unmanaged Cloud servers by clicking on the &#039;Read more&#039; links.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Change the Status of an Existing Server===&lt;br /&gt;
You can start or shut down your servers by clicking on the &amp;quot;Status&amp;quot; drop down underneath the &amp;quot;Cloud Servers&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
[[File:Server-status-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Existing Servers===&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button for a cloud server will allow you to edit resources, and on Managed servers, allow you to tweak specific features related to your hosted website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Configure Resources====&lt;br /&gt;
Clicking on the &amp;quot;Configure resources&amp;quot; button will allow you to change the current CPU Cores, Memory, and Storage settings on your Cloud Server.  &lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Changing any of these settings will automatically update the Cost section, reflecting what the allocated resources will cost you monthly.&lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====SSL Certificates====&lt;br /&gt;
You can view the SSL Certificates currently installed on your Managed Server by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;SSL Certificates&amp;quot; section of &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-ssl-certs.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding an SSL Certificate=====&lt;br /&gt;
You can add an SSL Certificate by clicking on the green &amp;quot;Add SSL Certification&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to name your certificate, insert the Cert and Key information, and finally the Chain Cert/CA information if you have it.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-window.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing an SSL Certificate=====&lt;br /&gt;
You can remove an SSL certificate by clicking on the red &amp;quot;Delete&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be asked to confirm the deletion before your certificate is actually deleted.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Domain Redirects====&lt;br /&gt;
You can add a redirect for one of your domains by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;Redirects&amp;quot; section under &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-redirects-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Domain Redirect=====&lt;br /&gt;
You can add a domain redirect by clicking on the green &amp;quot;Add Domain Redirect&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:Domain-redirect-window.png]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If your domain is pointed at XMission, you will also need to add it to your DNS if you have not already, otherwise the redirect will not work.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Domain Redirect=====&lt;br /&gt;
Domain redirects can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the redirect you want to remove.  &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the redirect is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====PHP Settings====&lt;br /&gt;
You can configure your PHP settings under the &amp;quot;PHP settings&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a New PHP Setting=====&lt;br /&gt;
You can add a new PHP setting by clicking on the &amp;quot;+ Add&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can name the key and set its value in the window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-php-setting-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your setting, click on &amp;quot;Submit&amp;quot;. Note: ensure your syntax is correct.&lt;br /&gt;
&lt;br /&gt;
=====Removing an Existing PHP Setting=====&lt;br /&gt;
You can remove a PHP setting by clicking on the red &amp;quot;Delete&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the setting is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Virtual Hosts====&lt;br /&gt;
You can manage the websites hosted on the server under the &amp;quot;Virtual Hosts&amp;quot; section.  You can configure the active aliases, FTP accounts, and SSL certificates.  If you would like to view sites built on your server without updating your DNS, you can view instructions on modifying your hosts file [http://wiki.xmission.com/Cloud_Hosting/Hosts_File here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Website=====&lt;br /&gt;
You can add a website to your server by clicking on the &amp;quot;+ Add website&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-virsthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can set the domain name, any aliases you want to add, and SSL options for the site in the New Website window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-virthost-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTES:&lt;br /&gt;
* Enabling &amp;quot;SSL Only&amp;quot; will setup a 301 redirect to direct any http traffic to https.  &lt;br /&gt;
* You will need to have an SSL Certificate already in place to choose when enabling SSL for a website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Adding / Editing Domain Aliases======&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button underneath &amp;quot;Domain aliases&amp;quot; will allow you to add, edit, and remove aliases for the domain in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain-aliases.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Existing aliases will turn into a text field, allowing you to edit them as needed.  Clicking the red &amp;quot;-&amp;quot; button will remove it.  Clicking the green &amp;quot;+&amp;quot; button will add a new text field that can be used to enter a new alias.  &lt;br /&gt;
&lt;br /&gt;
[[File:Domain-alias-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your changes, click &amp;quot;Save&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Editing FTP Accounts======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;FTP accounts&amp;quot; will allow you to add, edit and remove FTP users for the website in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Clicking the blue &amp;quot;+ Add FTP&amp;quot; button will open the New FTP User window.&lt;br /&gt;
&lt;br /&gt;
[[File:New-ftp-user-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here you can enter a new Username, and set the password for the new user.&lt;br /&gt;
&lt;br /&gt;
Clicking on the gear button will allow you to change the password for the FTP user you wish to update.&lt;br /&gt;
&lt;br /&gt;
To remove an FTP user, click on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm the deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Enabling SSL / Editing SSL Certificate in Use======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;HTTPS&amp;quot; will allow you to enable SSL, turn on HTTPS 301 redirects, and assign a certificate to an existing website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-ssl-certificates.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can enable HTTPS by clicking the check box next to &amp;quot;SSL Enabled&amp;quot;.  Checking &amp;quot;SSL Only&amp;quot; will enable HTTPS 301 redirects for your domain, which will direct all HTTP traffic to HTTPS.&lt;br /&gt;
&lt;br /&gt;
You can set the active certificate by choosing one from the drop down beneath &amp;quot;SSL Certificate&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Ssl-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing a Website=====&lt;br /&gt;
A website can be removed from your server by clicking on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm your deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-virthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: Deleting a website will also delete the relevant directory and files within it, so when deleting a website, ensure that you have backed up the files you want to keep.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
====Databases====&lt;br /&gt;
The databases section allows you to add databases, view database names and usernames associated with those databases, edit database passwords and delete databases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Database=====&lt;br /&gt;
You can add a database by clicking on the &amp;quot;+ Add database&amp;quot; button.  &lt;br /&gt;
&lt;br /&gt;
[[File:Add-database-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can define the database name, username and password in the window that appears.  Note that you will need to confirm the password before the database will be created.&lt;br /&gt;
&lt;br /&gt;
[[File:New-database-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Changing Password on Existing Database=====&lt;br /&gt;
You can change the password on an existing domain by clicking on &amp;quot;Change Password&amp;quot; for the database you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-change-password-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to confirm the new password before it will be updated.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Database=====&lt;br /&gt;
You can remove a database by clicking on the red &amp;quot;Delete&amp;quot; button next to the database you wish to remove.  You will be prompted to confirm deletion before the database is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-delete-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Accessing phpMyAdmin=====&lt;br /&gt;
You can access phpMyAdmin for your databases by clicking on the &amp;quot;phpMyAdmin&amp;quot; button below the database list.&lt;br /&gt;
&lt;br /&gt;
[[File:Phpmyadmin-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Installing WordPress===&lt;br /&gt;
If you would like to install WordPress on your Managed Cloud Server, you can find instructions on how to do so [[Installing WordPress on your Managed Cloud:here]]&lt;br /&gt;
&lt;br /&gt;
==Hosting==&lt;br /&gt;
Under the hosting section, you can see the various website hosting services currently active on the account.&lt;br /&gt;
&lt;br /&gt;
With Shared Web Hosting services, you will be able to see which server your website is located on, the primary username associated with that hosting package, and a Login button that will take you directly to your website control panel.&lt;br /&gt;
&lt;br /&gt;
==DNS==&lt;br /&gt;
The DNS section will show you the DNS you&#039;ve added for the domains you manage.  Domains you have associated with your hosted cloud servers will appear here automatically, but you can further add additional domains if you wish.&lt;br /&gt;
&lt;br /&gt;
Clicking on a domain in the list to the left will show you the current record for that domain.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add Domain===&lt;br /&gt;
To add DNS for a domain, you can click on the &#039;+ Add Domain&#039; button&lt;br /&gt;
&lt;br /&gt;
[[File:Add-domain-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;New Zone&#039; window.  Here, you can input the domain name for the domain you wish to manage, and the TTL for the record.  By default, the TTL is 3600.&lt;br /&gt;
&lt;br /&gt;
When you&#039;re satisfied with what you&#039;ve entered, click on the &#039;Create&#039; button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Domain===&lt;br /&gt;
With the domain selected on the left hand side, you will be able to click on the &#039;Edit&#039; button next to the domain name on the right hand side.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;Edit Zone&#039; window, which looks nearly identical to the New Zone window.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Add New DNS Record====&lt;br /&gt;
With the domain selected on the left hand side, you can click on the green &#039;+&#039; symbol at the bottom of the DNS section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the New Record window, where you can input the record name, as well as determine what type of record it is.&lt;br /&gt;
&lt;br /&gt;
Choosing the type of record will update the window to bring up fields appropriate to the type of record you&#039;re wishing to add.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;A Record&#039;&#039;&#039;&lt;br /&gt;
A records allow you to point a hostname to a specific IP address.  Clicking on &#039;&#039;&#039;A&#039;&#039;&#039; will bring up an IP Address field, allowing you to point the record to a specific IP address.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;TXT Record&#039;&#039;&#039;&lt;br /&gt;
TXT records allow you to specify an arbitrary string of text to be associated with a designated hostname.  Clicking on &#039;&#039;&#039;TXT&#039;&#039;&#039; will bring up a Text field, allowing you to specify the text string you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;AAAA Record&#039;&#039;&#039;&lt;br /&gt;
AAAA records are used to associate IPv6 addresses with the designated hostname.  Clicking on &#039;&#039;&#039;AAAA&#039;&#039;&#039; will bring up an IPv6 Address field, allowing you to specify the IPv6 address you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;CNAME Record&#039;&#039;&#039;&lt;br /&gt;
CNAME records are used to alias one host name to another (most common example being www.domain.tld to domain.tld).  Clicking on &#039;&#039;&#039;CNAME&#039;&#039;&#039; will bring up an Aliased Domain field, allowing you to specify which domain you want the designated hostname to point to.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;SRV Record&#039;&#039;&#039;&lt;br /&gt;
SRV records are used to locate specific protocols on a domain.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NS Record&#039;&#039;&#039;&lt;br /&gt;
NS records are used to delegate DNS to the listed name servers.  Clicking on &#039;&#039;&#039;NS&#039;&#039;&#039; will bring up a name server field.  By default, all DNS will come with name server records populated.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MX Record&#039;&#039;&#039;&lt;br /&gt;
MX records allow you to determine which mail host will control your email.  Clicking on &#039;&#039;&#039;MX&#039;&#039;&#039; will bring up Target and Priority fields.  The target is the url of the host managing your email (XMission&#039;s MX record is mx.xmission.com).  The priority determines the order in which your mail servers will be processed.  A lower priority is always processed first.&lt;br /&gt;
&lt;br /&gt;
====Edit/Remove Existing DNS Record====&lt;br /&gt;
You can edit a DNS record by clicking on the &amp;quot;Edit&amp;quot; button next to the record you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will change the existing record into editable text boxes you can update.  When you are satisfied with your changes, click the blue &amp;quot;Save&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns-fields.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A DNS record can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the dns record you want to remove.  You will be prompted to confirm the deletion before it is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Account Home}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Services}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Billing}}&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9120</id>
		<title>XMission Control Panel/Services Tab</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9120"/>
		<updated>2018-01-22T21:22:27Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Installing WordPress */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Services=&lt;br /&gt;
The &#039;&#039;&#039;Services&#039;&#039;&#039; section of your account details the various services you have active, and depending on the service, assorted tools to help you manage the service.&lt;br /&gt;
&lt;br /&gt;
You can get to your &#039;&#039;&#039;Services&#039;&#039;&#039; page by clicking on the &#039;&#039;&#039;Services&#039;&#039;&#039; link at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
[[File:Services_header.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On the &#039;&#039;&#039;Services&#039;&#039;&#039; screen, you will see various sections depending on the services on your account.  You can click on a section to expand it and see detailed information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
The &#039;&#039;&#039;Summary&#039;&#039;&#039; section details all of the services currently on your account.  Certain services that don&#039;t have additional tools available, such as Internet connections, will appear here instead of appearing in their own section.&lt;br /&gt;
&lt;br /&gt;
==Email==&lt;br /&gt;
The &#039;&#039;&#039;Email&#039;&#039;&#039; section details all of the email services currently active on the account and provides login buttons to grant you quick access to your inbox for personal accounts.&lt;br /&gt;
&lt;br /&gt;
NOTE: the panel currently does not provide specific controls for Zimbra Base and Premium accounts in the Email section.  To manage your Zimbra domain, login to [https://zimbra.xmission.com:7071/zimbraAdmin/ Zimbra Admin] with the appropriate administrator account.&lt;br /&gt;
&lt;br /&gt;
==Cloud Servers==&lt;br /&gt;
The &#039;&#039;&#039;Cloud Servers&#039;&#039;&#039; section details all of the Managed and Unmanaged Cloud hosting servers currently active on the account.  Furthermore, the servers can be managed from this page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add a Server===&lt;br /&gt;
To add a hosted cloud server to your account, click on the &#039;Add a server&#039; button at the bottom of the expanded Cloud Servers section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A window will appear with the various options you have when adding a server.  The cost field will dynamically update based on the options you choose.  &lt;br /&gt;
&lt;br /&gt;
[[File:Create-new-server.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can read up on the Managed Cloud and Unmanaged Cloud servers by clicking on the &#039;Read more&#039; links.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Change the Status of an Existing Server===&lt;br /&gt;
You can start or shut down your servers by clicking on the &amp;quot;Status&amp;quot; drop down underneath the &amp;quot;Cloud Servers&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
[[File:Server-status-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Existing Servers===&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button for a cloud server will allow you to edit resources, and on Managed servers, allow you to tweak specific features related to your hosted website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Configure Resources====&lt;br /&gt;
Clicking on the &amp;quot;Configure resources&amp;quot; button will allow you to change the current CPU Cores, Memory, and Storage settings on your Cloud Server.  &lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Changing any of these settings will automatically update the Cost section, reflecting what the allocated resources will cost you monthly.&lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====SSL Certificates====&lt;br /&gt;
You can view the SSL Certificates currently installed on your Managed Server by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;SSL Certificates&amp;quot; section of &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-ssl-certs.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding an SSL Certificate=====&lt;br /&gt;
You can add an SSL Certificate by clicking on the green &amp;quot;Add SSL Certification&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to name your certificate, insert the Cert and Key information, and finally the Chain Cert/CA information if you have it.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-window.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing an SSL Certificate=====&lt;br /&gt;
You can remove an SSL certificate by clicking on the red &amp;quot;Delete&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be asked to confirm the deletion before your certificate is actually deleted.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Domain Redirects====&lt;br /&gt;
You can add a redirect for one of your domains by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;Redirects&amp;quot; section under &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-redirects-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Domain Redirect=====&lt;br /&gt;
You can add a domain redirect by clicking on the green &amp;quot;Add Domain Redirect&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:Domain-redirect-window.png]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If your domain is pointed at XMission, you will also need to add it to your DNS if you have not already, otherwise the redirect will not work.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Domain Redirect=====&lt;br /&gt;
Domain redirects can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the redirect you want to remove.  &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the redirect is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====PHP Settings====&lt;br /&gt;
You can configure your PHP settings under the &amp;quot;PHP settings&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a New PHP Setting=====&lt;br /&gt;
You can add a new PHP setting by clicking on the &amp;quot;+ Add&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can name the key and set its value in the window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-php-setting-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your setting, click on &amp;quot;Submit&amp;quot;. Note: ensure your syntax is correct.&lt;br /&gt;
&lt;br /&gt;
=====Removing an Existing PHP Setting=====&lt;br /&gt;
You can remove a PHP setting by clicking on the red &amp;quot;Delete&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the setting is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Virtual Hosts====&lt;br /&gt;
You can manage the websites hosted on the server under the &amp;quot;Virtual Hosts&amp;quot; section.  You can configure the active aliases, FTP accounts, and SSL certificates.  If you would like to view sites built on your server without updating your DNS, you can view instructions on modifying your hosts file [http://wiki.xmission.com/Cloud_Hosting/Hosts_File here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Website=====&lt;br /&gt;
You can add a website to your server by clicking on the &amp;quot;+ Add website&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-virsthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can set the domain name, any aliases you want to add, and SSL options for the site in the New Website window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-virthost-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTES:&lt;br /&gt;
* Enabling &amp;quot;SSL Only&amp;quot; will setup a 301 redirect to direct any http traffic to https.  &lt;br /&gt;
* You will need to have an SSL Certificate already in place to choose when enabling SSL for a website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Adding / Editing Domain Aliases======&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button underneath &amp;quot;Domain aliases&amp;quot; will allow you to add, edit, and remove aliases for the domain in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain-aliases.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Existing aliases will turn into a text field, allowing you to edit them as needed.  Clicking the red &amp;quot;-&amp;quot; button will remove it.  Clicking the green &amp;quot;+&amp;quot; button will add a new text field that can be used to enter a new alias.  &lt;br /&gt;
&lt;br /&gt;
[[File:Domain-alias-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your changes, click &amp;quot;Save&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Editing FTP Accounts======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;FTP accounts&amp;quot; will allow you to add, edit and remove FTP users for the website in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Clicking the blue &amp;quot;+ Add FTP&amp;quot; button will open the New FTP User window.&lt;br /&gt;
&lt;br /&gt;
[[File:New-ftp-user-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here you can enter a new Username, and set the password for the new user.&lt;br /&gt;
&lt;br /&gt;
Clicking on the gear button will allow you to change the password for the FTP user you wish to update.&lt;br /&gt;
&lt;br /&gt;
To remove an FTP user, click on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm the deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Enabling SSL / Editing SSL Certificate in Use======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;HTTPS&amp;quot; will allow you to enable SSL, turn on HTTPS 301 redirects, and assign a certificate to an existing website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-ssl-certificates.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can enable HTTPS by clicking the check box next to &amp;quot;SSL Enabled&amp;quot;.  Checking &amp;quot;SSL Only&amp;quot; will enable HTTPS 301 redirects for your domain, which will direct all HTTP traffic to HTTPS.&lt;br /&gt;
&lt;br /&gt;
You can set the active certificate by choosing one from the drop down beneath &amp;quot;SSL Certificate&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Ssl-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing a Website=====&lt;br /&gt;
A website can be removed from your server by clicking on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm your deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-virthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: Deleting a website will also delete the relevant directory and files within it, so when deleting a website, ensure that you have backed up the files you want to keep.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
====Databases====&lt;br /&gt;
The databases section allows you to add databases, view database names and usernames associated with those databases, edit database passwords and delete databases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Database=====&lt;br /&gt;
You can add a database by clicking on the &amp;quot;+ Add database&amp;quot; button.  &lt;br /&gt;
&lt;br /&gt;
[[File:Add-database-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can define the database name, username and password in the window that appears.  Note that you will need to confirm the password before the database will be created.&lt;br /&gt;
&lt;br /&gt;
[[File:New-database-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Changing Password on Existing Database=====&lt;br /&gt;
You can change the password on an existing domain by clicking on &amp;quot;Change Password&amp;quot; for the database you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-change-password-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to confirm the new password before it will be updated.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Database=====&lt;br /&gt;
You can remove a database by clicking on the red &amp;quot;Delete&amp;quot; button next to the database you wish to remove.  You will be prompted to confirm deletion before the database is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-delete-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Accessing phpMyAdmin=====&lt;br /&gt;
You can access phpMyAdmin for your databases by clicking on the &amp;quot;phpMyAdmin&amp;quot; button below the database list.&lt;br /&gt;
&lt;br /&gt;
[[File:Phpmyadmin-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Installing WordPress===&lt;br /&gt;
If you would like to install WordPress on your Managed Cloud Server, you can find instructions on how to do so [[Installing_WordPress_on_your_Managed_Cloud:here]]&lt;br /&gt;
&lt;br /&gt;
==Hosting==&lt;br /&gt;
Under the hosting section, you can see the various website hosting services currently active on the account.&lt;br /&gt;
&lt;br /&gt;
With Shared Web Hosting services, you will be able to see which server your website is located on, the primary username associated with that hosting package, and a Login button that will take you directly to your website control panel.&lt;br /&gt;
&lt;br /&gt;
==DNS==&lt;br /&gt;
The DNS section will show you the DNS you&#039;ve added for the domains you manage.  Domains you have associated with your hosted cloud servers will appear here automatically, but you can further add additional domains if you wish.&lt;br /&gt;
&lt;br /&gt;
Clicking on a domain in the list to the left will show you the current record for that domain.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add Domain===&lt;br /&gt;
To add DNS for a domain, you can click on the &#039;+ Add Domain&#039; button&lt;br /&gt;
&lt;br /&gt;
[[File:Add-domain-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;New Zone&#039; window.  Here, you can input the domain name for the domain you wish to manage, and the TTL for the record.  By default, the TTL is 3600.&lt;br /&gt;
&lt;br /&gt;
When you&#039;re satisfied with what you&#039;ve entered, click on the &#039;Create&#039; button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Domain===&lt;br /&gt;
With the domain selected on the left hand side, you will be able to click on the &#039;Edit&#039; button next to the domain name on the right hand side.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;Edit Zone&#039; window, which looks nearly identical to the New Zone window.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Add New DNS Record====&lt;br /&gt;
With the domain selected on the left hand side, you can click on the green &#039;+&#039; symbol at the bottom of the DNS section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the New Record window, where you can input the record name, as well as determine what type of record it is.&lt;br /&gt;
&lt;br /&gt;
Choosing the type of record will update the window to bring up fields appropriate to the type of record you&#039;re wishing to add.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;A Record&#039;&#039;&#039;&lt;br /&gt;
A records allow you to point a hostname to a specific IP address.  Clicking on &#039;&#039;&#039;A&#039;&#039;&#039; will bring up an IP Address field, allowing you to point the record to a specific IP address.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;TXT Record&#039;&#039;&#039;&lt;br /&gt;
TXT records allow you to specify an arbitrary string of text to be associated with a designated hostname.  Clicking on &#039;&#039;&#039;TXT&#039;&#039;&#039; will bring up a Text field, allowing you to specify the text string you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;AAAA Record&#039;&#039;&#039;&lt;br /&gt;
AAAA records are used to associate IPv6 addresses with the designated hostname.  Clicking on &#039;&#039;&#039;AAAA&#039;&#039;&#039; will bring up an IPv6 Address field, allowing you to specify the IPv6 address you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;CNAME Record&#039;&#039;&#039;&lt;br /&gt;
CNAME records are used to alias one host name to another (most common example being www.domain.tld to domain.tld).  Clicking on &#039;&#039;&#039;CNAME&#039;&#039;&#039; will bring up an Aliased Domain field, allowing you to specify which domain you want the designated hostname to point to.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;SRV Record&#039;&#039;&#039;&lt;br /&gt;
SRV records are used to locate specific protocols on a domain.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NS Record&#039;&#039;&#039;&lt;br /&gt;
NS records are used to delegate DNS to the listed name servers.  Clicking on &#039;&#039;&#039;NS&#039;&#039;&#039; will bring up a name server field.  By default, all DNS will come with name server records populated.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MX Record&#039;&#039;&#039;&lt;br /&gt;
MX records allow you to determine which mail host will control your email.  Clicking on &#039;&#039;&#039;MX&#039;&#039;&#039; will bring up Target and Priority fields.  The target is the url of the host managing your email (XMission&#039;s MX record is mx.xmission.com).  The priority determines the order in which your mail servers will be processed.  A lower priority is always processed first.&lt;br /&gt;
&lt;br /&gt;
====Edit/Remove Existing DNS Record====&lt;br /&gt;
You can edit a DNS record by clicking on the &amp;quot;Edit&amp;quot; button next to the record you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will change the existing record into editable text boxes you can update.  When you are satisfied with your changes, click the blue &amp;quot;Save&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns-fields.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A DNS record can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the dns record you want to remove.  You will be prompted to confirm the deletion before it is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Account Home}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Services}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Billing}}&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9119</id>
		<title>XMission Control Panel/Services Tab</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9119"/>
		<updated>2018-01-22T21:21:24Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Installing WordPress */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Services=&lt;br /&gt;
The &#039;&#039;&#039;Services&#039;&#039;&#039; section of your account details the various services you have active, and depending on the service, assorted tools to help you manage the service.&lt;br /&gt;
&lt;br /&gt;
You can get to your &#039;&#039;&#039;Services&#039;&#039;&#039; page by clicking on the &#039;&#039;&#039;Services&#039;&#039;&#039; link at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
[[File:Services_header.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On the &#039;&#039;&#039;Services&#039;&#039;&#039; screen, you will see various sections depending on the services on your account.  You can click on a section to expand it and see detailed information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
The &#039;&#039;&#039;Summary&#039;&#039;&#039; section details all of the services currently on your account.  Certain services that don&#039;t have additional tools available, such as Internet connections, will appear here instead of appearing in their own section.&lt;br /&gt;
&lt;br /&gt;
==Email==&lt;br /&gt;
The &#039;&#039;&#039;Email&#039;&#039;&#039; section details all of the email services currently active on the account and provides login buttons to grant you quick access to your inbox for personal accounts.&lt;br /&gt;
&lt;br /&gt;
NOTE: the panel currently does not provide specific controls for Zimbra Base and Premium accounts in the Email section.  To manage your Zimbra domain, login to [https://zimbra.xmission.com:7071/zimbraAdmin/ Zimbra Admin] with the appropriate administrator account.&lt;br /&gt;
&lt;br /&gt;
==Cloud Servers==&lt;br /&gt;
The &#039;&#039;&#039;Cloud Servers&#039;&#039;&#039; section details all of the Managed and Unmanaged Cloud hosting servers currently active on the account.  Furthermore, the servers can be managed from this page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add a Server===&lt;br /&gt;
To add a hosted cloud server to your account, click on the &#039;Add a server&#039; button at the bottom of the expanded Cloud Servers section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A window will appear with the various options you have when adding a server.  The cost field will dynamically update based on the options you choose.  &lt;br /&gt;
&lt;br /&gt;
[[File:Create-new-server.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can read up on the Managed Cloud and Unmanaged Cloud servers by clicking on the &#039;Read more&#039; links.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Change the Status of an Existing Server===&lt;br /&gt;
You can start or shut down your servers by clicking on the &amp;quot;Status&amp;quot; drop down underneath the &amp;quot;Cloud Servers&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
[[File:Server-status-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Existing Servers===&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button for a cloud server will allow you to edit resources, and on Managed servers, allow you to tweak specific features related to your hosted website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Configure Resources====&lt;br /&gt;
Clicking on the &amp;quot;Configure resources&amp;quot; button will allow you to change the current CPU Cores, Memory, and Storage settings on your Cloud Server.  &lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Changing any of these settings will automatically update the Cost section, reflecting what the allocated resources will cost you monthly.&lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====SSL Certificates====&lt;br /&gt;
You can view the SSL Certificates currently installed on your Managed Server by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;SSL Certificates&amp;quot; section of &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-ssl-certs.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding an SSL Certificate=====&lt;br /&gt;
You can add an SSL Certificate by clicking on the green &amp;quot;Add SSL Certification&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to name your certificate, insert the Cert and Key information, and finally the Chain Cert/CA information if you have it.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-window.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing an SSL Certificate=====&lt;br /&gt;
You can remove an SSL certificate by clicking on the red &amp;quot;Delete&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be asked to confirm the deletion before your certificate is actually deleted.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Domain Redirects====&lt;br /&gt;
You can add a redirect for one of your domains by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;Redirects&amp;quot; section under &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-redirects-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Domain Redirect=====&lt;br /&gt;
You can add a domain redirect by clicking on the green &amp;quot;Add Domain Redirect&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:Domain-redirect-window.png]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If your domain is pointed at XMission, you will also need to add it to your DNS if you have not already, otherwise the redirect will not work.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Domain Redirect=====&lt;br /&gt;
Domain redirects can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the redirect you want to remove.  &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the redirect is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====PHP Settings====&lt;br /&gt;
You can configure your PHP settings under the &amp;quot;PHP settings&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a New PHP Setting=====&lt;br /&gt;
You can add a new PHP setting by clicking on the &amp;quot;+ Add&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can name the key and set its value in the window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-php-setting-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your setting, click on &amp;quot;Submit&amp;quot;. Note: ensure your syntax is correct.&lt;br /&gt;
&lt;br /&gt;
=====Removing an Existing PHP Setting=====&lt;br /&gt;
You can remove a PHP setting by clicking on the red &amp;quot;Delete&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the setting is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Virtual Hosts====&lt;br /&gt;
You can manage the websites hosted on the server under the &amp;quot;Virtual Hosts&amp;quot; section.  You can configure the active aliases, FTP accounts, and SSL certificates.  If you would like to view sites built on your server without updating your DNS, you can view instructions on modifying your hosts file [http://wiki.xmission.com/Cloud_Hosting/Hosts_File here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Website=====&lt;br /&gt;
You can add a website to your server by clicking on the &amp;quot;+ Add website&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-virsthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can set the domain name, any aliases you want to add, and SSL options for the site in the New Website window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-virthost-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTES:&lt;br /&gt;
* Enabling &amp;quot;SSL Only&amp;quot; will setup a 301 redirect to direct any http traffic to https.  &lt;br /&gt;
* You will need to have an SSL Certificate already in place to choose when enabling SSL for a website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Adding / Editing Domain Aliases======&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button underneath &amp;quot;Domain aliases&amp;quot; will allow you to add, edit, and remove aliases for the domain in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain-aliases.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Existing aliases will turn into a text field, allowing you to edit them as needed.  Clicking the red &amp;quot;-&amp;quot; button will remove it.  Clicking the green &amp;quot;+&amp;quot; button will add a new text field that can be used to enter a new alias.  &lt;br /&gt;
&lt;br /&gt;
[[File:Domain-alias-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your changes, click &amp;quot;Save&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Editing FTP Accounts======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;FTP accounts&amp;quot; will allow you to add, edit and remove FTP users for the website in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Clicking the blue &amp;quot;+ Add FTP&amp;quot; button will open the New FTP User window.&lt;br /&gt;
&lt;br /&gt;
[[File:New-ftp-user-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here you can enter a new Username, and set the password for the new user.&lt;br /&gt;
&lt;br /&gt;
Clicking on the gear button will allow you to change the password for the FTP user you wish to update.&lt;br /&gt;
&lt;br /&gt;
To remove an FTP user, click on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm the deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Enabling SSL / Editing SSL Certificate in Use======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;HTTPS&amp;quot; will allow you to enable SSL, turn on HTTPS 301 redirects, and assign a certificate to an existing website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-ssl-certificates.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can enable HTTPS by clicking the check box next to &amp;quot;SSL Enabled&amp;quot;.  Checking &amp;quot;SSL Only&amp;quot; will enable HTTPS 301 redirects for your domain, which will direct all HTTP traffic to HTTPS.&lt;br /&gt;
&lt;br /&gt;
You can set the active certificate by choosing one from the drop down beneath &amp;quot;SSL Certificate&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Ssl-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing a Website=====&lt;br /&gt;
A website can be removed from your server by clicking on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm your deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-virthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: Deleting a website will also delete the relevant directory and files within it, so when deleting a website, ensure that you have backed up the files you want to keep.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
====Databases====&lt;br /&gt;
The databases section allows you to add databases, view database names and usernames associated with those databases, edit database passwords and delete databases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Database=====&lt;br /&gt;
You can add a database by clicking on the &amp;quot;+ Add database&amp;quot; button.  &lt;br /&gt;
&lt;br /&gt;
[[File:Add-database-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can define the database name, username and password in the window that appears.  Note that you will need to confirm the password before the database will be created.&lt;br /&gt;
&lt;br /&gt;
[[File:New-database-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Changing Password on Existing Database=====&lt;br /&gt;
You can change the password on an existing domain by clicking on &amp;quot;Change Password&amp;quot; for the database you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-change-password-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to confirm the new password before it will be updated.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Database=====&lt;br /&gt;
You can remove a database by clicking on the red &amp;quot;Delete&amp;quot; button next to the database you wish to remove.  You will be prompted to confirm deletion before the database is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-delete-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Accessing phpMyAdmin=====&lt;br /&gt;
You can access phpMyAdmin for your databases by clicking on the &amp;quot;phpMyAdmin&amp;quot; button below the database list.&lt;br /&gt;
&lt;br /&gt;
[[File:Phpmyadmin-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Installing WordPress===&lt;br /&gt;
If you would like to install WordPress on your Managed Cloud Server, you can find instructions on how to do so [Installing_WordPress_on_your_Managed_Cloud:here]&lt;br /&gt;
&lt;br /&gt;
==Hosting==&lt;br /&gt;
Under the hosting section, you can see the various website hosting services currently active on the account.&lt;br /&gt;
&lt;br /&gt;
With Shared Web Hosting services, you will be able to see which server your website is located on, the primary username associated with that hosting package, and a Login button that will take you directly to your website control panel.&lt;br /&gt;
&lt;br /&gt;
==DNS==&lt;br /&gt;
The DNS section will show you the DNS you&#039;ve added for the domains you manage.  Domains you have associated with your hosted cloud servers will appear here automatically, but you can further add additional domains if you wish.&lt;br /&gt;
&lt;br /&gt;
Clicking on a domain in the list to the left will show you the current record for that domain.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add Domain===&lt;br /&gt;
To add DNS for a domain, you can click on the &#039;+ Add Domain&#039; button&lt;br /&gt;
&lt;br /&gt;
[[File:Add-domain-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;New Zone&#039; window.  Here, you can input the domain name for the domain you wish to manage, and the TTL for the record.  By default, the TTL is 3600.&lt;br /&gt;
&lt;br /&gt;
When you&#039;re satisfied with what you&#039;ve entered, click on the &#039;Create&#039; button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Domain===&lt;br /&gt;
With the domain selected on the left hand side, you will be able to click on the &#039;Edit&#039; button next to the domain name on the right hand side.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;Edit Zone&#039; window, which looks nearly identical to the New Zone window.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Add New DNS Record====&lt;br /&gt;
With the domain selected on the left hand side, you can click on the green &#039;+&#039; symbol at the bottom of the DNS section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the New Record window, where you can input the record name, as well as determine what type of record it is.&lt;br /&gt;
&lt;br /&gt;
Choosing the type of record will update the window to bring up fields appropriate to the type of record you&#039;re wishing to add.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;A Record&#039;&#039;&#039;&lt;br /&gt;
A records allow you to point a hostname to a specific IP address.  Clicking on &#039;&#039;&#039;A&#039;&#039;&#039; will bring up an IP Address field, allowing you to point the record to a specific IP address.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;TXT Record&#039;&#039;&#039;&lt;br /&gt;
TXT records allow you to specify an arbitrary string of text to be associated with a designated hostname.  Clicking on &#039;&#039;&#039;TXT&#039;&#039;&#039; will bring up a Text field, allowing you to specify the text string you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;AAAA Record&#039;&#039;&#039;&lt;br /&gt;
AAAA records are used to associate IPv6 addresses with the designated hostname.  Clicking on &#039;&#039;&#039;AAAA&#039;&#039;&#039; will bring up an IPv6 Address field, allowing you to specify the IPv6 address you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;CNAME Record&#039;&#039;&#039;&lt;br /&gt;
CNAME records are used to alias one host name to another (most common example being www.domain.tld to domain.tld).  Clicking on &#039;&#039;&#039;CNAME&#039;&#039;&#039; will bring up an Aliased Domain field, allowing you to specify which domain you want the designated hostname to point to.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;SRV Record&#039;&#039;&#039;&lt;br /&gt;
SRV records are used to locate specific protocols on a domain.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NS Record&#039;&#039;&#039;&lt;br /&gt;
NS records are used to delegate DNS to the listed name servers.  Clicking on &#039;&#039;&#039;NS&#039;&#039;&#039; will bring up a name server field.  By default, all DNS will come with name server records populated.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MX Record&#039;&#039;&#039;&lt;br /&gt;
MX records allow you to determine which mail host will control your email.  Clicking on &#039;&#039;&#039;MX&#039;&#039;&#039; will bring up Target and Priority fields.  The target is the url of the host managing your email (XMission&#039;s MX record is mx.xmission.com).  The priority determines the order in which your mail servers will be processed.  A lower priority is always processed first.&lt;br /&gt;
&lt;br /&gt;
====Edit/Remove Existing DNS Record====&lt;br /&gt;
You can edit a DNS record by clicking on the &amp;quot;Edit&amp;quot; button next to the record you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will change the existing record into editable text boxes you can update.  When you are satisfied with your changes, click the blue &amp;quot;Save&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns-fields.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A DNS record can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the dns record you want to remove.  You will be prompted to confirm the deletion before it is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Account Home}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Services}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Billing}}&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9118</id>
		<title>XMission Control Panel/Services Tab</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9118"/>
		<updated>2018-01-22T21:18:39Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Installing WordPress */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Services=&lt;br /&gt;
The &#039;&#039;&#039;Services&#039;&#039;&#039; section of your account details the various services you have active, and depending on the service, assorted tools to help you manage the service.&lt;br /&gt;
&lt;br /&gt;
You can get to your &#039;&#039;&#039;Services&#039;&#039;&#039; page by clicking on the &#039;&#039;&#039;Services&#039;&#039;&#039; link at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
[[File:Services_header.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On the &#039;&#039;&#039;Services&#039;&#039;&#039; screen, you will see various sections depending on the services on your account.  You can click on a section to expand it and see detailed information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
The &#039;&#039;&#039;Summary&#039;&#039;&#039; section details all of the services currently on your account.  Certain services that don&#039;t have additional tools available, such as Internet connections, will appear here instead of appearing in their own section.&lt;br /&gt;
&lt;br /&gt;
==Email==&lt;br /&gt;
The &#039;&#039;&#039;Email&#039;&#039;&#039; section details all of the email services currently active on the account and provides login buttons to grant you quick access to your inbox for personal accounts.&lt;br /&gt;
&lt;br /&gt;
NOTE: the panel currently does not provide specific controls for Zimbra Base and Premium accounts in the Email section.  To manage your Zimbra domain, login to [https://zimbra.xmission.com:7071/zimbraAdmin/ Zimbra Admin] with the appropriate administrator account.&lt;br /&gt;
&lt;br /&gt;
==Cloud Servers==&lt;br /&gt;
The &#039;&#039;&#039;Cloud Servers&#039;&#039;&#039; section details all of the Managed and Unmanaged Cloud hosting servers currently active on the account.  Furthermore, the servers can be managed from this page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add a Server===&lt;br /&gt;
To add a hosted cloud server to your account, click on the &#039;Add a server&#039; button at the bottom of the expanded Cloud Servers section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A window will appear with the various options you have when adding a server.  The cost field will dynamically update based on the options you choose.  &lt;br /&gt;
&lt;br /&gt;
[[File:Create-new-server.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can read up on the Managed Cloud and Unmanaged Cloud servers by clicking on the &#039;Read more&#039; links.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Change the Status of an Existing Server===&lt;br /&gt;
You can start or shut down your servers by clicking on the &amp;quot;Status&amp;quot; drop down underneath the &amp;quot;Cloud Servers&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
[[File:Server-status-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Existing Servers===&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button for a cloud server will allow you to edit resources, and on Managed servers, allow you to tweak specific features related to your hosted website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Configure Resources====&lt;br /&gt;
Clicking on the &amp;quot;Configure resources&amp;quot; button will allow you to change the current CPU Cores, Memory, and Storage settings on your Cloud Server.  &lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Changing any of these settings will automatically update the Cost section, reflecting what the allocated resources will cost you monthly.&lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====SSL Certificates====&lt;br /&gt;
You can view the SSL Certificates currently installed on your Managed Server by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;SSL Certificates&amp;quot; section of &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-ssl-certs.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding an SSL Certificate=====&lt;br /&gt;
You can add an SSL Certificate by clicking on the green &amp;quot;Add SSL Certification&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to name your certificate, insert the Cert and Key information, and finally the Chain Cert/CA information if you have it.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-window.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing an SSL Certificate=====&lt;br /&gt;
You can remove an SSL certificate by clicking on the red &amp;quot;Delete&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be asked to confirm the deletion before your certificate is actually deleted.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Domain Redirects====&lt;br /&gt;
You can add a redirect for one of your domains by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;Redirects&amp;quot; section under &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-redirects-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Domain Redirect=====&lt;br /&gt;
You can add a domain redirect by clicking on the green &amp;quot;Add Domain Redirect&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:Domain-redirect-window.png]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If your domain is pointed at XMission, you will also need to add it to your DNS if you have not already, otherwise the redirect will not work.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Domain Redirect=====&lt;br /&gt;
Domain redirects can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the redirect you want to remove.  &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the redirect is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====PHP Settings====&lt;br /&gt;
You can configure your PHP settings under the &amp;quot;PHP settings&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a New PHP Setting=====&lt;br /&gt;
You can add a new PHP setting by clicking on the &amp;quot;+ Add&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can name the key and set its value in the window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-php-setting-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your setting, click on &amp;quot;Submit&amp;quot;. Note: ensure your syntax is correct.&lt;br /&gt;
&lt;br /&gt;
=====Removing an Existing PHP Setting=====&lt;br /&gt;
You can remove a PHP setting by clicking on the red &amp;quot;Delete&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the setting is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Virtual Hosts====&lt;br /&gt;
You can manage the websites hosted on the server under the &amp;quot;Virtual Hosts&amp;quot; section.  You can configure the active aliases, FTP accounts, and SSL certificates.  If you would like to view sites built on your server without updating your DNS, you can view instructions on modifying your hosts file [http://wiki.xmission.com/Cloud_Hosting/Hosts_File here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Website=====&lt;br /&gt;
You can add a website to your server by clicking on the &amp;quot;+ Add website&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-virsthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can set the domain name, any aliases you want to add, and SSL options for the site in the New Website window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-virthost-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTES:&lt;br /&gt;
* Enabling &amp;quot;SSL Only&amp;quot; will setup a 301 redirect to direct any http traffic to https.  &lt;br /&gt;
* You will need to have an SSL Certificate already in place to choose when enabling SSL for a website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Adding / Editing Domain Aliases======&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button underneath &amp;quot;Domain aliases&amp;quot; will allow you to add, edit, and remove aliases for the domain in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain-aliases.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Existing aliases will turn into a text field, allowing you to edit them as needed.  Clicking the red &amp;quot;-&amp;quot; button will remove it.  Clicking the green &amp;quot;+&amp;quot; button will add a new text field that can be used to enter a new alias.  &lt;br /&gt;
&lt;br /&gt;
[[File:Domain-alias-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your changes, click &amp;quot;Save&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Editing FTP Accounts======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;FTP accounts&amp;quot; will allow you to add, edit and remove FTP users for the website in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Clicking the blue &amp;quot;+ Add FTP&amp;quot; button will open the New FTP User window.&lt;br /&gt;
&lt;br /&gt;
[[File:New-ftp-user-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here you can enter a new Username, and set the password for the new user.&lt;br /&gt;
&lt;br /&gt;
Clicking on the gear button will allow you to change the password for the FTP user you wish to update.&lt;br /&gt;
&lt;br /&gt;
To remove an FTP user, click on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm the deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Enabling SSL / Editing SSL Certificate in Use======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;HTTPS&amp;quot; will allow you to enable SSL, turn on HTTPS 301 redirects, and assign a certificate to an existing website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-ssl-certificates.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can enable HTTPS by clicking the check box next to &amp;quot;SSL Enabled&amp;quot;.  Checking &amp;quot;SSL Only&amp;quot; will enable HTTPS 301 redirects for your domain, which will direct all HTTP traffic to HTTPS.&lt;br /&gt;
&lt;br /&gt;
You can set the active certificate by choosing one from the drop down beneath &amp;quot;SSL Certificate&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Ssl-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing a Website=====&lt;br /&gt;
A website can be removed from your server by clicking on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm your deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-virthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: Deleting a website will also delete the relevant directory and files within it, so when deleting a website, ensure that you have backed up the files you want to keep.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
====Databases====&lt;br /&gt;
The databases section allows you to add databases, view database names and usernames associated with those databases, edit database passwords and delete databases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Database=====&lt;br /&gt;
You can add a database by clicking on the &amp;quot;+ Add database&amp;quot; button.  &lt;br /&gt;
&lt;br /&gt;
[[File:Add-database-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can define the database name, username and password in the window that appears.  Note that you will need to confirm the password before the database will be created.&lt;br /&gt;
&lt;br /&gt;
[[File:New-database-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Changing Password on Existing Database=====&lt;br /&gt;
You can change the password on an existing domain by clicking on &amp;quot;Change Password&amp;quot; for the database you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-change-password-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to confirm the new password before it will be updated.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Database=====&lt;br /&gt;
You can remove a database by clicking on the red &amp;quot;Delete&amp;quot; button next to the database you wish to remove.  You will be prompted to confirm deletion before the database is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-delete-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Accessing phpMyAdmin=====&lt;br /&gt;
You can access phpMyAdmin for your databases by clicking on the &amp;quot;phpMyAdmin&amp;quot; button below the database list.&lt;br /&gt;
&lt;br /&gt;
[[File:Phpmyadmin-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Installing WordPress===&lt;br /&gt;
If you would like to install WordPress on your Managed Cloud Server, you can find instructions on how to do so [Installing_WordPress_on_your_Managed_Cloud|here]&lt;br /&gt;
&lt;br /&gt;
==Hosting==&lt;br /&gt;
Under the hosting section, you can see the various website hosting services currently active on the account.&lt;br /&gt;
&lt;br /&gt;
With Shared Web Hosting services, you will be able to see which server your website is located on, the primary username associated with that hosting package, and a Login button that will take you directly to your website control panel.&lt;br /&gt;
&lt;br /&gt;
==DNS==&lt;br /&gt;
The DNS section will show you the DNS you&#039;ve added for the domains you manage.  Domains you have associated with your hosted cloud servers will appear here automatically, but you can further add additional domains if you wish.&lt;br /&gt;
&lt;br /&gt;
Clicking on a domain in the list to the left will show you the current record for that domain.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add Domain===&lt;br /&gt;
To add DNS for a domain, you can click on the &#039;+ Add Domain&#039; button&lt;br /&gt;
&lt;br /&gt;
[[File:Add-domain-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;New Zone&#039; window.  Here, you can input the domain name for the domain you wish to manage, and the TTL for the record.  By default, the TTL is 3600.&lt;br /&gt;
&lt;br /&gt;
When you&#039;re satisfied with what you&#039;ve entered, click on the &#039;Create&#039; button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Domain===&lt;br /&gt;
With the domain selected on the left hand side, you will be able to click on the &#039;Edit&#039; button next to the domain name on the right hand side.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;Edit Zone&#039; window, which looks nearly identical to the New Zone window.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Add New DNS Record====&lt;br /&gt;
With the domain selected on the left hand side, you can click on the green &#039;+&#039; symbol at the bottom of the DNS section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the New Record window, where you can input the record name, as well as determine what type of record it is.&lt;br /&gt;
&lt;br /&gt;
Choosing the type of record will update the window to bring up fields appropriate to the type of record you&#039;re wishing to add.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;A Record&#039;&#039;&#039;&lt;br /&gt;
A records allow you to point a hostname to a specific IP address.  Clicking on &#039;&#039;&#039;A&#039;&#039;&#039; will bring up an IP Address field, allowing you to point the record to a specific IP address.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;TXT Record&#039;&#039;&#039;&lt;br /&gt;
TXT records allow you to specify an arbitrary string of text to be associated with a designated hostname.  Clicking on &#039;&#039;&#039;TXT&#039;&#039;&#039; will bring up a Text field, allowing you to specify the text string you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;AAAA Record&#039;&#039;&#039;&lt;br /&gt;
AAAA records are used to associate IPv6 addresses with the designated hostname.  Clicking on &#039;&#039;&#039;AAAA&#039;&#039;&#039; will bring up an IPv6 Address field, allowing you to specify the IPv6 address you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;CNAME Record&#039;&#039;&#039;&lt;br /&gt;
CNAME records are used to alias one host name to another (most common example being www.domain.tld to domain.tld).  Clicking on &#039;&#039;&#039;CNAME&#039;&#039;&#039; will bring up an Aliased Domain field, allowing you to specify which domain you want the designated hostname to point to.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;SRV Record&#039;&#039;&#039;&lt;br /&gt;
SRV records are used to locate specific protocols on a domain.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NS Record&#039;&#039;&#039;&lt;br /&gt;
NS records are used to delegate DNS to the listed name servers.  Clicking on &#039;&#039;&#039;NS&#039;&#039;&#039; will bring up a name server field.  By default, all DNS will come with name server records populated.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MX Record&#039;&#039;&#039;&lt;br /&gt;
MX records allow you to determine which mail host will control your email.  Clicking on &#039;&#039;&#039;MX&#039;&#039;&#039; will bring up Target and Priority fields.  The target is the url of the host managing your email (XMission&#039;s MX record is mx.xmission.com).  The priority determines the order in which your mail servers will be processed.  A lower priority is always processed first.&lt;br /&gt;
&lt;br /&gt;
====Edit/Remove Existing DNS Record====&lt;br /&gt;
You can edit a DNS record by clicking on the &amp;quot;Edit&amp;quot; button next to the record you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will change the existing record into editable text boxes you can update.  When you are satisfied with your changes, click the blue &amp;quot;Save&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns-fields.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A DNS record can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the dns record you want to remove.  You will be prompted to confirm the deletion before it is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Account Home}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Services}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Billing}}&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9117</id>
		<title>XMission Control Panel/Services Tab</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=XMission_Control_Panel/Services_Tab&amp;diff=9117"/>
		<updated>2018-01-22T21:18:23Z</updated>

		<summary type="html">&lt;p&gt;Envy: /* Cloud Servers */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Services=&lt;br /&gt;
The &#039;&#039;&#039;Services&#039;&#039;&#039; section of your account details the various services you have active, and depending on the service, assorted tools to help you manage the service.&lt;br /&gt;
&lt;br /&gt;
You can get to your &#039;&#039;&#039;Services&#039;&#039;&#039; page by clicking on the &#039;&#039;&#039;Services&#039;&#039;&#039; link at the top of the screen.&lt;br /&gt;
&lt;br /&gt;
[[File:Services_header.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
On the &#039;&#039;&#039;Services&#039;&#039;&#039; screen, you will see various sections depending on the services on your account.  You can click on a section to expand it and see detailed information.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
The &#039;&#039;&#039;Summary&#039;&#039;&#039; section details all of the services currently on your account.  Certain services that don&#039;t have additional tools available, such as Internet connections, will appear here instead of appearing in their own section.&lt;br /&gt;
&lt;br /&gt;
==Email==&lt;br /&gt;
The &#039;&#039;&#039;Email&#039;&#039;&#039; section details all of the email services currently active on the account and provides login buttons to grant you quick access to your inbox for personal accounts.&lt;br /&gt;
&lt;br /&gt;
NOTE: the panel currently does not provide specific controls for Zimbra Base and Premium accounts in the Email section.  To manage your Zimbra domain, login to [https://zimbra.xmission.com:7071/zimbraAdmin/ Zimbra Admin] with the appropriate administrator account.&lt;br /&gt;
&lt;br /&gt;
==Cloud Servers==&lt;br /&gt;
The &#039;&#039;&#039;Cloud Servers&#039;&#039;&#039; section details all of the Managed and Unmanaged Cloud hosting servers currently active on the account.  Furthermore, the servers can be managed from this page.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add a Server===&lt;br /&gt;
To add a hosted cloud server to your account, click on the &#039;Add a server&#039; button at the bottom of the expanded Cloud Servers section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A window will appear with the various options you have when adding a server.  The cost field will dynamically update based on the options you choose.  &lt;br /&gt;
&lt;br /&gt;
[[File:Create-new-server.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can read up on the Managed Cloud and Unmanaged Cloud servers by clicking on the &#039;Read more&#039; links.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Change the Status of an Existing Server===&lt;br /&gt;
You can start or shut down your servers by clicking on the &amp;quot;Status&amp;quot; drop down underneath the &amp;quot;Cloud Servers&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
[[File:Server-status-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Existing Servers===&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button for a cloud server will allow you to edit resources, and on Managed servers, allow you to tweak specific features related to your hosted website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-server-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Configure Resources====&lt;br /&gt;
Clicking on the &amp;quot;Configure resources&amp;quot; button will allow you to change the current CPU Cores, Memory, and Storage settings on your Cloud Server.  &lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Changing any of these settings will automatically update the Cost section, reflecting what the allocated resources will cost you monthly.&lt;br /&gt;
&lt;br /&gt;
[[File:Configure-resources-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====SSL Certificates====&lt;br /&gt;
You can view the SSL Certificates currently installed on your Managed Server by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;SSL Certificates&amp;quot; section of &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-ssl-certs.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding an SSL Certificate=====&lt;br /&gt;
You can add an SSL Certificate by clicking on the green &amp;quot;Add SSL Certification&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to name your certificate, insert the Cert and Key information, and finally the Chain Cert/CA information if you have it.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-ssl-certificate-window.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing an SSL Certificate=====&lt;br /&gt;
You can remove an SSL certificate by clicking on the red &amp;quot;Delete&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-ssl-certificate-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be asked to confirm the deletion before your certificate is actually deleted.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Domain Redirects====&lt;br /&gt;
You can add a redirect for one of your domains by clicking on &amp;quot;Manage&amp;quot; under the &amp;quot;Redirects&amp;quot; section under &amp;quot;Server settings&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Manage-redirects-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Domain Redirect=====&lt;br /&gt;
You can add a domain redirect by clicking on the green &amp;quot;Add Domain Redirect&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
[[File:Domain-redirect-window.png]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;If your domain is pointed at XMission, you will also need to add it to your DNS if you have not already, otherwise the redirect will not work.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Domain Redirect=====&lt;br /&gt;
Domain redirects can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the redirect you want to remove.  &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-redirect-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the redirect is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====PHP Settings====&lt;br /&gt;
You can configure your PHP settings under the &amp;quot;PHP settings&amp;quot; section.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a New PHP Setting=====&lt;br /&gt;
You can add a new PHP setting by clicking on the &amp;quot;+ Add&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can name the key and set its value in the window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-php-setting-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your setting, click on &amp;quot;Submit&amp;quot;. Note: ensure your syntax is correct.&lt;br /&gt;
&lt;br /&gt;
=====Removing an Existing PHP Setting=====&lt;br /&gt;
You can remove a PHP setting by clicking on the red &amp;quot;Delete&amp;quot; button. &lt;br /&gt;
&lt;br /&gt;
[[File:Delete-php-settings.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will be prompted to confirm the deletion before the setting is removed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Virtual Hosts====&lt;br /&gt;
You can manage the websites hosted on the server under the &amp;quot;Virtual Hosts&amp;quot; section.  You can configure the active aliases, FTP accounts, and SSL certificates.  If you would like to view sites built on your server without updating your DNS, you can view instructions on modifying your hosts file [http://wiki.xmission.com/Cloud_Hosting/Hosts_File here].&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Website=====&lt;br /&gt;
You can add a website to your server by clicking on the &amp;quot;+ Add website&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-virsthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can set the domain name, any aliases you want to add, and SSL options for the site in the New Website window that appears.&lt;br /&gt;
&lt;br /&gt;
[[File:New-virthost-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NOTES:&lt;br /&gt;
* Enabling &amp;quot;SSL Only&amp;quot; will setup a 301 redirect to direct any http traffic to https.  &lt;br /&gt;
* You will need to have an SSL Certificate already in place to choose when enabling SSL for a website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Adding / Editing Domain Aliases======&lt;br /&gt;
Clicking on the &amp;quot;Edit&amp;quot; button underneath &amp;quot;Domain aliases&amp;quot; will allow you to add, edit, and remove aliases for the domain in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain-aliases.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Existing aliases will turn into a text field, allowing you to edit them as needed.  Clicking the red &amp;quot;-&amp;quot; button will remove it.  Clicking the green &amp;quot;+&amp;quot; button will add a new text field that can be used to enter a new alias.  &lt;br /&gt;
&lt;br /&gt;
[[File:Domain-alias-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
When you are satisfied with your changes, click &amp;quot;Save&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Editing FTP Accounts======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;FTP accounts&amp;quot; will allow you to add, edit and remove FTP users for the website in question.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Clicking the blue &amp;quot;+ Add FTP&amp;quot; button will open the New FTP User window.&lt;br /&gt;
&lt;br /&gt;
[[File:New-ftp-user-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here you can enter a new Username, and set the password for the new user.&lt;br /&gt;
&lt;br /&gt;
Clicking on the gear button will allow you to change the password for the FTP user you wish to update.&lt;br /&gt;
&lt;br /&gt;
To remove an FTP user, click on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm the deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Ftp-users-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======Enabling SSL / Editing SSL Certificate in Use======&lt;br /&gt;
Clicking the &amp;quot;Edit&amp;quot; button underneath &amp;quot;HTTPS&amp;quot; will allow you to enable SSL, turn on HTTPS 301 redirects, and assign a certificate to an existing website.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-ssl-certificates.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can enable HTTPS by clicking the check box next to &amp;quot;SSL Enabled&amp;quot;.  Checking &amp;quot;SSL Only&amp;quot; will enable HTTPS 301 redirects for your domain, which will direct all HTTP traffic to HTTPS.&lt;br /&gt;
&lt;br /&gt;
You can set the active certificate by choosing one from the drop down beneath &amp;quot;SSL Certificate&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
[[File:Ssl-edit-buttons.png]]&lt;br /&gt;
&lt;br /&gt;
=====Removing a Website=====&lt;br /&gt;
A website can be removed from your server by clicking on the red &amp;quot;Delete&amp;quot; button.  You will be prompted to confirm your deletion.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-virthost-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;NOTE: Deleting a website will also delete the relevant directory and files within it, so when deleting a website, ensure that you have backed up the files you want to keep.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
====Databases====&lt;br /&gt;
The databases section allows you to add databases, view database names and usernames associated with those databases, edit database passwords and delete databases.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Adding a Database=====&lt;br /&gt;
You can add a database by clicking on the &amp;quot;+ Add database&amp;quot; button.  &lt;br /&gt;
&lt;br /&gt;
[[File:Add-database-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You can define the database name, username and password in the window that appears.  Note that you will need to confirm the password before the database will be created.&lt;br /&gt;
&lt;br /&gt;
[[File:New-database-window.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Changing Password on Existing Database=====&lt;br /&gt;
You can change the password on an existing domain by clicking on &amp;quot;Change Password&amp;quot; for the database you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-change-password-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
You will need to confirm the new password before it will be updated.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Removing a Database=====&lt;br /&gt;
You can remove a database by clicking on the red &amp;quot;Delete&amp;quot; button next to the database you wish to remove.  You will be prompted to confirm deletion before the database is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Database-delete-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=====Accessing phpMyAdmin=====&lt;br /&gt;
You can access phpMyAdmin for your databases by clicking on the &amp;quot;phpMyAdmin&amp;quot; button below the database list.&lt;br /&gt;
&lt;br /&gt;
[[File:Phpmyadmin-button.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Installing WordPress===&lt;br /&gt;
If you would like to install WordPress on your Managed Cloud Server, you can find instructions on how to do so [Installing_WordPress_on_your_Managed_Cloud here]&lt;br /&gt;
&lt;br /&gt;
==Hosting==&lt;br /&gt;
Under the hosting section, you can see the various website hosting services currently active on the account.&lt;br /&gt;
&lt;br /&gt;
With Shared Web Hosting services, you will be able to see which server your website is located on, the primary username associated with that hosting package, and a Login button that will take you directly to your website control panel.&lt;br /&gt;
&lt;br /&gt;
==DNS==&lt;br /&gt;
The DNS section will show you the DNS you&#039;ve added for the domains you manage.  Domains you have associated with your hosted cloud servers will appear here automatically, but you can further add additional domains if you wish.&lt;br /&gt;
&lt;br /&gt;
Clicking on a domain in the list to the left will show you the current record for that domain.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Add Domain===&lt;br /&gt;
To add DNS for a domain, you can click on the &#039;+ Add Domain&#039; button&lt;br /&gt;
&lt;br /&gt;
[[File:Add-domain-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;New Zone&#039; window.  Here, you can input the domain name for the domain you wish to manage, and the TTL for the record.  By default, the TTL is 3600.&lt;br /&gt;
&lt;br /&gt;
When you&#039;re satisfied with what you&#039;ve entered, click on the &#039;Create&#039; button.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Edit Domain===&lt;br /&gt;
With the domain selected on the left hand side, you will be able to click on the &#039;Edit&#039; button next to the domain name on the right hand side.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-domain.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the &#039;Edit Zone&#039; window, which looks nearly identical to the New Zone window.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Add New DNS Record====&lt;br /&gt;
With the domain selected on the left hand side, you can click on the green &#039;+&#039; symbol at the bottom of the DNS section.&lt;br /&gt;
&lt;br /&gt;
[[File:Add-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will bring up the New Record window, where you can input the record name, as well as determine what type of record it is.&lt;br /&gt;
&lt;br /&gt;
Choosing the type of record will update the window to bring up fields appropriate to the type of record you&#039;re wishing to add.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;A Record&#039;&#039;&#039;&lt;br /&gt;
A records allow you to point a hostname to a specific IP address.  Clicking on &#039;&#039;&#039;A&#039;&#039;&#039; will bring up an IP Address field, allowing you to point the record to a specific IP address.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;TXT Record&#039;&#039;&#039;&lt;br /&gt;
TXT records allow you to specify an arbitrary string of text to be associated with a designated hostname.  Clicking on &#039;&#039;&#039;TXT&#039;&#039;&#039; will bring up a Text field, allowing you to specify the text string you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;AAAA Record&#039;&#039;&#039;&lt;br /&gt;
AAAA records are used to associate IPv6 addresses with the designated hostname.  Clicking on &#039;&#039;&#039;AAAA&#039;&#039;&#039; will bring up an IPv6 Address field, allowing you to specify the IPv6 address you want associated with the record.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;CNAME Record&#039;&#039;&#039;&lt;br /&gt;
CNAME records are used to alias one host name to another (most common example being www.domain.tld to domain.tld).  Clicking on &#039;&#039;&#039;CNAME&#039;&#039;&#039; will bring up an Aliased Domain field, allowing you to specify which domain you want the designated hostname to point to.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;SRV Record&#039;&#039;&#039;&lt;br /&gt;
SRV records are used to locate specific protocols on a domain.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;NS Record&#039;&#039;&#039;&lt;br /&gt;
NS records are used to delegate DNS to the listed name servers.  Clicking on &#039;&#039;&#039;NS&#039;&#039;&#039; will bring up a name server field.  By default, all DNS will come with name server records populated.&lt;br /&gt;
&lt;br /&gt;
* &#039;&#039;&#039;MX Record&#039;&#039;&#039;&lt;br /&gt;
MX records allow you to determine which mail host will control your email.  Clicking on &#039;&#039;&#039;MX&#039;&#039;&#039; will bring up Target and Priority fields.  The target is the url of the host managing your email (XMission&#039;s MX record is mx.xmission.com).  The priority determines the order in which your mail servers will be processed.  A lower priority is always processed first.&lt;br /&gt;
&lt;br /&gt;
====Edit/Remove Existing DNS Record====&lt;br /&gt;
You can edit a DNS record by clicking on the &amp;quot;Edit&amp;quot; button next to the record you wish to edit.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This will change the existing record into editable text boxes you can update.  When you are satisfied with your changes, click the blue &amp;quot;Save&amp;quot; button.&lt;br /&gt;
&lt;br /&gt;
[[File:Edit-dns-fields.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A DNS record can be removed by clicking on the red &amp;quot;Delete&amp;quot; button next to the dns record you want to remove.  You will be prompted to confirm the deletion before it is removed.&lt;br /&gt;
&lt;br /&gt;
[[File:Delete-dns.png]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Account Home}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Services}}&lt;br /&gt;
&lt;br /&gt;
{{:XMission Control Panel/Billing}}&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
	<entry>
		<id>https://wiki.xmission.com/index.php?title=File:Wordpress-sucuri-activate.png&amp;diff=9116</id>
		<title>File:Wordpress-sucuri-activate.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.xmission.com/index.php?title=File:Wordpress-sucuri-activate.png&amp;diff=9116"/>
		<updated>2018-01-22T21:16:48Z</updated>

		<summary type="html">&lt;p&gt;Envy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Envy</name></author>
	</entry>
</feed>