Recent content by filegasm

  1. F

    Yetishare v4.5.5: php curl file upload API not working

    I want to ask if there is an update or other way to enable chunk uploading through php-curl in v7.4 ?
  2. F

    Yetishare v4.5.5: php curl file upload API not working

    Update: I solved the problem. Here's everything that I did: Edited nginx.conf: client_max_body_size = 4G Edited php.ini: post_max_size = 4G upload_max_filesize = 4G I edited the settings for both my main site server and the file servers. The Admin API Test Tool helped a lot on solving errors...
  3. F

    Yetishare v4.5.5: php curl file upload API not working

    Okay, I tried to initiate the same curl POST instead in shell_exec() command and it returned a "413 Request Entity Too Large" error from cloudflare. How do I solve this?" Nevermind, I just read that chunks are not yet supported in version 4.5. But I'm still getting the same "Please provide the...
  4. F

    Yetishare v4.5.5: php curl file upload API not working

    I wrote a simple php code to utilize the file upload API. It works on one PC but returns a ""Please provide the access_token param." error on another even if it it was just generated a few seconds ago and is included. That's why I'm sure that the server side is okay, but I can't figure out what...
  5. F

    Screenshot for Media Convertor

    You can generate a random thumbnail by just getting the whole video duration in seconds, then generating a random number with that as the upper limit, and declare that result as the variable for the converter to use, instead of the usual value.
  6. F

    How to disable the folder URL view?

    Just like the title says. I have no purpose of the folder url for the front-end so I want to disable it.
  7. F

    Disable public folder view on front-end only

    I'll do it myself then. I just had to make sure if there's an option already or not.
  8. F

    Disable public folder view on front-end only

    May I ask where on options can I do so? I'm using v4.3 of the script and can't seem to find it.
  9. F

    Disable public folder view on front-end only

    The format of directory urls are like this: website.tld/<number>~f It is accessible and the share URL is the same format no matter how the directory is named.
  10. F

    Disable public folder view on front-end only

    I want to ask if it is possible to now allow any front-end public folder view, but still allow the front-end download pages of files to be accessible. I don't want the files being listed on front-end, and the permalink structure is predictable as well so I assume that someone who knows the site...
  11. F

    remote URL upload not work for Flysystem Sftp server type

    Check the firewall, the port, and SELinux as well to be sure.
  12. F

    How to play mkv or avi using html5 player

    There's no way an mkv file is the same as an mp4 file. They're different container formats. Maybe what you're saying is that they're already in h264/aac formats but muxed in mkv container. AFAIK there's an option to define mkv as a media format, and html5 players should never have any problems...
  13. F

    YetiShare v4.3 Beta Bug Tracker

    I just received a mail of having the 4.3 released for download. I think I'd wait for a few weeks though, just to be sure that all possible and potential issues are taken care of.
  14. F

    Media Converter Screenshot - Setting to % duration instead of # of seconds

    I don't get it. Can you please elaborate that code above and what each variable does/represents? I'm thinking about knowing how to make ffmpeg output the total video duration by seconds into a variable so I can substitute it to the 'define' function. define("SCREENSHOT_SECONDS", $duration )...
  15. F

    Media Converter Screenshot - Setting to % duration instead of # of seconds

    Like the title says, I'd like to know of a way to configure the Media Converter Plugin to get the screenshot based from the percentage of the video's total duration (e.g. 50%), instead of having an absolute number of seconds (e.g. 15 seconds). Is there a way for the convert.php to read and know...