In cPanel server if you are getting the following error when restarting exim, then follow this steps: # /etc/init.d/exim restart Shutting down clamd: [FAILED] Shutting down exim: [ OK ] Shutting down spamd: [ OK ] Starting clamd: LibClamAV Error: cli_dbgets: Invalid data or internal…
Author: Heba Habeeb
How to open alternate SMTP port 26 on Plesk server
Follow the below pasted steps will help you to open An alternate SMTP port(26) on Plesk server. 1. First create a new entry for the alternate port in xinetd # cd /etc/xinetd.d # cp smtp_psa smtp_psa_p26 2. Modify the newly…
How to create Email Account in Webmin.
Webmin is a free control panel for webservers. Here I am explaining the way to create a new email account for a domain under your server via webmin control panel.
How to install IonCube loader on server.
IonCube is a PHP module extension that loads encrypted PHP files, and speeds up web pages that are being displayed. It is often required for a lot of PHP-based applications.
Managing PHP extensions (cPanel)
Php extensions means additional modules that we need to run/execute with an already installed PHP on server. No need to run easyapche to install/uninstall modules like zend optimizer,EAccelerator, IonCubeLoader, SourceGuardian, PHPSuHosin etc. You can use the command scripts/phpextensionmgr to do…
Disabling Magic Quotes using .htaccess file
Magic Quotes is a process that automatically escapes incoming data to the PHP script. It’s preferred to code with magic quotes off and to instead escape the data at runtime, as needed. We can simply turn OFF magic_quotes and magic_quotes_gpc…
How to allow mysql client to access remote mysql databases
Little details first. What is a database and mysql ? Databases are collections of data. Mysql is one of the available programs which lets you store and retrieve data efficiently. Mysql servers can be accessed by programming languages like php,perl,python,java…