Search results

  1. adam

    Copy all Links not working in 4.0

    If you submit any requests in the RFCs part of the forum they'll be reviewed for the next release.
  2. adam

    Download take a long time to start

    By the way I couldn't see anything really wrong with your nginx config. "location /files/" we have as "location /files" but I don't think that would make a difference. I assume you restarted nginx on all servers and enabled the option in site settings, admin? HttpSecureDownload also looks...
  3. adam

    Download take a long time to start

    It doesn't use PHP. If you use the option XAccelRedirect it hands off onto Nginx (assuming the nginx settings are working). You still need PHP at the start of the process for validation, security etc but this adds little overhead. Good to hear you are happy with access to the source code :)
  4. adam

    v4 not playing files on iphone from before update

    Thanks for posting the resolution. :)
  5. adam

    The amount of days after non-active files are removed.

    Run it manually and post the output here: php /path/admin/tasks/process_file_queue.cron.php Also, make sure you can call php cli ok, post the result of: php -v
  6. adam

    V4 Multi-Problems

    It was a previous bug which is now fixed, there shouldn't be any files in that folder with the latest release. It's just a warning to other people that you can cause some real damage by using rm -rf (without warning) if you're not careful.
  7. adam

    V4 Multi-Problems

    Warning to just be careful when using rm -rf, it can delete EVERYTHING if you're not careful. If you're not sure don't use it.
  8. adam

    mycript soluton ubuntu 14.04 lts server 64bit edition

    Thanks for posting the info. :)
  9. adam

    change "local storage" type to "remote file server storage"

    Re: change "local storage" type to "remote file server stora So, do every you've said including setting up the file server in the admin area. (so it's in the database) The main thing you'll want to update is the server id on each file. So say your local file server is id of 1 (see the database...
  10. adam

    How speed up media converter?use bitrate and frame rate?

    Multi threads and preset is also good. :)
  11. adam

    How speed up media converter?use bitrate and frame rate?

    Hi, I've never looked into it however it uses ffmpeg so maybe these resources would be useful: http://askubuntu.com/questions/352920/fastest-way-to-convert-videos-batch-or-single http://askubuntu.com/questions/270625/how-to-fast-convert-mp4-to-webm-using-ffmpeg...
  12. adam

    How to put ads on video player?

    Yes it was put on hold as you can do it with JWPlayer directly. http://www.jwplayer.com/video-ads/
  13. adam

    Question about Trash Can?

    You can't at the moment. The trash can is there so you can still access the file stats after it being removed.
  14. adam

    V4 Multi-Problems

    You need to test if the cron tasks work on your server via the command line (ssh). So login via SSH and call one of them: php /home/nypp/www/admin/tasks/process_file_queue.cron.php If the file action queue is processed then you know the cron scripts work on your server. So it must be an issue...
  15. adam

    rewards Plugin

    Delete the groups via the database in the plugin_reward_ppd_group table.
  16. adam

    ImageViewer Plugin - Working for v4? Not in Demo...

    Use the arrow keys to go left and right.
  17. adam

    White site after Login to /admin

    You're welcome :)
  18. adam

    White site after Login to /admin

    Try enabling mcrypt in PHP.
  19. adam

    ob_flush(): failed to flush buffer. No buffer to flush

    It's not a problem in the code, just when ob_flush() has been called but there's nothing to output. You'd be best tweaking the PHP settings to not log notices on live servers. We do our best to clear them all but there may still be some depending in PHP version, config etc...