How can I find out about the php settings for my hosting?
Create a simple file called information.php in the root of your ftp directory like this:
<?php phpinfo(); ?>
Go to http://[your-domain]/information.php
It will tell you all the php settings on the server.
For more information visit: http://www.php.net/phpinfo

