diff options
author | rojaro <> | 2009-10-03 00:10:34 +0000 |
---|---|---|
committer | rojaro <> | 2009-10-03 00:10:34 +0000 |
commit | 840718fadba6645f5eb8fe038eecd084d715a581 (patch) | |
tree | 3389238c9c4445aa4d9c195c2bf76f5b6edf4cfa | |
parent | c358b63d2a6cc94c6346ac2b4997414d2a11a18b (diff) |
upped memory limit of phpDocumentor
-rw-r--r-- | buildscripts/PhpDocumentor/phpDocumentor/Setup.inc.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildscripts/PhpDocumentor/phpDocumentor/Setup.inc.php b/buildscripts/PhpDocumentor/phpDocumentor/Setup.inc.php index c1e7095f..b53634de 100644 --- a/buildscripts/PhpDocumentor/phpDocumentor/Setup.inc.php +++ b/buildscripts/PhpDocumentor/phpDocumentor/Setup.inc.php @@ -157,7 +157,7 @@ class phpDocumentor_setup {
phpDocumentor_out("time_limit cannot be set since your in safe_mode, please edit time_limit in your php.ini to allow enough time for phpDocumentor to run");
}
- ini_set("memory_limit","256M");
+ ini_set("memory_limit","1024M");
$phpver = phpversion();
$phpdocver = PHPDOCUMENTOR_VER;
|