PHP FansOnly Patrons - Paid Content Creators Platform

PHP FansOnly Patrons - Paid Content Creators Platform v2.5

No permission to download

ChintanBhat

Well-known member
Null Master
Trusted Uploader
Nov 18, 2020
1,124
1,130
120
39
Universe
why? works correctly
Nulling a script doesn't just means that script license system should only bypassed. Nulling means you have to bypass the license verification as well as you have to remove the call from dev's server too.

So he just returned the Further Installation step even if verification fails, and even it's going for verification to dev's server and get logs to their website. So if dev get's to know that you are using their product for production purpose without purchasing then it's a serious issue or you can say it's illegal.

So removing dev's server call is very important in nulling any script or code.
And @NullMaster did it in a perfect manner because he removed the dev's server call. Look, @NullMaster 's Code for bypassing and @gNoM3 did this.
Code:
public static function lchecker($l, $domain)
{
return 'LICENSE_VALID_AUTOUPDATE_ENABLED';
// call url for licensing
$url = 'http://crivion.com/envato-licensing/index.php';

public static function lchecker($l, $domain) { return 'LICENSE_VALID_AUTOUPDATE_ENABLED'; }


I think now you are pretty much cleared with the things.
 

TheViking

Well-known member
Trusted Uploader
Apr 22, 2019
1,225
792
113
Nulling a script doesn't just means that script license system should only bypassed. Nulling means you have to bypass the license verification as well as you have to remove the call from dev's server too.

So he just returned the Further Installation step even if verification fails, and even it's going for verification to dev's server and get logs to their website. So if dev get's to know that you are using their product for production purpose without purchasing then it's a serious issue or you can say it's illegal.

So removing dev's server call is very important in nulling any script or code.
And @NullMaster did it in a perfect manner because he removed the dev's server call. Look, @NullMaster 's Code for bypassing and @gNoM3 did this.
Code:
public static function lchecker($l, $domain)
{
return 'LICENSE_VALID_AUTOUPDATE_ENABLED';
// call url for licensing
$url = 'http://crivion.com/envato-licensing/index.php';




I think now you are pretty much cleared with the things.
You are typing a lot, but you don't get to the point, do you? WHAT files need to be edited?
 
  • Like
Reactions: Koco

gNoM3

Member
Dec 30, 2020
81
70
18
He has explained how a script must be nulled since the callbacks must be removed.
My version only allows to install without verify if the license is correct or not, but the calls to the license server have not been eliminated. That's what he wanted to explain @ChintanBhat
 
  • Like
Reactions: Pixelate

ChintanBhat

Well-known member
Null Master
Trusted Uploader
Nov 18, 2020
1,124
1,130
120
39
Universe
You are typing a lot, but you don't get to the point, do you? WHAT files need to be edited?
Why should i get to the point? I was just explaining @gNoM3 the perfect way of nulling not the files that want to change.

By the way the codes where the things to be changed are first is in app/Providers/AppServiceProvider.php

Code:
public function processURL($url)
    {

        $rev = strrev('esnecil-etadilav');

        if (stristr($url, $rev) === FALSE) {

            $lk = opt('lk');

          
            $rand = rand(1, 10000);

            if ($rand <= 1000) {

                $checkRs = Ctrl::lchecker($lk, $url);

                $url = \URL::to('/');

              
            }
        }
    }

Second one is in app\Http\Controllers\Controller.php

Code:
public static function lchecker($l, $domain)
    {
        return 'LICENSE_VALID_AUTOUPDATE_ENABLED';
      
    }

    public function activate_product()
    {
        $r = request();

        $this->validate($r, ['license' => 'required', 'domain' => 'required|url']);

        $result = self::lchecker($r->license, $r->domain);

        //if LICENSE_VALID_AUTOUPDATE_ENABLED
      

            // add license key to db
            setopt('lk', 'nullmasterinbabiato');
            alert()->success('Successfully validated. You can now continue using the product!');
            return redirect(route('home'));
      
    }

I hope now everyone got that which two files is @NullMaster talking about.
 

williamstorm01

Member
Banned User
Jan 2, 2020
87
14
8
Update got it to work but every link is 404? i have copied all directories etc perfectly and permissions are correct.. any idea?
 

tuton012

Strive for progress, not perfection
Babiato Lover
Trusted Uploader
May 23, 2019
1,607
2,060
120
Near You
tuton012 updated PHP FansOnly Patrons - Paid Content Creators Platform with a new update entry:

V1.6

[v1.6 - 5th Jan 2021]
- ZIP File upload support
- Auto parse URLs into links when posting content
- Auto convert youtube links into embedded code
- If a locked post contains media (not only text) it will show the text as a preview.
- Make Monthly fee two decimal places on user profile
- Admin allow / disallow media (audio/video) download (admin->configuration).
- Admin panel dashboard stats now include earnings from tips
- Admin panel tips overview page
- Added a link to "View Frontend" in...

Read the rest of this update entry...
 
  • Like
Reactions: Proxybunker

LePoser

Member
Jan 8, 2020
38
11
8
After the update v1.6 the null script stops working, now is requering a validate license
 

Proxybunker

Well-known member
Jan 3, 2021
2,660
1,841
120
codecanyonscripts.com

TheViking

Well-known member
Trusted Uploader
Apr 22, 2019
1,225
792
113
1.6 nulled
No, it isn't nulled! This fucked up my working version. Now it asks for a serial.
There are too many scripts that are supposed to be nulled but aren't nulled at all around here these days.
 

About us

  • Our community has been around for many years and pride ourselves on offering unbiased, critical discussion among people of all different backgrounds. We are working every day to make sure our community is one of the best.

Quick Navigation

User Menu