"Affiche les informations d'utilisation", 'install' => "Installe et configure", ) ); $opts->parse(); } catch (Zend_Console_Getopt_Exception $e) { echo $e->getUsageMessage(); exit; } //Usage if(isset($opts->help)) { echo $opts->getUsageMessage(); exit; } $c = new Zend_Config($application->getOptions()); if(isset($opts->install)) { //Create data directory and all his children mkdir(APPLICATION_PATH.'/../data'); mkdir(APPLICATION_PATH.'/../data/cache'); passthru('cp -Rv ' . APPLICATION_PATH.'/../library/Scores/Partner/Templates/pages '. APPLICATION_PATH.'/../data/'); if (!file_exists($c->profil->path->pages.'/fichier/imgcache')) passthru('ln -vs '.APPLICATION_PATH.'/../data/pages/imgcache'.' '. $c->profil->path->pages.'/fichier/imgcache'); //Modification des permissions passthru('chown -R www-data: '.APPLICATION_PATH.'/../'); }