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

phpContent - AI Content Generator Platform (SaaS)

phpContent - AI Content Generator Platform (SaaS) v1.5.0 Untouched

No permission to download

How to null this Script​

This script has an api that queries the license, it is a good method to check active licenses.

I've run into this type of protections many times and it's hard to null these types of scripts when you don't create the database, but get it from the developer's server...

Anyway here we go...

Step 01​

Open the file license.blade.php located in​

Code:
..\resources\views\admin\settings\

Put a text that helps the user in the installation and that tells him, put a random value.​

Edit the line #24​

Code:
                <input id="i-license-key" type="text" class="form-control{{ $errors->has('license_key') ? ' is-invalid' : '' }}" placeholder="Insert Random Value Here" name="license_key" value="{{ old('license_key') }}" autofocus>

This is the hardest part​

Step 02​

Open the file AdminController.php located in​

Code:
..\app\Http\Controllers\

Change the line #24 and delete the word "verify" as like this code:​

Code:
                Setting::where('name', '=', 'license_key')->update(['value' => $request->input('license_key')]);

Below the line #24, add this line:​

Code:
Setting::where('name', '=', 'license_type')->update(['value' => 'Extended']);

Step 03​

Delete or comment these lines between line #126 until line #143​

Code:
//                try {
//                    $response = $httpClient->request('POST', 'https://api.lunatio.com/license',
//                        [
//                            'form_params' => [
//                                'license' => $request->input('license_key'),
//                                'product' => config('info.software.name')
//                            ]
//                        ]
//                    );
//
//                    $output = json_decode($response->getBody()->getContents());
//
//                    if ($output->status == 200) {
//                        Setting::where('name', '=', 'license_key')->update(['value' => $request->input('license_key')]);
//                        Setting::where('name', '=', 'license_type')->update(['value' => $output->type]);
//                    } else {
//                        return redirect()->back()->with('error', $output->status . ' - ' . $output->message);
//                    }

Step 04​

Comment or delete these lines between #146 until #148​

Code:
//                } catch (\Exception $e) {
//                    return redirect()->back()->with('error', $e->getMessage());
//                }

And Voilá, this script is nulled and my procedure expained here, will work for future versions as well​


And, here is the Nulled file AdminController.php​

Password​

*** Hidden text: cannot be quoted. ***
thanks
 
can you share with me ur file?

How to null this Script​

This script has an api that queries the license, it is a good method to check active licenses.

I've run into this type of protections many times and it's hard to null these types of scripts when you don't create the database, but get it from the developer's server...

Anyway here we go...

Step 01​

Open the file license.blade.php located in​

Code:
..\resources\views\admin\settings\

Put a text that helps the user in the installation and that tells him, put a random value.​

Edit the line #24​

Code:
                <input id="i-license-key" type="text" class="form-control{{ $errors->has('license_key') ? ' is-invalid' : '' }}" placeholder="Insert Random Value Here" name="license_key" value="{{ old('license_key') }}" autofocus>

This is the hardest part​

Step 02​

Open the file AdminController.php located in​

Code:
..\app\Http\Controllers\

Change the line #24 and delete the word "verify" as like this code:​

Code:
                Setting::where('name', '=', 'license_key')->update(['value' => $request->input('license_key')]);

Below the line #24, add this line:​

Code:
Setting::where('name', '=', 'license_type')->update(['value' => 'Extended']);

Step 03​

Delete or comment these lines between line #126 until line #143​

Code:
//                try {
//                    $response = $httpClient->request('POST', 'https://api.lunatio.com/license',
//                        [
//                            'form_params' => [
//                                'license' => $request->input('license_key'),
//                                'product' => config('info.software.name')
//                            ]
//                        ]
//                    );
//
//                    $output = json_decode($response->getBody()->getContents());
//
//                    if ($output->status == 200) {
//                        Setting::where('name', '=', 'license_key')->update(['value' => $request->input('license_key')]);
//                        Setting::where('name', '=', 'license_type')->update(['value' => $output->type]);
//                    } else {
//                        return redirect()->back()->with('error', $output->status . ' - ' . $output->message);
//                    }

Step 04​

Comment or delete these lines between #146 until #148​

Code:
//                } catch (\Exception $e) {
//                    return redirect()->back()->with('error', $e->getMessage());
//                }

And Voilá, this script is nulled and my procedure expained here, will work for future versions as well​


And, here is the Nulled file AdminController.php​

Password​

*** Hidden text: cannot be quoted. ***
I apologize for the incomplete explanation. I have followed all the steps, but I am encountering a 500 error.
 
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