Bonjour a tous
j'aurais souhaiter integrer une partie du code cakebox au script de ex-rat
vers la ligne 496
## bower
nmp install -g bower
cd /var/www
git https://github.com/Cakebox/cakebox.git
cd cakebox
composer install
bower install --alloow-root
cp /var/www/config/default.php.dist var/www/cakebox/config/"$USER".php
j'aurais voulu integrer ses ligne de code dans le fichier du user.php
j'aurais souhaiter integrer une partie du code cakebox au script de ex-rat
vers la ligne 496
## bower
nmp install -g bower
cd /var/www
git https://github.com/Cakebox/cakebox.git
cd cakebox
composer install
bower install --alloow-root
cp /var/www/config/default.php.dist var/www/cakebox/config/"$USER".php
j'aurais voulu integrer ses ligne de code dans le fichier du user.php
<?php
/*
General configuration of Cakebox
*/
$app["cakebox.root"] = "/home/<username1>/torrents/"; // Root directory Cakebox have to scan
$app["cakebox.access"] = "/cakebox/<username1>/"; // Alias used in web server for direct access
$app["cakebox.language"] = "fr"; //Language of Cakebox. Could be : fr, en
/*
Directory settings
*/
$app["directory.ignoreDotFiles"] = false;
$app["directory.ignore"] = "//"; // Regex for files exclusion. For exemple : "/(\.nfo|\.test)$/"
/*
Web player settings
*/
$app["player.default_type"] = "html5"; // html5 or divx or vlc
$app["player.auto_play"] = "false";
/*
Betaseries account
NB: Ask API key here http://www.betaseries.com/api/
*/
$app["bs.login"] = "";
$app["bs.passwd"] = "";
$app["bs.apikey"] = "";
$app["rights.canPlayMedia"] = true;
$app["rights.canDownloadFile"] = true;
$app["rights.canArchiveDirectory"] = true;
$app["rights.canDelete"] = true;
merci par avance