|
|
Written by WebAdmin
|
|
Wednesday, 20 February 2008 |
|
Often you may have a domain which you do not use or you just want to put up one page.
By parking your domain on your account you can add a page on your domain and it will keep your domain active. It is also handy if your current domain registrar asks you to move your domain away from them. |
|
Last Updated ( Wednesday, 20 February 2008 )
|
|
|
Written by WebAdmin
|
|
Wednesday, 20 February 2008 |
|
Addon domains enable you to host more than one domain on your account.
For example, if your main account domain is mysite.com, and you have another domain called mysite.net, you can use one of your addon domains to add this domain and direct it to a folder on your webspace.
This way you are able to host multiple domains on one package at no extra cost. |
|
Last Updated ( Wednesday, 20 February 2008 )
|
|
|
Written by WebAdmin
|
|
Wednesday, 20 February 2008 |
|
Open Outlook and click Tools and choose Email Accounts.
Then choose "Add a new e-mail account".
Choose the method you would like:
IMAP --> This will keep your email on the server and download headers upon request. This means you must be online to view your email at any time.
POP3 --> This will download the email to your computer and delete it from the server. You can download your email and then disconnect from the internet if you wish, and read your emails offline.
Click Next.
Your Name: This can be anything you wish.
E-Mail address: The email address you are setting up.
Logon Information:
Username: For your default account, this is just your username. For any subsequent mailbox setup, it is
This e-mail address is being protected from spam bots, you need JavaScript enabled to view it
where domain.com is your domain.
Password: your password for the mailbox
Incoming: mail.yourdomainname.com
Outgoing: mail.yourdomainname.com
If you experience issues with this, you should set the SMTP to your ISP's SMTP server such as smtp.yourisp.net.
Click Next.
This should then set the account up with your computer. |
|
Last Updated ( Wednesday, 20 February 2008 )
|
|
|
Written by WebAdmin
|
|
Tuesday, 22 January 2008 |
If your site occurs a 500 Internal Server Error the most common are php settings in your .htaccess file. They will typically look like this:
php_value "register_globals" "1"
To fix this simply create a file named php.ini in your public_html folder, and remove the lines from the .htaccess file and paste them in your php.ini file. Afterwards modify them to something similar as this:
register_globals = On
If this still does not fix your problem, check the permissions of your files and folders. On a PHPSuExec server you cannot have any files with 777 permissions. For security reasons you should keep all folders at 755 and files at 644. Some applications do require that a file to have greater permissions than 644, but make sure you change the permissions on that file only. |
|
Last Updated ( Tuesday, 22 January 2008 )
|
|
|
How do I increase the PHP Memory Limit? |
|
|
|
|
Written by WebAdmin
|
|
Tuesday, 22 January 2008 |
|
Create a blank text file called php.ini (if one doesn't already exist). Put the following line in it: memory_limit = 16M Replace 16M with the size in Megabytes you would like the limit set to. Then place the file in your public_html folder (or deeper) and that's it. |
|
Last Updated ( Wednesday, 23 January 2008 )
|
|
|
|