|
The only way I know how to speed up PHP code is to code smart and use planning. The Zend Optimizer I think will help server performance on PHP parsing.
Using ob_gzip will actually slow your php runtime, all it does is compress the output to provide quicker download to your clients browser (in which the browser will have to decompress to render). If you use ob_gzip, make sure you are flushing the output buffer at the end, that might be your cause with the stalling as the client's browser is not receiving the output.
__________________
<mgraphic /> - I don't have a solution but I admire the problem.
|