# Slim Application Error bei Ausführung der Installation

**URL:** https://forum.shopware.com/t/slim-application-error-bei-ausfuhrung-der-installation/43189
**Category:** Installation/Einstieg
**Created:** [27. Januar 2017 um 16:48 UTC](https://forum.shopware.com/t/slim-application-error-bei-ausfuhrung-der-installation/43189 "2017-01-27T16:48:44Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![Thora](https://avatars.discourse-cdn.com/v4/letter/t/e9a140/32.png) [@Thora](https://forum.shopware.com/u/Thora)
#### Post date: [27. Januar 2017 um 16:48 UTC](https://forum.shopware.com/t/slim-application-error-bei-ausfuhrung-der-installation/43189/1 "2017-01-27T16:48:44Z")

</div>

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?

---

<div class="post-metadata">

### Author: ![SebastianKloepper](https://dub1.discourse-cdn.com/flex013/user_avatar/forum.shopware.com/sebastiankloepper/32/21435_2.png) [@SebastianKloepper](https://forum.shopware.com/u/SebastianKloepper)
#### Post date: [27. Januar 2017 um 17:38 UTC](https://forum.shopware.com/t/slim-application-error-bei-ausfuhrung-der-installation/43189/2 "2017-01-27T17:38:04Z")

</div>

Hi,

schau mal hierhttps://forum.shopware.com/discussion/comment/114113/#Comment\_114113

Sebastian

---

<div class="post-metadata">

### Author: ![Thora](https://avatars.discourse-cdn.com/v4/letter/t/e9a140/32.png) [@Thora](https://forum.shopware.com/u/Thora)
#### Post date: [27. Januar 2017 um 17:55 UTC](https://forum.shopware.com/t/slim-application-error-bei-ausfuhrung-der-installation/43189/3 "2017-01-27T17:55:37Z")

</div>

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

---

<div class="post-metadata">

### Author: ![Thora](https://avatars.discourse-cdn.com/v4/letter/t/e9a140/32.png) [@Thora](https://forum.shopware.com/u/Thora)
#### Post date: [27. Januar 2017 um 18:26 UTC](https://forum.shopware.com/t/slim-application-error-bei-ausfuhrung-der-installation/43189/4 "2017-01-27T18:26:16Z")

</div>

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

&nbsp; \* Checks the disk free space  
&nbsp;&nbsp;&nbsp;&nbsp; \*  
&nbsp;&nbsp;&nbsp;&nbsp; \* @return bool|string  
&nbsp;&nbsp;&nbsp;&nbsp; \*/  
&nbsp;&nbsp;&nbsp; private function checkDiskFreeSpace()  
&nbsp;&nbsp;&nbsp; {  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if (function\_exists(‘disk\_free\_space’)) {  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; // Prevent Warning: disk\_free\_space() [function.disk-free-space]: Value too large for defined data type  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $freeSpace = @disk\_free\_space(\_\_DIR\_\_);

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

ist das gemeint?
