How to change SmarterMail SMTP Out IP address

Step 1 – Login to SmarterMail with your user account.   Step 2 – Once logged in, go to Settings.   Step 3 – In the Settings window, select Protocol Settings and click on the SMTP Out tab. Change the Outbound IP settings to your desired settings.   Step 4 – Click Save to apply

How to customize DirectAdmin daily email quota limit

Step 1: SSH into the server Step 2: Type in below command, it will show the daily email quota, simply change the value and save it. However, this setting is a global setting that will affect all the hosting accounts on the same server. vi /etc/virtual/limit If you want to set a different limitation value

How To Enable/Disable Directory Listing Using .htaccess

When accessing any directory (example: http://yourdomain.com/images/) that does not have an index file, all the available folders and files in that directory will be shown. To enable directory listing, you need to add a line of code into .htaccess and place it in your public_html folder.   Step 1: Login into your web server via

Example of PHP mysql_connect

<!–?php $link = mysql_connect(‘localhost’, ‘mysql_user’, ‘mysql_password’); if (!$link) { die(‘Could not connect: ‘ . mysql_error()); } echo ‘Connected successfully’; mysql_close($link); ?–>