Search results

  1. adam

    What does this number of threads in active downloads mean?

    Re: What does this number of threads in active downloads mea It's the number of connections for the download. Download managers may have multiple connections when downloading the same file so it shows these.
  2. adam

    forgot_password_email_content typo

    Thanks, fixed for the next release.
  3. adam

    Forgot password

    Thanks, this is done for the next release.
  4. adam

    Rewards Plugin Showing A Blank Page When Activated

    Sure, have a look at: install/manual/upgrade.en.html You'll need to migrate any custom changes you've done manually at the moment though.
  5. adam

    Error: Stats and Full Info URL

    That's the one for external file servers. You need to use the one supplied with the core script zip download. If you can't see it your OS may be hiding files starting with a dot by default.
  6. adam

    Error: Stats and Full Info URL

    What are you using in your .htaccess file? Can you paste the contents here.
  7. adam

    Rewards Plugin Showing A Blank Page When Activated

    It's because you're on an older version of the core script. You need to open plugins/sociallogin/admin/settings.php and delete lines 5-7. Replace with this: // includes and security include_once('../../../admin/_local_auth.inc.php');
  8. adam

    encrypting files

    Plus make sure you've got an .htaccess with 'deny from all' in it in your files/ folder. We could build in encryption but as yetisharemods says it would be difficult to stop someone decrypting them if they were determined to. You could encrypt them using a key but that key still needs to be...
  9. adam

    Rewards Plugin Showing A Blank Page When Activated

    Try settings the permissions on the plugin folder to 755 instead. Some hosts throw a 500 error on 777 permissions.
  10. adam

    sessions in mysql table

    Yes you can clear the data. If you execute this sql on your db it'll clear anything older than a day, just encase there are users currently logged in. DELETE FROM `sessions` WHERE `updated_on` < (UNIX_TIMESTAMP()-60*60*24);
  11. adam

    Rate the Theme #2

    I've updated it for you. I'll have a look at the forum permissions as it would be useful if you could edit your own posts.
  12. adam

    Reorder Payment Options?

    It's not possible in the current version, the plugins are loaded as they're listed in the database. I've added a 'load_order' column for the next release. You can manually add it by doing this: Execute this on your database: ALTER TABLE `plugin` ADD `load_order` INT( 3 ) NULL DEFAULT 999...
  13. adam

    How to put ads on video player?

    This is coming as a plugin in the next 2 weeks. :)
  14. adam

    Recommend Hosting Providers - Who do you use?

    Hi all, One of the questions I get asked more and more is 'which hosting company is best for YetiShare'? Who does everyone else use? I'd like to get a good list of hosts which support file hosting sites and where they're located. Thanks, Adam. NOTE: Please only post well established web...
  15. adam

    Rate the Theme #2

    Nice theme! :)
  16. adam

    Theme Changer

    I see, I'll move this to the RFCs to review for the next release.
  17. adam

    sessions in mysql table

    I've just checked our demo and local dev version and there's only data in the past 4 hours. Do you know if there was any changes to your code?
  18. adam

    sessions in mysql table

    That's A LOT of session data! How old is the data? Sessions should be cleared from the database when a user logs out or the session expires.
  19. adam

    Progress on Remote Upload

    Supplied by customer: I have found something, which might help us to get progress bar working in Remote Upload module, I have checked a file upload script from BlueImp, which is used in your site script. They have demo of remote upload with progress bar, i have tried that, and its working...
  20. adam

    social plugin bug?

    Responding to your email. :)