Hello.
I lost my last forum account but I was the one who originally reported that TF needed to set a specific session name/id in order to avoid conflicts with other PHP apps. I just installed TF 2.1 and came across the problem again. The reason is that you try to set the session name in combination with the session_start method call:
session_start("TorrentFlux");
This is wrong, as session_start takes a void argument:
http://php.net/session_start . In fact, the above has no effect on the session name. You must use
session_name instead, as follows:
session_name("TorrentFlux");
session_start();
Good luck; you've written a great piece of software!
M