I have multiple sites on the same hosting account, and they all run really fast. But now I've started my first CakePHP (2.0 stable) site hosted on this account, and it runs CRAZY-slow.
I'm talking 6.5 to 12 seconds to just load a static/empty 20KB homepage.
The only modifications I did were tweaking the .htaccess files per instructions here: http://book.cakephp.org/2.0/en/installation/advanced-installation.html?highlight=godaddy (htaccess code below) by adding Rewrite Base / (which got the site to work in the first place).
GoDaddy tech guys spent 20 minutes while on the phone with me running lots of tests and assured me the server itself and the database are both running fine/fast (which I tend to believe since my other sites on the same server are coming up really quickly).
/mysite/.htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteRule ^$ app/webroot/ [L]
RewriteRule (.*) app/webroot/$1 [L]
</IfModule>
/mysite/app/.htaccess
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteBase /
RewriteRule ^$ webroot/ [L]
RewriteRule (.*) webroot/$1 [L]
</IfModule>
/mysite/app/webroot/.htaccess
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.*)$ index.php/$1 [QSA,L]
</IfModule>