I'm getting 9 second load times on a very powerful server. Query time is .05 and total php time is 9 seconds. Not good!
I took a look at my list of apache modules and I'm wondering if there's a culprit in the bunch:
Asis
AuthnDefault
Env
Expires
Fileprotect
Frontpage
Headers
Mod SuPhp (especially this one, what does it do? I've never seen this before on our other servers)
Proxy
Version
Bcmath
CHI
Calendar
Curl
CurlSSL
FTP
FileInfo
GD
Iconv
Imap
Magic Quotes
Mbregex
Mysql
Mysql of the system
OpenSSL
POSIX
Path Info Check
Pear
Phar
SQLite3
Sockets
Zip
Zlib
Any ideas?
You probably don't need most of them. You've got 3 choices really:
That said; having a ton of modules loaded on a modern machine usually doesn't hurt much. If you're seeing 9 second processing times, it's something in your code. Profile the code (a simple way is to log messages every major step of the code and look at the time stamps).
You can probably leave them alone in respects to response time. However, it can't hurt to disable them if you know how. Also, consider looking at your apache and mysql configs. That could be part of the problem if you have some nasty queries running.