Search results

  1. E

    AmazonS3 Cost

    It's not unlimited. It's flatrate. They can limit your download/upload speed if they want to.
  2. E

    Paymentwall accepts it

    I was told by some people that they only allow monthly payments for filehosting and charge more than 15%. It's better to offer the payment methods that they offer and get fees as low as 4%.
  3. E

    AmazonS3 Cost

    Most datacenters in europe charge around 1 euro/TB. AmazonS3 is super expensive.
  4. E

    [subject renamed] Guessing Folder Names

    Whoever use my solution, please test it well. I coded it in the last 15 minutes. It's working in my script, but I didn't test it in the default yetishare script.
  5. E

    [subject renamed] Guessing Folder Names

    Well, it is a kind of privacy issue. Most users doesn't pay attention on the privacy settings and the default setting is to make the file public. If you know something about php, follow those steps to add hashes to folders: 1) Add a field "shortUrl" on the file_folder table. Make it a binary...
  6. E

    Ysmods plugins

    I don't agree with this idea of a ticket plugin. There are several good ticket systems out there, kayako for example. A ticket system is one of the fewest things that don't need to be tied to the filesharing script. I think the developers should use their limited time on other features.
  7. E

    footer border-bottom on mobile

    In the file manager or in the frontend? I didn't see any border on the file manager on my phone.
  8. E

    media converter plugin screenshots

    I don't have the media converter plugin so I don't know how it works and how to make it use storage servers to convert files. But, since the files are uploaded to several different servers it seems logical to make each server convert its videos.
  9. E

    When pausing a video, does it buffer for you?

    "File has been removed by the site administrator."
  10. E

    media converter plugin screenshots

    The time it takes to convert depends on your server processor. You can add -threads N in the command to make ffmpeg use more than one thread (and therefore more than 1 core) to process. N will be the number of threads. 300mb file in 30 minutes using only one core is normal. Using an dual core...
  11. E

    Yetishare - Trust Bin

    Are you talking about the trash folder? It does exactly what you suggested.
  12. E

    When pausing a video, does it buffer for you?

    Well, pausing the buffer at some point will save server bandwidth. Some sites even reduce the download speed to the minimum possible to play the video.
  13. E

    does anyone know how to manually read from the ys script database

    Error 500 is probably a syntax error in your code. getRows will return an array with many rows. You can access each row using a while or a foreach. getRow (without the s) will return only one row, but still an array. $row = $db->getRow('select field1, field2 from table'); echo $row['field1']...
  14. E

    Question about Media Converter Plugin

    Or you can do it real quick if you know some php. <?php $frame = 10; $movie = 'test.mp4'; $thumbnail = 'thumbnail.png'; $mov = new ffmpeg_movie($movie); $frame = $mov->getFrame($frame); if ($frame) { $gd_image = $frame->toGDImage(); if ($gd_image) { imagepng($gd_image...
  15. E

    does anyone know how to manually read from the ys script database

    $db = Database::getDatabase(); $row = $db->getRow('YOUR QUERY HERE');
  16. E

    This things need Yetishare

    Yetishare already has an "anti-dupe" system. It accepts the upload, but a cron job delete it few hours latter. Upload maintenance is really needed. The script also doesn't stop uploads at all. If all fileservers are full, the users will upload to the main site without control.
  17. E

    Ajax on manually log payments form

    Hello. The page /admin/payment_manage.php has an option to manually log payments, but the form loads all users in a select field. If you have like 50k registered users (that's what most filesharing sites have) you will have a select with 50k lines. A better alternative is to use ajax to load...
  18. E

    plugin directory in all ys plugins

    If I remember it right I already made a suggestion to be able to fully customize urls. Having a link with /plugins/ in the middle clearly shows the user that you are using a third party script. In my script I'm keeping the /plugin folder and hiding it with mod rewrite.
  19. E

    php7 support

    I did a compatibility test that found some things like $this->$key[$k] which will have a different interpretation on php7. It wont result in error, but the execution will be different. This example is from the newsletter plugin.
  20. E

    sessions in mysql table

    Hey Adam, have you already analyzed the possibility of using memcache for sessions? Here are 2 code examples: http://php.net/manual/en/memcache.examples-overview.php You can also cache objects in memory. I know some users doesn't use dedicated servers for yetishare (they should), but you could...