Search results

  1. 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.
  2. 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.
  3. adam

    Disable Auto count-down

    Enable the captcha page via the site settings in the admin area.
  4. 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() {...
  5. 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)...
  6. 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.
  7. 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.
  8. adam

    Download bug

    This is a different issue. Can you raise a support ticket please and list in detail the problem.
  9. adam

    Download bug

    That's correct. It's a download token which is valid for 24 hours. So you can reuse it. If you search in includes/class.file.php for: $tokenData = You'll see the commented out line to restrict by IP. Feel free to use. We've had some issues as people often change their IPs while downloading a...
  10. adam

    I want let user can add their password by themself. How can?

    Re: I want let user can add their password by themself. How That's correct. They need to supply a real email address or they'll not gain access.
  11. adam

    Download bug

    Morning all, This has been patched to the latest release code and will be documented for the v4.0 release. To manually patch, open: includes/class.file.php Find: (around line 51) if ($downloadToken != null) Replace with: if ($downloadToken !== null) (note the extra equals) As usual, drop...
  12. adam

    File Leech error

    It's set at the top of /plugins/fileleech/includes/_append_url_upload_handler.php
  13. adam

    File Leech error

    Have you installed plowshare?
  14. adam

    NEW INSTALLATION v3.5.3 problem paypal

    This will be permissions related. Ensure the plugins/ folder has chmod 755, not 777. If that doesn't work, try setting the plugins/paypal/ folder and any contents to chmod 755.
  15. adam

    Important Security Update for Font Script - Pre v2.02

    Hi, An issue with a third party library within the script has recently been found and needs fixing as matter of priority. The issue is with the 'uploadify' plugin within the admin area of the script. It's bundled with 2 test php scripts which may enable an unauthorised user to gain limited...