<?PHP
 
$api_timeout = "60";
// API timeout limit in minutes (max. 180), timeout cannot be set if PHP safe_mode is on.
 
$api_memory = "256";
// API memory limit for backup processes (in MB), cannot be set on all systems (set to 0 to disable).
 
ini_set('memory_limit', '256M');
// Set PHP memory limit to 256MB (API version 1.3 and below).
 
?>