Search results

  1. K

    Steps to create email account in cpanel

    You just have to follow bllow steps to create email account: Login to cpanel. Here click on "Email Accounts" under "Emails" section. Now you will find "Create" button, click on it. You have to enter all the required details. At last, click on "Create" button.
  2. K

    Steps to add Mail-Domain/PostOffice in MailEnable

    You can follow below steps to add Mail Domain or PostOffice in MailEnable. First right click on “Messaging Manager”. Here you will see “Create PostOffice” click on it. After that a new Dialogue box will appear where you can add Post Office Name. In those available fields you have to enter...
  3. K

    Steps to install SSL certificate on MailEnable

    MailEnable is a Windows based mail software which helps to create and manage email account. If you want to install SSL on MailEnable then you can check below steps: Here we are assuming that you have already generated CSR and installed SSL certificate in IIS. After that open MailEnable. Now...
  4. K

    Steps to setup IMAP Account in Mac Mail

    If you want to configure IMAP email account in Mac Mail email client then you cancheck below steps. For that first you have to create email account but if you already have email account then there is no need to do anything. To configure your email account in Mac, first open Mac Mail. Now click...
  5. K

    Steps to send .eml files via Emails

    If you are trying to send .eml file via email but getting ‘Not allowed extension file’ error then it means you first have to allow .eml file extensions. You can follow below steps: Login to your server via SSH. Now copy file /etc/cpanel_exim_system_filter to...
  6. K

    Steps to setup POP3 account in Mac mail

    You can follow below steps to configure POP3 account in Mac Mail email client. For that it is must to have email account or you can create email account in cpanel. To configure your email account in Mac, first open Mac Mail. Now click on “File” menu and then you will find “Add Account”, click...
  7. K

    Resolved SMTP Error (-1): Connection to server failed in RoundCube

    If you are getting this error then you just have to follow below steps: Method 1 First check your exim is running or not, you can check this after login into SSH you have to run below command in terminal.. # service exim status If exim is showing disabled then you will get below output. You...
  8. K

    Resolved Outlook error “0x800CCC0E”

    Most of the times you will get this error while configuring and sending emails via outlook. The main reson for this error is outlook is not authenticating your email account with server. You can follow below steps to resolve this error. Click on Outlook and navigate to Tools >> Account Settings...
  9. K

    Steps to create signature in Mailenable

    You can follow below steps to enable signature in MailEnable. First login to your email account for which you want to create signature. Now click on “options” and in the sidebar you will get email tab. Here click on “Email Signature”. You will find an option “Enable Email Signature” check it...
  10. K

    What is Email Routing in cpanel?

    With Email Routing option you can configure the domain’s incoming mail which system routed. If your Email Routing settings is not configured properly then it will affect receiving email. You can contact your hosting provider regarding this. Now you can select the desired option for your domain...
  11. K

    What is Greylisting in cpanel?

    Greylisting helps to prevent spamming for your email account. After enabling greylisting server rejects unknown emails and after sometime try to send that email again. Greylisting distinguish incoming emails by triplets, and triplet contains the sender’s IP address, recipient’s address and IP...
  12. K

    What are meta tags?

    Meta tags define meta data or information about the page. Metadata is data about data. You always have to create meta tags inside <head> tag, you will not find metadata on your page, but it can be read by machine only. You can find search engines and other web services related details which is...
  13. K

    Steps to view running processes of user in SSH

    You can use below command to check currently running process. From ps command you can check the list of processes and for currently running processes you can use below command: # ps –aufx For a particular user: # ps -aufx | grep username For particular service: # ps -aufx | grep service_name
  14. K

    Command to check hidden files via SSH

    Hidden files are files which cannot be listed directly with ls command, mainly hidden files are used to execute the script about any services. You can run below command to check hidden files: ls –a
  15. K

    Command to sort the list of files/folders according to time

    As we know, ls command is used to list the files/folders and if you want to use ls command to list files/folders according to time then you can run below command: # ls –lt
  16. K

    In Linux or Unix enable apache file and directory indexing

    You can enable apache file and directory indexing by making changes in Apache config file: You can use directory options in Apache configuration file, httpd.conf file is an Apache configuration file. You can add below code in that file or you can also add that code in /etc/apache2/apache2.conf...
  17. K

    Steps to install Nginx on CentOS 7

    Nginx is a web server which is used for various different works but mostly used for reverse proxy or HTTP cache. But it can be also used for web server, load balancing, media streaming, etc. You can follow below steps to install Nginx: First you have to run below command to install Nginx...
  18. K

    Resolved error “Starting sshd: Missing privilege separation directory: /var/empty/sshd”

    Error: Starting sshd: Missing privilege separation directory: /var/empty/sshd Error Message: While starting the service, it will look for the symlink (softlink) to the 'localtime' and if it is unable to find then will result in the following error message. Solution: For the solution you...
  19. K

    Steps to disable email notification in cron job

    When then cron job runs everytime we get email notification, what if we want to disable this notification. Let’s see how to do this: You have to add this simple line in your cron job command. >/dev/null 2>&1 You can check below example. 15 * * * Mon ${HOME}/exampletask.sh > /dev/null 2>&1
  20. K

    Steps to upgrade Wordpress plugin

    You can upgrade your Wordpress plugin with 2 ways. Upgrade plugin with One-Click: In this you can easily upgrade your plugin automatically. For that you can follow below steps: Login to Wordpress >> Navigate to update section >> Here you can upgrade your plugin after selecting it. Enable...
Top