Search results

  1. E

    Large file downloading not start

    The php process is probably being killed in the middle of the download.
  2. E

    FFmpeg high load

    I have the impression that I've replied to this topic before and my reply was removed :(
  3. E

    Google Drive storage as fileserver

    I'm talking about google drive. They do have download limits.
  4. E

    Google Drive storage as fileserver

    They have hidden limits for downloads.
  5. E

    Trash Can not empty?

    The files stay in the database to keep the file's statistics data. If the user empties the trash, the stats and the file entry would be removed from the db.
  6. E

    Now Fixed remote direct file server not deleting files

    You should also know that when moving a file if the last update query fails on the receiving server, the sending server will delete the file but the database will not be updated. You will end up with the file in the new server and the database pointing to the old server (and the old server will...
  7. E

    Multiple Drive Local Server Storage - Yetishare

    Raid 0 with many drives? You will lose everything in 1 year.
  8. E

    Now Fixed remote direct file server not deleting files

    You should be aware that the restore function wont work on direct file servers.
  9. E

    Download file directly by user:[email protected]/filename

    The url on your example is the standard HTTP auth. It is possible to modify the script to work with this, but I don't recommend. There can be several issues with this. The user and password ar sent via plain text, the password cannot have special characters, the script will still return a...
  10. E

    Cron Job doesn't work and won't delete files

    The cron jobs need to be placed in each server to delete files on each server. The link "process file action queue" will run the queue only on the main server. Several other things wont work on external fileservers.
  11. E

    How to Change the Counter Setting 1000 to 10000

    You would need to change the code in several files to do this. Why don't you just decrease the values? 3.00 per 10000 is the same as 0.30 per 1000.
  12. E

    Invoicing system automated

    Why all this trouble? The invoices doesn't need to exists in file format, they can be generated on demand using data from the database as requested. I have a company and I need to issue invoices and register them in a system from my country to pay the taxes. Instead of issuing one invoice to...
  13. E

    Modifiying the Blue_v2 Theme

    Try to add it in the translation file.
  14. E

    Modifiying the Blue_v2 Theme

    t() is a function. This specific function is used in the translation and the second parameter is the default value. You cannot put an echo between them and cannot close and open php tags like this.
  15. E

    The admin panel only in English?

    The admin uses the same translation function as the rest of the script, but the translation is partial just like the rest of the script. Why do you need to translate the admin area?
  16. E

    Yetishare Daily Download Limit (in GB)

    It's not so simple to do this. If the user gets the download link 2x, does it count 2x on his limit? Does it count per GB downloaded or per file downloaded? Should we count partial downloads? If the same file is downloaded 2x with the same link in the same day, should we count 2x? If the user...
  17. E

    When pausing a video, does it buffer for you?

    Nope. It buffered the entire video. I'm using firefox.
  18. E

    i want buy comment plug-in

    Why dont you use facebook comments or disqus?
  19. E

    FTP Plugin Suggestions

    It's better to build a custom ftp server in php that allow users to manage their account completely, uploading, downloading, crating folders, moving files and etc.
  20. E

    Error when try to upload files

    I never managed to run php scripts for too long using fcgi. I didn't take the time to search the cause, I just switched back to mod_php.