Search results

  1. adam

    List of my suggetion

    Thanks for the suggestions. We're working on the next release at the moment so I'll ensure these are reviewed before then.
  2. adam

    bug Manage translations English

    Hi Martin, If you ever need any urgent support from us please raise a ticket. I've had a look and you've used the ticketing system for pre-sales but not support issues. We don't always monitor these forums so might miss things posted here. :) Thanks, Adam.
  3. adam

    Storage is full in remote upload

    The url upload check is via this function: if(UserPeer::getAvailableFileStorage($Auth->id) <= 0) So this checks the available space for the current logged in user. This limit is pulled from the user account 'storageLimitOverride' value. (in admin, edit user, storage override) or The global...
  4. adam

    Upload from local PC problem

    This could be limits on your NGINX config. Do you have this line in your NGINX settings file: client_max_body_size 5G; As detailed here: http://forum.mfscripts.com/viewtopic.php?f=20&t=388&p=4583&hilit=nginx#p4551 If that doesn't work try: client_max_body_size 2G; Remember to restart Nginx...
  5. adam

    Registration Issue

    Hi, I've just tried a registration on your site but I'm not getting any emails at all. I wanted to see if it's a email client issue or not. Have you tried sending via SMTP? You'll probably get less emails in spam folders aswell. Thanks, Adam.
  6. adam

    [Urgent] Need script performance optimization..

    I spent some time yesterday working over this to get these performance issues resolved. The main problem was php-fpm processes being maxed out because of the current downloads. These were all being handled via PHP, so if a download took 6 hours, that would tie up a single PHP process for this...
  7. adam

    Fileleech

    At the top of /plugins/fileleech/includes/_append_url_upload_handler.php mod this: define('PLOWDOWN_PATH', '/usr/local/bin/plowdown'); to define('PLOWDOWN_PATH', '/plowdown'); If that doesn't work mod it to whatever path plowdown is within.
  8. adam

    Premium Expired date

    Hi, The MYSQL date time column wont allow for dates that far into the future, I think 2036 is the latest. Try a date around 2030 to see if it works. I'll be added an option in the next release to set this to 'never expire'. So a date wont be required. Thanks, Adam.
  9. adam

    Disable Auto count-down

    It's not possible via the script config. You'll need to amend the javascript I listed above. I don't know what it would be off hand sorry.
  10. adam

    Disable Auto count-down

    Enable the captcha page via the site settings in the admin area.
  11. adam

    Disable Auto count-down

    For anyone else, this is the full amended javascript code at the top of _download_page_compare_timed.inc.php: <script> <!-- var milisec = 0; var seconds = <?php echo (int)$additionalSettings['download_wait']; ?>; var countdownTimer = null; function display() {...
  12. adam

    Disable Auto count-down

    Hi, You can't do this via the config in the script although you can amend the code. I haven't tested this but it should work... Open _download_page_compare_timed.inc.php (or whatever download page you are using) Find and delete this line: countdownTimer = setInterval('display()', 1000)...
  13. adam

    Error on naming the file when upload completed

    Hi, I couldn't any support tickets from you. If you raised one can you tell me the ref? Otherwise please send me access to your server and I'll take a look asap. Send: - FTP access - Temp admin access. You can send them via the contact form above. Thanks, Adam.
  14. adam

    Yetishare script only allows max 1mb filesize upload

    Hi, Have you asked your host if they've changed anything? It sounds like maybe PHPs max upload setting or a max upload limit on the webserver. Adam.