• You MUST read the Babiato Rules before making your first post otherwise you may get permanent warning points or a permanent Ban.

    Our resources on Babiato Forum are CLEAN and SAFE. So you can use them for development and testing purposes. If your are on Windows and have an antivirus that alerts you about a possible infection: Know it's a false positive because all scripts are double checked by our experts. We advise you to add Babiato to trusted sites/sources or disable your antivirus momentarily while downloading a resource. "Enjoy your presence on Babiato"

WordPress Real Media Library - Media Categories / Folder File Managers

WordPress Real Media Library - Media Categories / Folder File Managers v4.22.12

No permission to download
Hello, found a way to remove the message. It's not a pretty one but it's working. :rolleyes:
With a search & rename tool, replace all "devowl.io" from all files with what you want.
like this the plugin will no more communicate with devowl.io !
Or just add this to the plugin's main index.php file just under the update_site_option additions:

delete_option ( 'rpm-wpc-hint_real-media-library' );
 
  • Like
Reactions: Karltoto
@startop @TimePeak

Real Media Library v4.21.11 (untouched)​

## 4.21.11 (2023-09-21)
**Note:** This package (@devowl-wp/real-media-library) has been updated because a dependency, which is also shipped with this package, has changed.
## 4.21.10 (2023-09-07)
**Note:** This package (@devowl-wp/real-media-library) has been updated because a dependency, which is also shipped with this package, has changed.
## 4.21.9 (2023-09-06)
### chore
* introduce empty i18n:generate:readme NPM script (CU-861n8mnx8)
1695339774978.png
 

Attachments

  • real-media-library-4.21.11-plugin.zip
    2.3 MB · Views: 16
Last edited:
  • Like
Reactions: Geek4Life59
Babak updated WordPress Real Media Library - Media Categories / Folder File Managers with a new update entry:

WordPress Real Media Library v4.21.11 - Media Categories / Folders File Manager

Download WordPress Real Media Library v4.21.11 - Media Categories / Folders File Manager Nulled Free
v4.21.11 - (2023-09-21)

**Note:** This package (@devowl-wp/real-media-library) has been updated because a dependency, which is also shipped with this package, has changed.

Read the rest of this update entry...
 

v4.21.12 (2023-09-29) - UNTOUCHED, needs to be nulled

chore​

    • review 1 (CU-85ztzbdjt)

docs​

    • remove not understandable commit messages from changelog (CU-861n7an31)

@nightcrawller give me a moment to null it
 

Attachments

  • real-media-library-4.21.12-untouched.zip
    2.3 MB · Views: 9
  • Like
Reactions: Snapper123

How to null Real Media Library​

(Thanks to @startop )

1. In index.php after line 16 with
PHP:
defined('ABSPATH') or die('No script kiddies please!'); // Avoid direct file request
add the following 2 lines:
PHP:
update_site_option( 'wpls_license_real-media-library', 'activated' );
update_site_option( 'wpls_activation_id_real-media-library', 'activated' );

You can also add hereafter one of the following to disable if you get some annoying message
PHP:
add_filter( 'option_rpm-wpc-hint_real-media-library', '__return_false' );
PHP:
delete_option ( 'rpm-wpc-hint_real-media-library' );

2. Go to the following file \real-media-library\vendor\devowl-wp\real-product-manager-wp-client\src\view\PluginUpdateView.php at line 75 you see the following, add 'return;' right after
PHP:
public function after_plugin_row()
{

It should look like this
PHP:
    /**
     * Show a notice in the plugins list that the plugin is not activated, yet.
     */
    public function after_plugin_row()
    {
        return;
        if ($this->getPluginUpdate()->getCurrentBlogLicense()->isFulfilled()) {
            [B][U]return;[/U][/B]
        }
        $wp_list_table = \_get_list_table('WP_Plugins_List_Table');

Done!
 
Last edited:
Babak updated WordPress Real Media Library - Media Categories / Folder File Managers with a new update entry:

WordPress Real Media Library v4.21.13 - Media Categories / Folders File Manager

Download WordPress Real Media Library v4.21.13 - Media Categories / Folders File Manager Nulled Free
v4.21.13 (2023-10-12)

Build Process
composer.lock had same content-hash accross some projects (CU-866aybq9e)
Maintenance
major update apidoc (CU-3cj43t)
major update jest-junit glob @types/jest jest ts-jest (CU-3cj43t)
major update typescript @typescript-eslint typedoc (CU-3cj43t)
major update webpack components (CU-3cj43t)

Read the rest of this update entry...
 
  • Love
Reactions: Snapper123

How to null Real Media Library​

(Thanks to @startop )

1. In index.php after line 16 with
PHP:
defined('ABSPATH') or die('No script kiddies please!'); // Avoid direct file request
add the following 2 lines:
PHP:
update_site_option( 'wpls_license_real-media-library', 'activated' );
update_site_option( 'wpls_activation_id_real-media-library', 'activated' );

You can also add hereafter one of the following to disable if you get some annoying message
PHP:
add_filter( 'option_rpm-wpc-hint_real-media-library', '__return_false' );
PHP:
delete_option ( 'rpm-wpc-hint_real-media-library' );

2. Go to the following file \real-media-library\vendor\devowl-wp\real-product-manager-wp-client\src\view\PluginUpdateView.php at line 75 you see the following, add 'return;' right after
PHP:
public function after_plugin_row()
{

It should look like this
PHP:
    /**
     * Show a notice in the plugins list that the plugin is not activated, yet.
     */
    public function after_plugin_row()
    {
        return;
        if ($this->getPluginUpdate()->getCurrentBlogLicense()->isFulfilled()) {
            [B][U]return;[/U][/B]
        }
        $wp_list_table = \_get_list_table('WP_Plugins_List_Table');

Done!
so in mu-plugins it can be done like
PHP:
add_filter( 'option_rpm-wpc-hint_real-media-library', '__return_false' );
add_filter( 'pre_option_rpm-wpc-noticeLicenseDismissDay_real-media-library', function(){
    return PHP_INT_MAX;
} );

add_filter( 'pre_update_site_option_wpls_license_real-media-library', function( $value ) {
    return 'activated';
});

add_filter( 'pre_update_site_option_wpls_activation_id_real-media-library', function( $value ) {
    return 'activated';
});
 
Last edited:
so in mu-plugins it can be done like
PHP:
add_filter( 'option_rpm-wpc-hint_real-media-library', '__return_false' );
add_filter( 'pre_option_rpm-wpc-noticeLicenseDismissDay_real-media-library', function(){
    return PHP_INT_MAX;
} );

add_filter( 'pre_update_site_option_wpls_license_real-media-library', function( $value ) {
    return 'activated';
});

add_filter( 'pre_update_site_option_wpls_activation_id_real-media-library', function( $value ) {
    return 'activated';
});
Thank you! But can you explain what's the purpose of having the code change with a mu-plugin? How does this work? Where should I put this code? Im not that big of a coder.
 
Thank you! But can you explain what's the purpose of having the code change with a mu-plugin? How does this work? Where should I put this code? Im not that big of a coder.
MU plugins are ALWAYS activated on your site, so make sure this plugin can always be updated (i.e. it is treated as being fully licensed)

If you don't want to use an MU plugin, download the free Code Snippets plugin from the WP Repository and add the above code in there.
 
Here is the latest untouched version

Real Media Library 4.21.14

:)
 

Attachments

  • real-media-library-4.21.14-plugin-untouched.zip
    2.3 MB · Views: 8
  • Like
Reactions: sakafa and bbo

Forum statistics

Threads
79,633
Messages
1,146,789
Members
250,983
Latest member
igorgbi
AdBlock Detected

We get it, advertisements are annoying!

However in order to keep our huge array of resources free of charge we need to generate income from ads so to use the site you will need to turn off your adblocker.

If you'd like to have an ad free experience you can become a Babiato Lover by donating as little as $5 per month. Click on the Donate menu tab for more info.

I've Disabled AdBlock