I don't have this plugin, but to change the concurrent downloads on the remote upload you need to change the sql query just bellow the definition of the constant. I believe this plugin uses the same mechanism.
Hello. I just noticed that the remote upload feature only downloads the first file in the list when the script is configured to perform the downloads in background. Here is the cause:
In the file _uploader_javascript.inc.php the javascript function urlUploadFiles is called. This function make a...
Hello,
There is no file icon for rmvb files. I tried to create one manually but it didn't end very well. Do you guys have the icon for rmvb files? If you don't, can you send me the editable file for the mpeg icon so I can change it to rmvb?
This will just block ips from normal users who forget their passwords. You should comment the line Auth::clearSessionByUserId($row['id']); in the attemptLogin function in the Auth class.
The script has a feature to log failed login attempts and block ips after X attempts. However, when the ip manage to log in all logs about the previous failed attempts from this ip are removed.
Here is how this can be exploited: If the script is configured to block an ip after 10 failed...
There is a module on nginx that makes nginx look first for a .gz file. You can keep a compressed copy of all js and css on your website. Using the deflate from apache will make apache compress every file over and over again in every request.
I also merged all css and js in one file to reduce...
The php.ini have configs about the php, not about the apache. The apache config files tells how many threads apache can create, how many connections it may handle, timeouts and etc.
Impossible to tell the cause of this problem without more information. Can you share the server status from apache and the output of the "top" command?
I just noticed that using the title attribute to store the folder hash in the lateral menu isn't the best approach, the hash will be displayed if the user moves the mouse over the link. I'm using the attribute "name" instead.
Hello.
I just notice that the script is calling md5_file 2 times on each upload. It's called in the method _storeFile and then again in the method moveIntoStorage, both in the uploader class. The moveIntoStorage method calls the _storeFile method. It doesn't need to calculate the md5 again...