Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

In-Portal uses output compression (used for the web) to speed up page loading. Internally PHP output buffering is used for that.

The same output buffering is also enabled for CLI operations (e.g. /tools/cron.php and /tools/run_event.php script). As a result, their output is shown only after the script has finished executing and not in real-time.

Solution

PlaceĀ define('SKIP_OUT_COMPRESSION', 1); code before application initialization inĀ /tools/cron.php and /tools/run_event.php scripts.

Related Tasks

  • No labels