Sorry my bad, I had it disabled, I have enabled it now (Just watched the vid and damn that's a big ass lmfao).
Here's the link if any ones interested lol https://www.filehosting.pw/33499ef8ed7da9d3
The download wait restriction comes with v3.3
To check for PDO check the server information in the admin cp. If its installed you'll see this.
(Apoligies for screenshot size/resolution/quality) I'm using my phone.
That would require a fair bit more coding added to multiple files. Because it doesn't log who downloaded the files, it only logs the number of downloads, country OS, and browser.
Quick and easy modification to show the last IP the user has logged in with.
Open /admin/user_edit.php
Find:
$email_address = $user['email'];
Add Below:
$lastloginip = $user['lastloginip'];
Find:
<div class="clearfix alt-highlight">
<label>Paid...
Looks more like a /tmp folder problem not max file size.
If you run cPanel you can do the following
Login via ssh
pico /scripts/securetmp
Edit this line
my $tmpdsksize = 512000; # Must be larger than 250000
example (2GB):
my $tmpdsksize = 2097152; # Must be larger than 250000...
More secure than plain text, but in the past I have requested that the passwords are hashed using md5 and a salt
Something like this: md5(md5($salt).$md5_password);
You have already been told that it will be added in a later version. I am not going to waste my time coding a modification which will be added to the script in the next update or 2.
There are not many people on here who knows php coding. If you are that desperate for this then pay someone from...
The code $dbInsert->password = MD5($password); is in class.userpeer.php in the includes folder
php.ini on CentOS6.* is located in /usr/local/lib/php.ini
Create a file named phpinfo.php
Put this code into it
<?php
phpinfo();
?>
And look for:
If you remove the md5 hashing from the code and...
I'm not sure if that's possible via a plugin, as there isn't a plugin hook in uploadHandler.php to communicate with your plugin code. Will have to wait on what Adam says.
If you tell us what the plugin you're coding does, then I might be able to help, theres a lot of plugin hooks and each do different things.
Take a look at the class.pluginhelper.php file in the includes directory.
The user passwords are md5'd before inserting in to the database
$dbInsert->password = MD5($password);
You need to fix the smtp server to send emails or use php in built email functions.