Search results

  1. Y

    video plugin test

    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
  2. Y

    video plugin test

    Upload it to my site to test if you want? - www.filehosting.pw
  3. Y

    version 3.3 technical & new features questions

    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.
  4. Y

    Blank White Page after install

    Check the .htaccess file
  5. Y

    how or where to show the ip address

    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.
  6. Y

    how or where to show the ip address

    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...
  7. Y

    how to export all links

    http://www.yetisharemods.com/topic/118-select-multiple-links-from-uploaded-files-in-account-home/
  8. Y

    System notice problem

    Never heard of webuzo. But you should be able to find how to resize the /tmp directory in google
  9. Y

    how to stop registration for members

    Rename or remove register.php
  10. Y

    System notice problem

    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...
  11. Y

    Register page

    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);
  12. Y

    Problem with Uploading files larger than 1GB

    http://forum.mfscripts.com/viewtopic.php?f=20&t=572
  13. Y

    How to enable Download Manager support

    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...
  14. Y

    Problem with Uploading files larger than 1GB

    I've upload files up to 4gb without problems. Its most likely eith a connection interruption or you have a setting wrong in php.ini
  15. Y

    Register page

    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...
  16. Y

    Coding a new plugin.

    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.
  17. Y

    Coding a new plugin.

    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.
  18. Y

    Register page

    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.
  19. Y

    system notice

    Check the server php.ini not .htaccess or the php.ini that came with the script. Plus 4GB is 4096MB not 4000MB
  20. Y

    Number of visitors to the site

    It works for me and on hundreds of other sites so I cannot see what you are doing wrong