Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-mw committed May 15, 2023
1 parent 02c8ed0 commit 1a87b3c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
$config['is_system'] = true;
$config['categories'] = "other";
$config['position'] = 1;
$config['version'] = '5.3.3';
$config['version'] = '5.3.4';



Expand Down
1 change: 0 additions & 1 deletion generated.txt

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ class StandaloneUpdateReplacer
$steps_file = $this->newMicroweberPath . DIRECTORY_SEPARATOR . 'replace_steps.json';

$files = $this->getFilesToCopy();
$chunks = array_chunk($files, 200);
// some servers get too many files open error
$chunks = array_chunk($files, 1024);

$json = json_encode($chunks);
file_put_contents($steps_file, $json);
Expand Down

0 comments on commit 1a87b3c

Please sign in to comment.