Magento upgrade 2.0 error "Please make sure it is a directory writable by the Web server process."

1
Hallo ik zou graag mijn website willen upgraden naar magento 2.0 om te testen.
Waar het vooral omgaat is dat ik mijn producten en categorieën kan over verhuizen de opmaak van de template enz moet toch opnieuw.
Nu heb ik een migratietool geïnstalleerd op mijn server maar ik krijg de volgende foutmelding.
Weet iemand hoe ik dit kan oplossen? 

Code: Selecteer alles

Application runtime path "/home/jmligh1q/public_html/glowmania21/magento2_data_migration-0.1.24/protected/runtime" is not valid. Please make sure it is a directory writable by the Web server process.
/home/jmligh1q/public_html/glowmania21/magento2_data_migration-0.1.24/yii/base/CApplication.php(293)
[color=#999999]281[/color]             return $this->_runtimePath;
[color=#999999]282[/color]         }
[color=#999999]283[/color]     }
[color=#999999]284[/color] 
[color=#999999]285[/color]     /**
[color=#999999]286[/color]      * Sets the directory that stores runtime files.
[color=#999999]287[/color]      * @param string $path the directory that stores runtime files.
[color=#999999]288[/color]      * @throws CException if the directory does not exist or is not writable
[color=#999999]289[/color]      */
[color=#999999]290[/color]     public function setRuntimePath($path)
[color=#999999]291[/color]     {
[color=#999999]292[/color]         if(($runtimePath=realpath($path))===false || !is_dir($runtimePath) || !is_writable($runtimePath))
[b][color=#999999]293[/color][/b]             throw new CException(Yii::t('yii','Application runtime path "{path}" is not valid. Please make sure it is a directory writable by the Web server process.',
[color=#999999]294[/color]                 array('{path}'=>$path)));
[color=#999999]295[/color]         $this->_runtimePath=$runtimePath;
[color=#999999]296[/color]     }
[color=#999999]297[/color] 
[color=#999999]298[/color]     /**
[color=#999999]299[/color]      * Returns the root directory that holds all third-party extensions.
[color=#999999]300[/color]      * @return string the directory that contains all extensions. Defaults to the 'extensions' directory under 'protected'.
[color=#999999]301[/color]      */
[color=#999999]302[/color]     public function getExtensionPath()
[color=#999999]303[/color]     {
[color=#999999]304[/color]         return Yii::getPathOfAlias('ext');
[color=#999999]305[/color]     }

Stack Trace
#0+
–
 /home/jmligh1q/public_html/glowmania21/magento2_data_migration-0.1.24/yii/base/CApplication.php(280): CApplication->setRuntimePath("/home/jmligh1q/public_html/glowmania21/magento2_data_migration-0...")
275     {
276         if($this->_runtimePath!==null)
277             return $this->_runtimePath;
278         else
279         {
280             $this->setRuntimePath($this->getBasePath().DIRECTORY_SEPARATOR.'runtime');
281             return $this->_runtimePath;
282         }
283     }
284 
285     /**
#1+
–
 /home/jmligh1q/public_html/glowmania21/magento2_data_migration-0.1.24/yii/logging/CFileLogRoute.php(67): CApplication->getRuntimePath()
62      */
63     public function init()
64     {
65         parent::init();
66         if($this->getLogPath()===null)
67             $this->setLogPath(Yii::app()->getRuntimePath());
68     }
69 
70     /**
71      * @return string directory storing log files. Defaults to application runtime path.
72      */
#2+
–
 /home/jmligh1q/public_html/glowmania21/magento2_data_migration-0.1.24/yii/logging/CLogRouter.php(66): CFileLogRoute->init()
61     {
62         parent::init();
63         foreach($this->_routes as $name=>$route)
64         {
65             $route=Yii::createComponent($route);
66             $route->init();
67             $this->_routes[$name]=$route;
68         }
69         Yii::getLogger()->attachEventHandler('onFlush',array($this,'collectLogs'));
70         Yii::app()->attachEventHandler('onEndRequest',array($this,'processLogs'));
71     }
#3+
–
 /home/jmligh1q/public_html/glowmania21/magento2_data_migration-0.1.24/yii/base/CModule.php(394): CLogRouter->init()
389             if(!isset($config['enabled']) || $config['enabled'])
390             {
391                 Yii::trace("Loading \"$id\" application component",'system.CModule');
392                 unset($config['enabled']);
393                 $component=Yii::createComponent($config);
394                 $component->init();
395                 return $this->_components[$id]=$component;
396             }
397         }
398     }
399 
#4+
–
 /home/jmligh1q/public_html/glowmania21/magento2_data_migration-0.1.24/yii/base/CModule.php(530): CModule->getComponent("log")
525      * Loads static application components.
526      */
527     protected function preloadComponents()
528     {
529         foreach($this->preload as $id)
530             $this->getComponent($id);
531     }
532 
533     /**
534      * Preinitializes the module.
535      * This method is called at the beginning of the module constructor.
#5+
–
 /home/jmligh1q/public_html/glowmania21/magento2_data_migration-0.1.24/yii/base/CApplication.php(167): CModule->preloadComponents()
162         $this->initSystemHandlers();
163         $this->registerCoreComponents();
164 
165         $this->configure($config);
166         $this->attachBehaviors($this->behaviors);
167         $this->preloadComponents();
168 
169         $this->init();
170     }
171 
172 
#6+
–
 /home/jmligh1q/public_html/glowmania21/magento2_data_migration-0.1.24/yii/YiiBase.php(125): CApplication->__construct("/home/jmligh1q/public_html/glowmania21/magento2_data_migration-0...")
120      * to the constructor of the application class.
121      * @return mixed the application instance
122      */
123     public static function createApplication($class,$config=null)
124     {
125         return new $class($config);
126     }
127 
128     /**
129      * Returns the application singleton or null if the singleton has not been created yet.
130      * @return CApplication the application singleton, null if the singleton has not been created yet.
#7+
–
 /home/jmligh1q/public_html/glowmania21/magento2_data_migration-0.1.24/yii/YiiBase.php(98): YiiBase::createApplication("CWebApplication", "/home/jmligh1q/public_html/glowmania21/magento2_data_migration-0...")
093      * If not, the directory will be defaulted to 'protected'.
094      * @return CWebApplication
095      */
096     public static function createWebApplication($config=null)
097     {
098         return self::createApplication('CWebApplication',$config);
099     }
100 
101     /**
102      * Creates a console application instance.
103      * @param mixed $config application configuration.
#8+
–
 /home/jmligh1q/public_html/glowmania21/magento2_data_migration-0.1.24/index.php(13): YiiBase::createWebApplication("/home/jmligh1q/public_html/glowmania21/magento2_data_migration-0...")
08 
09 //remove the following line when in production mode
10 defined('YII_DEBUG') or define('YII_DEBUG', true);
11 
12 require_once($yii);
13 Yii::createWebApplication($config)->run();