Monthly Archives: July 2010

Synchronizing Folders using Rsync

This is an alternative to the “mv” command (move) or cp (copy) but slightly with a added feature of doing it remotely from server to another server. Local Server rsync -avzp /source-address/* /destination-address/ Remote Server rsync -avzp -e ‘ssh -p … Continue reading

Posted in Linux Tutorial | Leave a comment

Compile PHP 5.3 via CustomBuild in Direct Admin

This is the step on how to compile your PHP into the latest version (or vice versa, according to your preferences) using CustomBuild in Direct Admin servers. Note: This same procedure also can be applied with any other supported modules … Continue reading

Posted in Linux Tutorial | Leave a comment

Adding multiple alternative SMTP Port in Direct Admin

Whereas in Direct Admin, things will done in a manual way. Ssh into the server and type: vi /etc/exim.conf Try to find “daemon_smtp_ports” and then you may add/edit the line to look like this: 25 : 587 : 26 The … Continue reading

Posted in Linux Tutorial | Leave a comment

Adding multiple alternative SMTP Port in cPanel

By default, cPanel only support one additional alternative SMTP port. However, if you need multiple port, follow the steps below: 1) Disable “exim on another port” in WHM -> Service Manager 2) Go to WHM-> Exim Configuration Editor -> Advanced … Continue reading

Posted in Linux Tutorial | Leave a comment

Custom php.ini on suPHP using .htaccess

Remove the lines that begin with “php_value” and “php_flag”. You will need to move these files to a file named php.ini and upload php.ini into your public_html directory. Then, add the following line into the .htaccess file in your public_html: … Continue reading

Posted in Linux Tutorial | Leave a comment