mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-21 23:43:17 +01:00
"switch of output buffering (switched on in header), as otherwise we run against memory_limit, for big files
only do it if no output_handler is set in php.ini, as at least with zlib.output_handler it stalls ... if (!ini_get('output_handler')) ob_end_flush(); "
This commit is contained in:
parent
5e7b1d3fd6
commit
3cc9330725
@ -90,7 +90,8 @@ catch (egw_exception_no_permission_app $e)
|
|||||||
$headertime = microtime(true);
|
$headertime = microtime(true);
|
||||||
|
|
||||||
// switch of output buffering (switched on in header), as otherwise we run against memory_limit, for big files
|
// switch of output buffering (switched on in header), as otherwise we run against memory_limit, for big files
|
||||||
ob_end_flush();
|
// only do it if no output_handler is set in php.ini, as at least with zlib.output_handler it stalls ...
|
||||||
|
if (!ini_get('output_handler')) ob_end_flush();
|
||||||
|
|
||||||
$webdav_server = new vfs_webdav_server();
|
$webdav_server = new vfs_webdav_server();
|
||||||
$webdav_server->ServeRequest();
|
$webdav_server->ServeRequest();
|
||||||
|
Loading…
Reference in New Issue
Block a user