Closed MervinB closed 4 years ago
When you make multiple requests at the time, it generates only one link (the last one requested in the timeline)
The error is in this file:
https://github.com/nelu/rutorrent-thirdparty-plugins/blob/stable/fileshare/share.class.php
protected function load() { if(!is_file($this->datafile) && !$this->write()) {die('Failed to write file');} if(($rf = file_get_contents($this->datafile)) === FALSE) {die('Failed to load data');} $this->data = unserialize($rf); } private function write() { return (file_put_contents($this->datafile, serialize($this->data)) !== FALSE); }
these functions are load and overwritten the log file without taking into account the concurrency.
i will add a background to the modal window to prevent multiple actions from the same session, this wont cure the serverside issue
plugin deprecated. try the new filemanager plugin
When you make multiple requests at the time, it generates only one link (the last one requested in the timeline)
The error is in this file:
https://github.com/nelu/rutorrent-thirdparty-plugins/blob/stable/fileshare/share.class.php
these functions are load and overwritten the log file without taking into account the concurrency.