almost all work but notification adding a torrent

peshua19

Member
May 25, 2018
897
0
16
I dont have the green notification saying the torrent has been added, notifications work as when there are errors I got them in the log and in the red notifications.
looking at my log I got a 404 error with addtorrent.php while the second parameter is success :

Code:
xxx.xx.xxx.xxx - me [28/Mar/2013:14:04:51 +0100] "GET /rutorrent/php/addtorrent.php/rutorrent/php/addtorrent.php?result[]=Success&name[]=mytorrent.torrent& HTTP/1.1" 404 350 "http://xxxxx/rutorrent/" "Mozilla/5.0 (Windows NT 5.1; rv:19.0) Gecko/20100101 Firefox/19.0 FirePHP/0.7.1" "1.28"

what can I check please ?
 

peshua19

Member
May 25, 2018
897
0
16
commenting try_files $uri =404; in my /etc/nginx/sites-available/rutorrent made it work now, though it's weird because on another server I got the same line uncommented and the notifications work well

Code:
location ~ .php$ {
# try_files $uri =404;
include /etc/nginx/fastcgi_params;
fastcgi_index index.php;
fastcgi_pass unix:/var/run/php-fpm.sock;
}
edit : well it was because of my fastcgi_params that weren't good !