• 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"

Lagom WHMCS Client Theme By RSStudio

Lagom WHMCS Client Theme By RSStudio 2.2.5 Nulled

No permission to download
ERROR:
Your server details do not match details saved on our licensing server. Please reissue the license key in our client portal or contact our suppport. Please act fast because after 27573 days, your theme will be switched to the default WHMCS theme and theme settings will be blocked. WHMCS-RS-Themes.png
Please provide a solution for this recurring error. Although clicking on "Refresh License Key" temporarily resolves it, the error resurfaces after a few days.
 
ERROR:
Your server details do not match details saved on our licensing server. Please reissue the license key in our client portal or contact our suppport. Please act fast because after 27573 days, your theme will be switched to the default WHMCS theme and theme settings will be blocked. WHMCS-RS-Themes.png
Please provide a solution for this recurring error. Although clicking on "Refresh License Key" temporarily resolves it, the error resurfaces after a few days.
Just ignore it. You still have 75 years!
 
  • Like
Reactions: webmaster
Well However the theme is still sending request directly to their verification server even though it's nulled.

Here's an email I got from the team who registered on my platform just to send me a support ticket.

I don't even know what to reply them or just ignore the message which will mean a copyright infringement.

1712972430618.png
 
ERROR:
Your server details do not match details saved on our licensing server. Please reissue the license key in our client portal or contact our suppport. Please act fast because after 27573 days, your theme will be switched to the default WHMCS theme and theme settings will be blocked. WHMCS-RS-Themes.png
Please provide a solution for this recurring error. Although clicking on "Refresh License Key" temporarily resolves it, the error resurfaces after a few days.
Well I have removed the remote checking from the Licensing script, except they're checking for the license details from another php file, but I have removed it and let's see how it goes on.

replace the file to my modified version to stop sending request to their licensing server and avoid getting notice of using their script.

\modules\addons\RSThemes\src\Template\License.php
 
Just search the variables or functions and replace

Below- Line 31:
PHP:
private $licenseDetails = ["status" => "", "service_status" => "Active", "license_status" => "Active", "nextduedate" => "2099-10-01", "version" => "1.0.0", "fullversion" => "1.0.0", "lastRemoteChecked" => "2099-10-01", "lastRemoteCheckedFail" => "", "lastRemoteCheckedSuccess" => "2099-10-01", "regdate" => "2023-10-01", "first_payment_amount" => "$0", "recuring_amount" => "$0", "payment_method" => "BusyBrain", "warningShowDate" => "", "deactivationDate" => "2099-10-01"];
Below- Line 261:
PHP:
    private static function loadRemoteLicense($licenseKey, $version, $templateName)
    {
        if (empty($_SERVER["SERVER_NAME"])) {
            $results = [];
            $results["emptyServerName"] = true;
            return $results;
        }
        $licenseFields = ["licensekey" => $licenseKey, "domain" => self::getDomain(), "ip" => "", "dir" => self::getDirPath(), "version" => $version, "cron" => \RSThemes\Helpers\AddonHelper::isCliMode(), "template" => $templateName];
        $query = "";
        foreach ($licenseFields as $k => $v) {
            $query .= $k . "=" . urlencode($v) . "&";
        }
        $results = [];
        $results["lastRemoteChecked"] = date("Y-m-d");
        if (!empty($licenseKey)) {
            $licenseFields["ip"] = $_SERVER['SERVER_ADDR'];
            // Assign each element from $array
            $results["status"] = "";
            $results["service_status"] = "Active";
            $results["license_status"] = "Active";
            $results["nextduedate"] = "2099-10-01";
            $results["version"] = "1.0.0";
            $results["fullversion"] = "1.0.0";
            $results["lastRemoteChecked"] = date("Y-m-d");
            $results["lastRemoteCheckedFail"] = "";
            $results["regdate"] = "2023-10-01";
            $results["first_payment_amount"] = "$0";
            $results["recuring_amount"] = "$0";
            $results["payment_method"] = "BusyBrain";
            $results["warningShowDate"] = "";
            $results["deactivationDate"] = "2099-10-01";

            $results["lastRemoteCheckedSuccess"] = date("Y-m-d");
            $results["remoteChecked"] = true;
            self::logDetails("RSThemes", "checkRemoteLicense-3", $licenseFields, $results);
            return $results;
        }
        $results["lastRemoteCheckedFail"] = date("Y-m-d");
        $results["status"] = "Active";
        $results["service_status"] = "Active";
        $results["license_status"] = "Active";
        $results["message"] = "Curl extension not found!";
        $results["messagecode"] = "errors.9";
        self::logDetails("RSThemes", "checkRemoteLicense-1", $licenseFields, $results);
        return $results;
    }
 
Last edited:
  • Like
Reactions: Nzjah
Just search the variables or functions and replace

Below- Line 31:
PHP:
private $licenseDetails = ["status" => "", "service_status" => "Active", "license_status" => "Active", "nextduedate" => "2099-10-01", "version" => "1.0.0", "fullversion" => "1.0.0", "lastRemoteChecked" => "2099-10-01", "lastRemoteCheckedFail" => "", "lastRemoteCheckedSuccess" => "2099-10-01", "regdate" => "2023-10-01", "first_payment_amount" => "$0", "recuring_amount" => "$0", "payment_method" => "BusyBrain", "warningShowDate" => "", "deactivationDate" => "2099-10-01"];
Below- Line 261:
PHP:
    private static function loadRemoteLicense($licenseKey, $version, $templateName)
    {
        if (empty($_SERVER["SERVER_NAME"])) {
            $results = [];
            $results["emptyServerName"] = true;
            return $results;
        }
        $licenseFields = ["licensekey" => $licenseKey, "domain" => self::getDomain(), "ip" => "", "dir" => self::getDirPath(), "version" => $version, "cron" => \RSThemes\Helpers\AddonHelper::isCliMode(), "template" => $templateName];
        $query = "";
        foreach ($licenseFields as $k => $v) {
            $query .= $k . "=" . urlencode($v) . "&";
        }
        $results = [];
        $results["lastRemoteChecked"] = date("Y-m-d");
        if (!empty($licenseKey)) {
            $licenseFields["ip"] = $_SERVER['SERVER_ADDR'];
            // Assign each element from $array
            $results["status"] = "";
            $results["service_status"] = "Active";
            $results["license_status"] = "Active";
            $results["nextduedate"] = "2099-10-01";
            $results["version"] = "1.0.0";
            $results["fullversion"] = "1.0.0";
            $results["lastRemoteChecked"] = date("Y-m-d");
            $results["lastRemoteCheckedFail"] = "";
            $results["regdate"] = "2023-10-01";
            $results["first_payment_amount"] = "$0";
            $results["recuring_amount"] = "$0";
            $results["payment_method"] = "BusyBrain";
            $results["warningShowDate"] = "";
            $results["deactivationDate"] = "2099-10-01";

            $results["lastRemoteCheckedSuccess"] = date("Y-m-d");
            $results["remoteChecked"] = true;
            self::logDetails("RSThemes", "checkRemoteLicense-3", $licenseFields, $results);
            return $results;
        }
        $results["lastRemoteCheckedFail"] = date("Y-m-d");
        $results["status"] = "Active";
        $results["service_status"] = "Active";
        $results["license_status"] = "Active";
        $results["message"] = "Curl extension not found!";
        $results["messagecode"] = "errors.9";
        self::logDetails("RSThemes", "checkRemoteLicense-1", $licenseFields, $results);
        return $results;
    }
Thanks for this, so we just add your code below the 2 mentioned lines and nothing to be replaced. Correct?
 
I could not understand.

Is this nulled safe to use or does it have a security problem?
 
firefox_QhdwX0Svtr.png

After the update, I am getting this popup in the rstheme settings. Any ideas on how to fix this?

Remove the code from this file.:
modules/addons/RSThemes/views/adminarea/includes/modals/mismatch-system-url.tpl
 
Well However the theme is still sending request directly to their verification server even though it's nulled.

Here's an email I got from the team who registered on my platform just to send me a support ticket.

I don't even know what to reply them or just ignore the message which will mean a copyright infringement.

1712972430618.png
Who said nulled item will not ping the author server?

You just null the license response.
Just changing 0 to 1 .. make an item nulled.

In order to completely make this hidden add authors domain in hosts
 
Who said nulled item will not ping the author server?

You just null the license response.
Just changing 0 to 1 .. make an item nulled.

In order to completely make this hidden add authors domain in hosts
Yes , some other nulled scripts instruct users to do this. But we need to know the authors domains used for licensing.
 
Who said nulled item will not ping the author server?

You just null the license response.
Just changing 0 to 1 .. make an item nulled.

In order to completely make this hidden add authors domain in hosts
What do you mean by add author's domain in host?
This is not understable.
 
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