Author's posts

How to allow outgoing connection to a specific IP address?

In order to open an outgoing connection to a specific IP you need to add that IP and the IP’s mask to the list of allowed IPs. To do that -click on the Add IP Address button and then type the IP address in the ‘IP/mask:’ field of the form. Also, if you want to …

Continue reading

How to disable the Crontab email alert ?

If you have, for example, a cronjob executed every 2 minutes, this means that you will receive an email with the cron result every 2 minutes. To prevent the sending of email notification, add any one of the following lines at the end of each cronjob command: >/dev/null 2>&1 or &> /dev/null Example: /usr/bin/php /home/www/my-best-domain.com/mail.php …

Continue reading

How to create a Cron job ?

To set up a cronjob you will need to press the “Create a New Cronjob” button and set a few parameters: time schedule, execution command and the email where the cronjob result notifications will be sent to. Experience level – you can choose between Standard or Advanced level of experience – this is how you …

Continue reading

How to use different PHP versions for your websites?

In case that some of your applications require PHP 4 and others need PHP 5, here is an easy solution for you: Let’s say that your account is set to use PHP 4 and one of your sites runs only on PHP 5. To set the PHP 5 environment for a specific domain, go to …

Continue reading

How the edit your account’s php.ini settings?

There are two different ways to edit the php.ini for your account.   By default, the editing options are set in Basic mode where you can easily switch on and off all important PHP settings. To save your changes you need to use the “Save Changes” button. If an error occurs, you can always restore …

Continue reading