Jump to content

Page load as php parses it? Apache setting or PHP?


dagnasty

Recommended Posts

PHP can buffer and compress/zip output, web servers can buffer (some won't send any or the last block of output until a script ends) and compress/zip output (compression done by php or the web server requires the last of the output to have been produced so that the compression can be completed), and browsers buffer (require minimum length content before displaying it) and won't render some output until ending tags are received. Each of these things can either prevent output from being sent to the browser or prevent it from being displayed until the output has been completely produced.

 

Is this long loading time something that you can expect to always exist or is it due to non-optimum code that should be fixed?

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.