Skip to content

Mini-Howtos

How to Login to cPanel Accounts via WHM?

As a reseller, you have full control over all your websites. You can even log in to the cPanel of one of your domains without having to know the password of the account.

You may even log in to a cPanel account when it is suspended.

Example

  1. Login to the WHM server of your reseller account.
  2. From the left menu click on the "List Accounts" item.
  3. On the right side, you should now have a list of all your domains.
  4. Next to each domain, there is a cPanel icon.
  5. In order to log in to the cPanel of a domain without entering its password, you should simply click on the cPanel icon of that domain.

The following video demonstrates the above steps:

How I See the List of IP Addresses Assigned to me?

  1. Login to your WHM reseller account.
  2. Locate the "Smart SEO Hosting" section within the left menubar.
  3. Click on "IP Manager".
  4. Now you should see a list of your domains on the right (main panel).
  5. Select one the domain (or username of the domain). It does not really matter which domain you pick.
  6. You will see the current IP information of the domain is displayed next to the domain.
  7. Move down the page and click on "Change IP address". Do not worry you are not going to change the IP.
  8. In the new page, you should see a dropdown with the list of all your SEO IPs.

How to increase php memory limit?

To increase php memory limit in php.ini please follow these steps:

  1. Login to the cPanel of your domain. (This is the cPanel of that domain not the main WHM account)
  2. Click on "Select PHP Version"
  3. Change to PHP version to anything that is not native and click on "Set as Current"
  4. Now from the top right side click on "Switch to PHP Setting"
  5. Now from the list click on the value next to memory_limit and change it.
  6. Click on Apply
  7. Click on Save

How to increase maximum upload limit in php.ini?

To increase maximum upload limit in php.ini please follow these steps:

  1. Login to the cPanel of your domain. (This is the cPanel of that domain not the main WHM account)
  2. Click on "Select PHP Version"
  3. Change to PHP version to anything that is not native and click on "Set as Current"
  4. Now from the top right side click on "Switch to PHP Setting"
  5. Now from the list click on the value next to upload_max_filesize and change it.
  6. Click on Apply
  7. Click on Save

How to enable mcrypt on your domain?

To enable mcrypt for you domain please follow these steps:

  1. Login to the cPanel of your domain. (This is the cPanel of that domain not the main WHM account)
  2. Click on "Select PHP Version"
  3. Change to PHP version to anything that is not native and click on "Set as Current"
  4. Then from the list of modules check "mcrypt" and click on Save

How to enable mbstring on my domain?

To enable mcrypt for you domain please follow these steps:

  1. Login to the cPanel of your domain. (This is the cPanel of that domain not the main WHM account)
  2. Click on "Select PHP Version"
  3. Change to PHP version to anything that is not native and click on "Set as Current"
  4. Then from the list of modules check "mbstring" and click on Save

How to force https using .htaccess?

In order to force https for all your pages you need to add the following lines to your .htaccess file:

RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://www.example.com/$1 [R=301,L]

Important

Don't forget the . character in the beginning of the .htaccess file name.