Hi All,
I recently had to upload a clients site to Easyspace (http://easyspace.com) which wasn't the best experience. Support seem pretty inept with first-line asking "what's a Drupal"? I got passed through to a technical engineer who wasn't much help and stated that even though he couldn't tell any differences between our site install and any other clients who had Drupal running - that they couldn't help me as they don't provide script support.
Anyway, I did a one-click install and compared the differences to get the client site working, here are the differences to hopefully save someone else some time! Note: the site did function, but without clean urls.
In the .htaccess file comment out
"Options +FollowSymLinks"
and place this below:
"Options +SymLinksIfOwnerMatch"
You will also want to set the rewrite base to /
"RewriteBase /"
The default php memory limit is set to 16M, where imagecache requires 96, you can add the following line after "# but the following cannot be changed at runtime."
"php_value memory_limit 96M"
Also the default maximum upload size the server will allow is 2MB, which I pushed to 8 with the following lines (again after "# but the following cannot be changed at runtime."):
"php_value upload_max_filesize 8M
php_value post_max_size 16M"
That's it!