Search results

  1. adam

    Upload Complete Error

    You can upload more than 2GB, you just have to get PHP rebuilt on a 64bit system to allow for it. There's info on how to do it on this page: http://stackoverflow.com/questions/4614147/uploading-a-file-larger-than-2gb-using-php We are also looking at sending the upload in chunks to see if this...
  2. adam

    Blank site setting page

    Ok, but look in your MySQL database using phpMyAdmin. Open the site_config table. Do you see any data?
  3. adam

    Blank site setting page

    Have you got anything in your 'site_config' table in the database?
  4. adam

    Rewrite on Nginx (version 3.5.x)

    Re: Rewrite on Nginx Dont worry, I've just found this info: "Rewrites can go into the server{} section of your nginx configuration."
  5. adam

    Rewrite on Nginx (version 3.5.x)

    Re: Rewrite on Nginx How do you set this up on Nginx, do you just add the text to a .htaccess file like in Apache? Thanks for sharing, this will be really useful for a lot of other users. :)
  6. adam

    Could I customize plug-in units for payment?

    Hi, I'm not sure I understand exactly what you'd like to have done. Can you supply more information. Thanks, Adam.
  7. adam

    SMTP with GMAIL APPS

    Try setting the host as: ssl://smtp.gmail.com
  8. adam

    Remote url problem/bug

    For everyone elses benefit, the fix: On line 505 of includes/class.uploader.php replace this: if ($tmpFile && is_uploaded_file($tmpFile)) with this: if ($tmpFile) The release code has also been fixed. Regards, Adam.
  9. adam

    Remote url problem/bug

    Have you got a premium user I can test with. A non logged in upload will only allow 100MB. Send it via the contact form above.
  10. adam

    Remote url problem/bug

    What's your site url?
  11. adam

    Remote url upload bug on upgrade 3,1

    Yes it's not designed for files which need authentication, it really for direct links at the moment. I haven't tried it but you may be able to provide the un/pw in the url: http://user:[email protected]/url/etc/file.txt This works when authenticating using http auth in some situations.
  12. adam

    Remote url upload bug on upgrade 3,1

    That's correct, when I go to the url on BillionUploads.com I get a page prompting me to download. It looks like that's what the download on your site gets. I doubt the Billion site will allow you to download files directly without a premium account. The transfer button is working fine on our...
  13. adam

    Major Remote Upload Bug

    Good stuff, glad it's working. Yes that was probably one of the quickest fixes we've got out. I tried to sneak it in there before anyone noticed, clearly didn't work. :) Regards, Adam.
  14. adam

    Major Remote Upload Bug

    When did you download the script? Try re-downloading it as this has been fixed in the current release. Replace the includes/class.uploader.php file with the latest one. Also note that you'll need curl enabled on your server for the restriction to be checked.
  15. adam

    SMTP with GMAIL APPS

    Hi, Yes it will work fine. Regards, Adam.
  16. adam

    User not upgraded

    Hi, Was payment gateway was this using? Regards, Adam.
  17. adam

    v3.1 bug?

    Hi, That's right, in the latest release any invalid links produce a 404 rather than redirect. This was requested from a number of users for SEO purposes. You can however override it by opening file_download.php and editing line 26-27 from this: output404(); //redirect(WEB_ROOT . "/index." ...
  18. adam

    Remote url upload bug on upgrade 3,1

    Hi, I'm not sure I understand the issues you're seeing. Can you provide me with steps on how to replicate it on our demo site, including the urls you use? Thanks, Adam.
  19. adam

    V3.1 Released!

    Great stuff. Thanks for your comments and support! :) Regards, Adam.
  20. adam

    progress bar - internet explorer all versions

    Ah yes sorry, it should be the one in \admin\ajax\download_current.ajax.php. See the attached.