syntax error and

but tar and gzip and bzip are not yet rewritten
This commit is contained in:
gtbu 2025-07-20 20:36:02 +02:00
parent 5cc9d11a11
commit 1024aab774
2 changed files with 4 additions and 2 deletions

View file

@ -57,8 +57,10 @@ class Port{
$this->export_dir = $dataDir.'/data/_exports';
$this->temp_dir = $dataDir.'/data/_temp';
// @set_time_limit(90);
// @set_time_limit(90);
@set_time_limit(180);
// @ini_set('memory_limit','64M');
@ini_set('memory_limit','256M');
$this->Init();
$this->SetExported();

View file

@ -305,7 +305,7 @@ class Archive{
if( !is_dir($path) ){
$localname = ltrim($localname,'\\/'); //so windows can open zip archives
return $this->php_object->AddFile($path, $localname);
return $this->php_object->addFile($path, $localname);
}