Title
Code in index.php causes issue on Alpine Docker images
Current Behavior
On running a Docker image with Alpine Linux this error occurred:
Undefined constant "GLOB_BRACE" in /var/www/html/index.php:306
Possible Solution (Optional)
Open index.php
Find line 306
Right now it's saying:
array_map('unlink', glob(UPLOADS_TEMP_FOLDER . '*.{pdf,xml}', \GLOB_BRACE));
Replace that with:
$files = array_merge(
glob(UPLOADS_TEMP_FOLDER . '*.pdf'),
glob(UPLOADS_TEMP_FOLDER . '*.xml')
);
array_map('unlink', $files);
Title
Code in index.php causes issue on Alpine Docker images
Current Behavior
On running a Docker image with Alpine Linux this error occurred:
Possible Solution (Optional)
Open index.php
Find line 306
Right now it's saying:
Replace that with: