Search results

  1. E

    Best hosting and server setup

    I'm having 10k visitors per day and the script consumes less than 5% of the cpu of one Xeon E3 1225v2. The script and mysql on the same server, not using ssd. I don't convert videos, but for the script and mysql you don't need much. You should invest first in bandwidth, storage and a good raid...
  2. E

    Problem with Leverage browser caching setup

    Because those thumbs are probably created on the fly by the php script.
  3. E

    need to change your link and remove html?

    http://httpd.apache.org/docs/2.0/misc/rewriteguide.html
  4. E

    Copy file via command line

    There is a copy function on the file manager that do this. With php you can duplicate the row directly in the database with a different shorturl.
  5. E

    404 Not Found Page

    Just change the output404 function to display your error page.
  6. E

    php-fpm and apache

    Why are you using php-fpm?
  7. E

    Give admin option to retain file records

    I had to modify the script to keep those records. In my country the law requires me to keep this data for at least 6 months. I created a new file status with the name "removed" and when the user empties his trash the script just update the file status to "removed" and the files become invisible...
  8. E

    Lets talk payment processors

    The integration is quite simple, actually. You just need a registered company and a ssl certificate.
  9. E

    paidExpiryDate does not clear

    Imagine that you are sending an email marketing campaign sending a coupon code to all accounts that expired 1 week ago. You will need to perform complex queries in the log tables to do it. Also a user can be premium without paying, you can manually set the paidExpiryDate in the admin to give...
  10. E

    paidExpiryDate does not clear

    No, it shouldn't. You will lose information if you reset this.
  11. E

    Lets talk payment processors

    Credit card companies doesn't care about filesharing. Depending on your country they cant even refuse your business.
  12. E

    Ideas on how to give priority for conversion

    You can add an order by clause in the sql query that gets the files to convert.
  13. E

    Share / Sync folders between users on the site

    This is not sync, this is just sharing. The folder and files are the same, but with multiple owners.
  14. E

    affiliate id does not redirect

    It shouldn't disappear and there is no problem on it staying there.
  15. E

    Anyone needing a storage server?

    Hello. I got a dedicated server with plenty of storage space available. So I was thinking in share some of this space with someone for a fair price. The server is in europe, uses hardware raid 6, have a gbit link and have plesk installed. It does not have ffmpeg and it doesn't allow torrents...
  16. E

    File hash with md5_file too slow for large files

    Php running as an apache module is 2x faster than php-fpm. I don't this this will solve his problem.
  17. E

    Auto login after registration

    In the 4.2 add $Auth->login($username, $newPassword); just after the line coreFunctions::redirect(WEB_ROOT . "/register_complete." . SITE_CONFIG_PAGE_EXTENSION); in the register.html in the flow theme. This should work, but I didnt test it.
  18. E

    Tiger Yetishare Theme on Sale Just 160 USD ( Limited time )and Support

    Re: Tiger Yetishare Theme Sale and Support The most expensive theme that I've seen so far. Did you also change the file manager?
  19. E

    File hash with md5_file too slow for large files

    It's a nice config. I don't have 25gb file here but it took 10 seconds to calculate the md5 for a 8gb file. Try to monitor your server with htop and iotop while uploading the file. It will provide you more information about what is happening.
  20. E

    Auto login after registration

    Just call the attemptLogin in the auth class.