S2member Secure File Browser Replqacement

Since s2member Secure File Browser is no longer developed and is now a mess with errors and not working fully, does anyone have any alternatives?

I was really hoping s2member would pick up the project.

If you forked it and started fixing errors maybe other might join you…

I am not a developer.

I would be glad to help you. Please ‘arrest’ any bugs you find – I’ll fix them. I also sent you a PM.

1 Like

There a few but it starts with this with tons of log entries

[20-Aug-2025 21:17:57 UTC] PHP Deprecated: Function create_function() is deprecated in //htdocs/wp-content/plugins/s2member-secure-file-browser/class/psk_s2msfb.class.php on line 161

in /s2member-secure-file-browser/class/psk_s2msfb.class.php

replace

add_action( 'widgets_init' , create_function( '' , 'register_widget( "' . PSK_S2MSFB_WIDGET_DOWNLOAD_ID . '" );' ) );
add_action( 'widgets_init' , create_function( '' , 'register_widget( "' . PSK_S2MSFB_WIDGET_FILES_ID . '" );' ) );

with

add_action( 'widgets_init', function() { register_widget( PSK_S2MSFB_WIDGET_DOWNLOAD_ID ); } );
add_action( 'widgets_init', function() { register_widget( PSK_S2MSFB_WIDGET_FILES_ID ); } );

but be warned, making code change will automatically make you a developer.

2 Likes