Search results

  1. adam

    The possibility of canceling the upload process

    This has been added for the next release due soon. So the cancel icon on the each file remains until each upload is complete. There's also a new button next to the "Hide" button that cancels all pending uploads.
  2. adam

    Premium Users Server And File Size Priority

    This one has also been added to the next release.
  3. adam

    Premium Users Server And File Size Priority

    This has been added to the next release due soon. Example:
  4. adam

    Script Language and Framework

    Hi, I think I responded to your support ticket. For anyone else - the script is written in PHP. The framework is a custom MVC framework similar to Symfony. It uses Twig templating and composer for third party libraries. Thanks, Adam.
  5. adam

    Cannot switch from private to public - folder privacy

    Hi, Make sure that the "Default Privacy" setting in the account is public. (here on our demo site - https://fhscript.com/account/edit) Thanks, Adam.
  6. adam

    Class 'App\Helpers\LogHelper' not found

    Ignore my last post, I've located your license for the script. The code requires a Linux host, it wont run on Windows. You can see the minimum requirements here: - https://yetishare.com/support.html If you need to run a local copy for dev purposes, I'd recommend VirtualBox for a virtual Linux...
  7. adam

    Possible to expose SMB/CIFS file share?

    For the SMB/CIFS share, as long as it's reachable from your server, then you can add it as "Local" storage within the script. There's some guidance here which may help: https://support.mfscripts.com/public/kb_view/71/ There's no way to simply mirror files into the script, since the script...
  8. adam

    Custom Login API or JSON API for YetiShare

    Hi, We did have a LDAP plugin for v4 but it's not been migrated yet for v5. There's nothing else really which would hook into any external authentication process. We could probably look at creating something as a custom job if you were interested. Thanks, Adam.
  9. adam

    WebDav problem

    There may be a way round that, although it'll require some code tweaks. How did you find out that was the issue, did it work when you enabled the option?
  10. adam

    WebDav problem

    Ok, that's the only real difference with our demo site, it has no external storage servers. I'm not sure what else could cause it, I'll have another look online.
  11. adam

    WebDav problem

    So all set as local servers?
  12. adam

    WebDav problem

    It's the first time it's been reported. There was no changes around this in the latest release. Looking at the code, it returns a stream to the final download url, so should download like any other token download in the script. return fopen($downloadUrl, 'rb', false...
  13. adam

    WebDav problem

    Are you using external storage servers or is it all on the same server?
  14. adam

    WebDav problem

    I would merge the following with your other php location block: location ~ \.php$ { fastcgi_param MOD_X_ACCEL_REDIRECT_ENABLED on; } I don't see what else would cause downloads to go slow over webdav. I'll double check the code...
  15. adam

    WebDav problem

    Hi, Are you seeing faster speeds when downloading directly with the script? Also, are you using xaccelredirect, xsendfile or none? (the advanced downloads option on the file server admin settings) Thanks, Adam.
  16. adam

    Cache On S3

    Not at the moment. You can share a link to a folder, then the user can click to download it as a zip. I guess you could amend it to append a parameter on the end of the url like "?download_zip=true". The problem would be that the zip file needs to be generated before download, so it can never be...
  17. adam

    Account keeps automatically switching to Disabled

    It's difficult to do without some real changes to how this works. You might be best switching them to another package if you need to change their account expiry period. Or we could look at having an account based setting which overrides any package setting, but that would need some dev.
  18. adam

    Remove "Download All Files (zip)" Function

    I see, you're referring to bandwidth usage rather than CPU load. You need to search globally for the function, it'll be used in a number of places. We generally can't offer guidance on code changes, it's not something we include within the support. However, if you search globally for...
  19. adam

    Cache On S3

    Not at the moment. Although you can use a CDN to serve the images. Via the edit file server popup, see the CDN tab. It'll still create the image previews on your server, however they'll be sent via the CDN after the first request. They're routed via the script using the S3 API. There's no...
  20. adam

    Error while editing Folder

    Have a look in: "\app\helpers\FileFolderHelper.class.php" Find: self::loadAllActiveByAccount($accountId, 1000); (try 500 instead of 1000 if you can't find it) Increase the number like this: self::loadAllActiveByAccount($accountId, 5000); The limit is there for performance reasons. You may...