Slim Application Error bei Ausführung der Installation

Habe mir die kostenlose Version heruntergeladen, entpackt und bei einem Provider mittels FileZilla hochgeladen.

Beim Aufruf der Domain startet zunächst der Installer, jedoch nach dem ersten “weiter”, dann wenn die “Systemvoraussetzungen” geprüft werden müssten, kommt folgende Fehlermeldung:
Slim Application Error

The application could not run because of the following error:
Details
Type: ErrorException
Code: 8
Message: Undefined offset: 1
File: /var/www/web28438833/html/shopware2/recovery/install/src/Requirements.php
Line: 415
Trace

#0 /var/www/web28438833/html/shopware2/recovery/install/src/Requirements.php(415): Slim\Slim::handleErrors(8, ‘Undefined offse…’, ‘/var/www/web284…’, 415, Array)
#1 /var/www/web28438833/html/shopware2/recovery/install/src/Requirements.php(168): Shopware\Recovery\Install\Requirements->decodeSize(false)
#2 /var/www/web28438833/html/shopware2/recovery/install/src/Requirements.php(117): Shopware\Recovery\Install\Requirements->compare(‘disk_free_space’, false, ‘5 GB’)
#3 /var/www/web28438833/html/shopware2/recovery/install/src/Requirements.php(64): Shopware\Recovery\Install\Requirements->runChecks()
#4 /var/www/web28438833/html/shopware2/recovery/install/src/app.php(189): Shopware\Recovery\Install\Requirements->toArray()
#5 [internal function]: {closure}()
#6 /var/www/web28438833/html/shopware2/recovery/common/vendor/slim/slim/Slim/Route.php(462): call_user_func_array(Object(Closure), Array)
#7 /var/www/web28438833/html/shopware2/recovery/common/vendor/slim/slim/Slim/Slim.php(1326): Slim\Route->dispatch()
#8 /var/www/web28438833/html/shopware2/recovery/common/vendor/slim/slim/Slim/Middleware/Flash.php(85): Slim\Slim->call()
#9 /var/www/web28438833/html/shopware2/recovery/common/vendor/slim/slim/Slim/Middleware/MethodOverride.php(92): Slim\Middleware\Flash->call()
#10 /var/www/web28438833/html/shopware2/recovery/common/vendor/slim/slim/Slim/Middleware/PrettyExceptions.php(67): Slim\Middleware\MethodOverride->call()
#11 /var/www/web28438833/html/shopware2/recovery/common/vendor/slim/slim/Slim/Slim.php(1271): Slim\Middleware\PrettyExceptions->call()
#12 /var/www/web28438833/html/shopware2/recovery/install/index.php(74): Slim\Slim->run()
#13 {main}

Ich habe es zuerst mit PHP 7.0 und nun mit PHP 5.6 versucht. mod_rewrite on, memory_limit 384 MB, max_execution_time 300, alle Ordner haben die Rechte 0755, alle Dateien 0644.
Betriebssystem Linux, Verwendeter Browser: FireFox

wo liegt der Fehler, was muss ich ändern?

Hi,

schau mal hierhttps://forum.shopware.com/discussion/comment/114113/#Comment_114113

Sebastian

leider finde ich die " System.xml " nicht, welche ich laut dem angegebenen Link ändern müsste

ich habe in der "recovery/install/src > “Requirements.php” gefunden:

  * Checks the disk free space
     *
     * @return bool|string
     */
    private function checkDiskFreeSpace()
    {
        if (function_exists(‘disk_free_space’)) {
            // Prevent Warning: disk_free_space() [function.disk-free-space]: Value too large for defined data type
            $freeSpace = @disk_free_space(__DIR__);

            return $this->encodeSize($freeSpace);
        } else {
            return false;
        }
    }

ist das gemeint?