hi,

drupal takes about 5 seconds when i use the admin menu to show me new content...that seems rather long considering the server is on my local lan and both machines (client and server) are on low load.

the server runs debian wheezy

is 5 seconds a normal loading time in drupal?

Comments

kitzinger’s picture

no, mine will load in more like half a second

newuser55’s picture

maybe this is debian related, have to check that out.

Jaypan’s picture

The Devel module comes with the ability to log function calls for a page load. I'd use that to find out what's taking so long. 5 seconds is not normal.

newuser55’s picture

http://fs2.directupload.net/images/150419/9jl6swjx.png

"INSERT INTO" operations for the database seems to be the enemy, there are more queries as shown on the image. they used about 50ms each.

after those the operations take 0.x ms, which is probably fine.

but if 1800ms are spent on the highlighted red queries, where do does the rest happen?
3100 - 1800 = 1300 ?

Jaypan’s picture

Someone has used variable_set() in a bad way in your system. This can kill page speed like you are seeing. Disable modules until those go away, so that you can track down where the issue is.