Je te comprends
J'ai la même impression avec Plex (Jessie). Dans le cas présent, je suis plutôt confiant.

<?php
// configuration parameters
// for snoopy client
@define('HTTP_USER_AGENT', 'Mozilla/5.0 (Windows NT 6.0; WOW64; rv:12.0) Gecko/20100101 Firefox/12.0', true);
@define('HTTP_TIME_OUT', 30, true); // in seconds
@define('HTTP_USE_GZIP', true, true);
$httpIP = null; // IP string. Or null for any.
@define('RPC_TIME_OUT', 5, true); // in seconds
@define('LOG_RPC_CALLS', false, true);
@define('LOG_RPC_FAULTS', true, true);
// for php
@define('PHP_USE_GZIP', false, true);
@define('PHP_GZIP_LEVEL', 2, true);
$schedule_rand = 10; // rand for schedulers start, +0..X seconds
$do_diagnostic = true;
$log_file = '/tmp/errors.log'; // path to log file (comment or leave blank to disable logging)
$saveUploadedTorrents = true; // Save uploaded torrents to profile/torrents directory or not
$overwriteUploadedTorrents = false; // Overwrite existing uploaded torrents in profile/torrents directory or make unique name
$topDirectory = '/'; // Upper available directory. Absolute path with trail slash.
$forbidUserSettings = false;
$scgi_port = 5000;
$scgi_host = "127.0.0.1";
// For web->rtorrent link through unix domain socket
// (scgi_local in rtorrent conf file), change variables
// above to something like this:
//
// $scgi_port = 0;
// $scgi_host = "unix:///tmp/rpc.socket";
$XMLRPCMountPoint = "/RPC2"; // DO NOT DELETE THIS LINE!!! DO NOT COMMENT THIS LINE!!!
$pathToExternals = array(
"php" => '', // Something like /usr/bin/php. If empty, will be found in PATH.
"curl" => '/usr/bin/curl', // Something like /usr/bin/curl. If empty, will be found in PATH.
"gzip" => '', // Something like /usr/bin/gzip. If empty, will be found in PATH.
"id" => '', // Something like /usr/bin/id. If empty, will be found in PATH.
"stat" => '/usr/bin/stat', // Something like /usr/bin/stat. If empty, will be found in PATH.
);
$localhosts = array( // list of local interfaces
"127.0.0.1",
"localhost",
);
$profilePath = '../share'; // Path to user profiles
$profileMask = 0777; // Mask for files and directory creation in user profiles.
// Both Webserver and rtorrent users must have read-write access to it.
// For example, if Webserver and rtorrent users are in the same group then the value may be 0770.
$tempDirectory = null; // Temp directory. Absolute path with trail slash. If null, then autodetect will be used.
"curl" => '/usr/bin/curl', // Something like /usr/bin/curl. If empty, will be found in PATH.
"stat" => '/usr/bin/stat',
Si tu as des erreurs derrière dans rutorrent, il faudra remettre ça dans tes conf users (et pas dans le fichier en question pour pas qu'il t’embête à chaque fois).nano /var/www/rutorrent/conf/users/exrat/config.php
ça donne ça:
<?php
$pathToExternals = array(
"curl" => '/usr/bin/curl',
"stat" => '/usr/bin/stat',
);
$topDirectory = '/home/exrat';
$scgi_port = 5001;
$scgi_host = '127.0.0.1';
$XMLRPCMountPoint = '/EXRAT';
[02.05.2015 11:42:06] rss: Certaines fonctionnalités ne seront pas disponibles. Le serveur web ne peut pas accéder au(x) programme(s) externe(s). (curl).
Mon fichier user:
<?php
$topDirectory = '/home/cocolabombe0';
$scgi_port = 5001;
$scgi_host = '127.0.0.1';
$XMLRPCMountPoint = '/COCOLABOMBE0';
edit: mis les deux lignes et plus le message affiché<?php
$pathToExternals = array(
"curl" => '/usr/bin/curl',
"stat" => '/usr/bin/stat',
);
$topDirectory = '/home/cocolabombe0';
$scgi_port = 5001;
$scgi_host = '127.0.0.1';
$XMLRPCMountPoint = '/COCOLABOMBE0';
et ça devrait être ok02.05.2015 11:47:18] FILE MANAGER ignited
JE crois que je l'avais déjà avant.ouais c'est une erreur de traductioncocolabombe0 wrote:Ok car la traduction sur google disait enflammé lol.
Bad response from server: (502 [error,getalltrackers]) <!DOCTYPE html> <html> <head> <title>Error</title> <style> body { width: 35em; margin: 0 auto; font-family: Tahoma, Verdana, Arial, sans-serif; } </style> </head> <body> <h1>An error occurred.</h1> <p>Sorry, the page you are looking for is currently unavailable.<br/> Please try again later.</p> <p>If you are the system administrator of this resource then you should check the <a href="http://nginx.org/r/error_log">error log</a> for details.</p> <p><em>Faithfully yours, nginx.</em></p> </body> </html>
Dite moi svp en langage n00b comment trouver et vous fournir le log nginx ou autre si nécessaire.Bad response from server: (502 [error,list])[...]
Bonjour,include /etc/nginx/conf.d/php.conf;
include /etc/nginx/conf.d/cache.conf;
Depuis un petit moment (à partir du 12 avril), la config de Nginx (cf le fichier rutorrent.conf) via le script repose comme tel. Il faudra l'adapter en ce sens si ce n'est déjà le cas.Quelle commande stp pour le vérifier ? (j'ai fait dir /etc/nginx/conf.d/ (commande acceptable?) et ces "extensions" n'y figurent pas).Dans le dossier conf.d, les fichiers php et cache dispose d'une extension (cf ci-dessous) ?
Et pour les ajouter si nécessaire ?include /etc/nginx/conf.d/php.conf; include /etc/nginx/conf.d/cache.conf;
service nginx restart
Il se pourrait qu'il reste quelque étape : effacer le cache (etc); on avisera.cd /var/www/rutorrent/
git pull origin master
et regardes si ça couine.