Version 4 supported
This version of Silverstripe CMS is still supported though will not receive any additional features. Go to documentation for the most recent stable version.

Resource usage

Silverstripe CMS tries to keep its resource usage within the documented limits (see the server requirements).

These limits are defined through memory_limit and max_execution_time in the PHP configuration. They can be overwritten through ini_set(), unless PHP is running with the Suhoshin Patches or in "safe mode".

Most shared hosting providers will have maximum values that can't be altered.

For certain tasks like synchronizing a large assets/ folder with all file and folder entries in the database, more resources are required temporarily. In general, we recommend running resource intensive tasks through the command line, where configuration defaults for these settings are higher or even unlimited.

Silverstripe CMS can request more resources through Environment::increaseMemoryLimitTo() and Environment::increaseTimeLimitTo() functions.

use SilverStripe\Core\Environment;

public function myBigFunction()
{
    Environment::increaseTimeLimitTo(400);
}