Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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>
share|improve this question
In debug = 2; can you post the query times for the db that come up at the bottom of the page? They should be under 5ms if the DB is on localhost (godaddy server) - or around 30ms for remotely hosted. – Shaz Amjad Nov 2 '11 at 10:17
I've moved the site off GoDaddy, but the database was not "localhost" even though it was on GoDaddy as well - they give you a connection string to use. I have to assume it was rewrite - my other sites used the same databases from GoDaddy without issues - the only difference that I can think is that CakePHP uses rewrites, and my other sites don't. – Dave Nov 2 '11 at 12:37
Did you use apache rewrite rules on your other sites with godaddy? – Ivo Nov 4 '11 at 11:29

5 Answers

up vote 3 down vote accepted

Don't know what the reason is, but I moved my files to another host and voila - works fine / runs fast. I'm leaving the question open for a few days to see if anyone wants to post a more specific answer with reasons, but - sure enough - something to do with GoDaddy.

Update:

I've since built many CakePHP sites on other hosts and have not had any problems. So - I still believe this was something to do with GoDaddy servers/settings.

share|improve this answer

I haven't looked into CakePHP 2 but CakePHP 1.3 has a default behaviour of (mostly) selecting way too much models/relations.

Say you just want to select the name of the currently logged in user:

$this->User->findById(1);

Depending on your entity relations CakePHP joins tons of other tables (usergroups, permissions, logtables, sessions, articles, etc.) while performing the query.

Be sure to set "recursive" to the lowest possible value: http://book.cakephp.org/2.0/en/models/retrieving-your-data.html

share|improve this answer

A few things to try:

  • A decent host (Godaddy... seriously?)
  • Ensure debug is set to 0: Configure::write('debug', 0); in app/Config/core.php
  • Use APC for caching (if apc is available.. it may not be on godaddy)
  • Query optimisation: What do your finds look like? Are they generating select * ? if so, try limiting the fields that are returned
  • How are you caching your database calls? Try a read-through cache
share|improve this answer
GoDaddy isn't the problem - my other GD sites run fine. Debug is set to whatever the normal dev mode is. No caching that I've turned on, but I can't imagine it has anything to do with that since it's a totally 100% empty page. The queries are to tables with only around 8-10 records, and recursive is set to -1. LITERALLY, even a blank page with nothing - empty layout and empty view takes from 6.5 to 12 seconds. – Dave Oct 29 '11 at 20:58
1  
I tried with both debug as 2 and 0 - slow either way. – Dave Oct 30 '11 at 4:03
1  
Do you get the same performance issues when you run it locally? If you don't it's likely an issue with the way Godaddy have set up there servers. I had a similar problem with the otherwise excellent One.com - was a problem with the server farm my site hosted on. – RichardAtHome Oct 31 '11 at 14:40
Richard - no problem running it locally or on any other host I've tried. I assume you're right - something with their servers. – Dave Nov 7 '11 at 17:54

Without any further information I would put my money on a failing cache. CakePHP really caches a lot of stuff, and I've seen cases of a cache 'silently' failing in the past that would add seconds to the response times (especially the internationalization functions are horribly slow uncached). And when you say that it does run fast on another host.. Well, check the write-permissions on your app's /tmp folder on GoDaddy.

You could also try disabling rewriting to see if that fixes it; running Cake without rewrites is not too pretty, but at least it will tell you if it's Cake or Apache that's messing things up.

share|improve this answer
Write-permissions are fine - it warns you if they're not. And the cache would slow it down by 11+ seconds on a completely empty page? – Dave Nov 4 '11 at 14:06
1  
Well, I never tried a completely empty page, but I had APC silently failing in the past turning a small page into an absolute beast, so it's possible.. If your cache is working fine I don't know what causes the problem, you'd have to do some manual profiling. – Elte Hupkes Nov 7 '11 at 10:34
Thanks for the insight, Elte - I guess I'm looking for "Why would it work on every server EXCEPT GoDaddy? Something they're doing specifically that would make me want to go with someone else (like I've now done) – Dave Nov 7 '11 at 17:52

Try the following:

Make sure your apache webroot is set to the app/webroot/ folder, including the trailing slash. Then make the following change to the .htaccess file in that folder.

<IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteRule ^(.*)$ /index.php/$1 [QSA,L]
</IfModule> 

Notice I removed the RewriteBase and moved the / to the front of index.php - also, try turning debug to 0 in your core.php and click through the site making sure to hit each action more than once if you can. Once the default caching has happened does the site perform any better?

share|improve this answer
tried - no luck :( – Dave Nov 4 '11 at 14:08
I would have godaddy try moving you to a different cluster maybe? – Abba Bryant Nov 4 '11 at 18:28
They won't make any changes because according to them "it's a coding issue, not a GoDaddy issue". – Dave Nov 4 '11 at 19:48
Hook up debug kit, make sure it is the first component loaded in the AppController and look at the tab with the render times for the various stages of the app. Does it indicate anything in particular that is taking a huge amount of the time? – Abba Bryant Nov 12 '11 at 4:36

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.