Search results

  1. D

    Referral Plugin

    It would be great to have an option to allow members to share links with friends / family and get an increase of storage space as a reward. Word of mouth and user promotion is key in building sucessful sites. Example: Free user or paid user starts with 20GB of storage, sends out links to...
  2. D

    5.x Performance Boost w/code

    UPDATED 5/2: Recently spent some time try looking at ways to improve page load time. Identified an easy win that cuts the page load time in half for files that are shared (Unlogged In Visitors). Since visitors viewing a shared file dont have the ability to upload (Without Modification) it...
  3. D

    Hotlink Protection

    Are you referring to "direct links" via the sharing code like www.domain.com/file/asdf/myfilename.png or clicking on the "Download" button?
  4. D

    Plugin: Media Converter & MP4 Options

    Likewise, posting. This is for version 5.3 but should work for other versions with some tweaking. sudo vi /var/www/html/plugins/mediaconverter/tasks/process_converter_queue.cron.php Line 467 if ($file['extension'] != 'mp4' && $pluginSettingsArr['output_type'] == 'mp4') {...
  5. D

    Make it an option to block TOR Browser

    Note: The below will prevent any TOR IP from accessing your site or accessing any files linked or hosted by your site. Daily updated TOR Exit IP List here: https://github.com/SecOps-Institute/Tor-IP-Addresses/blob/master/tor-exit-nodes.lst Write the output of that into /etc/nginx/tor-ip.conf...
  6. D

    Redirect successful login

    Gotcha. Yeah I believe the Multifactor Authentication is for the more recent releases ( Last few minor releases I believe )so not sure if that would be applicable to you. Yeah, I'd recommend renewing your support so you can link your account and so Adam can give you a hand.
  7. D

    Redirect successful login

    I know you mentioned not a caching issue but have you done: Site Configuration >> System Tools >> Purge Cache >> Purge Now ? Also there are may instances of "redirectUrl" in the AccountSecurityController.class.php file. Some are used with and without M2FA. Be sure your editing the correct...
  8. D

    shortUrl error

    I had the same issue and opened a ticket. Navigate to Site Configuration >> System Tools >> Database Browser >> Execute SQL: ALTER TABLE `file` CHANGE `shortUrl` `shortUrl` varchar(255) COLLATE 'utf8_bin' NULL AFTER `originalFilename`; Cheers
  9. D

    Dark Mode Switch!

    I spent quite a bit of time on this myself and have coded user selectable toggles before. That method has been superseded by using the "prefers-color-scheme: dark" method. It will detect the users system preferences and automatically present the site in the users preferred mode (Light or...
  10. D

    Plugin: Media Converter & MP4 Options

    Been using this for some time and it works great, though I have a couple suggestions for efficiency. I think there should be separate set of settings for files if the uploaded source file is MP4 and the Media Plugins >> Conversion Options >> Converted Output = MP4 Currently, there is no way to...
  11. D

    Links: Add "Direct Link" Option

    With Version 5.1 the option to highlight multiple files and then select "Links" offers: "File URLs", "HTML Code" and "Forum BBCode". Request to add that if "Allow Direct File Links" option is enabled for the "File Previewer Settings", that a "Direct Link" tab is an included option when "Links"...