Can I change MX record(s) for a domain?

There are couple of scenarios involving MX records. 1. You want all emails for your domain to go to some outside MX, and no email to be received by your hosting server. If this is the case, you can change the MX from your control panel. 2. You want to continue to receive email at your hosting server but all incoming email to go to those MX for filtering purpose, and that filtering service will forward the mail to your hosting server. For this purpose, you will need to open a support ticket. 3. You have multiple MX records that you want to add to your dns zone. In this case, you will need to open a support ticket. Please advise accordingly in the support ticket that whether (a) you are using those MX for filtering purpose or (b) want to forward all emails there and will get it from there, so techs can make the changes on the server accordingly. Note: After MX changes, please allow a couple of hours for the dns...

I have two index files in public_html directory but Apache is picking one with .html extension. How can I change its order?

Apache’s ‘DirectoryIndex’ directive is used for this purpose. On our servers we have ‘index.html index.htm index.php ….’ order. You can change it according to your choice. Say you want index.php to be loaded by default then you need to add the following line in .htaccess file. DirectoryIndex index.php index.html index.htm The .htaccess file is usually placed under ‘public_html’ directory of your account. If it is not there you can create...

I want my HTML pages be parsed by PHP engine. How can I do it?

In order to parse HTML pages by PHP engine, you need to add the following line in the .htaccess file. => Clients using PHP 4.x should add the following link in .htaccess file AddHandler application/x-httpd-php4 .htm .html => Clients using PHP 5.x should add the following link in .htaccess file AddHandler application/x-httpd-php5 .htm .html The .htaccess file is usually placed under ‘public_html’ directory of your account. If it is not there you can create...

PHP4 end of life announcement, what do I need to do?

php.net has posted this announcement 13-Jul-2007: ————– Today it is exactly three years ago since PHP 5 has been released. In those three years it has seen many improvements over PHP 4. PHP 5 is fast, stable & production-ready and as PHP 6 is on the way, PHP 4 will be discontinued. The PHP development team hereby announces that support for PHP 4 will continue until the end of this year only. After 2007-12-31 there will be no more releases of PHP 4.4. We will continue to make critical security fixes available on a case-by-case basis until 2008-08-08. Please use the rest of this year to make your application suitable to run on PHP 5. For documentation on migration for PHP 4 to PHP 5, we would like to point you to our migration guide: http://www.php.net/manual/en/migration5.php ———— As you may already know that we provide both php4 and php5 alongside each other. We will continue to provide php4 for one more year, so that all our clients can make the conversion to php5. After that default php will be php5 on all servers. Please test all your applications on php5 asap. Some applications may already work with php5 but following the migration guide will help in making those changes smoothly. How can you test your applications in php5? If you are on our shared/sdx/reseller server (or if your server/vps is setup like our cpanel shared servers) with both php4 and php5, then you can activate and use php5 alongside php4 to test your applications. Please read this KB: http://www.jaguarpc.com/support/kbase/710.html or You can setup your own test environment using XAMPP...