PHP PHPMyLicense v3.4.81 – Advanced PHP Licensing System

virgilio183

Well-known member
Pro
Master
Diamond
Elite
Joined
May 16, 2021
Messages
25,531
Reaction score
29,716
Points
113
NullCash
578,927
vlh.png

With this script, you can license your own PHP projects. Issue licenses, and control these licenses remotelly. This script also have a built-in php obfuscator, to protect your code from being stolen.


Demo: http://codecanyon.net/item/phpmylicense/11719122
 

Attachments

  • codecanyon-11719122-phpmylicense.zip
    7.4 MB · Views: 20

TomCenter

Member
XNullUser
Joined
Jan 2, 2021
Messages
328
Reaction score
1
Points
18
NullCash
1
THX but item not sell anymore on codecanyon do you know why ?
 

ferrariyisat

Member
XNullUser
Joined
Dec 19, 2020
Messages
90
Reaction score
0
Points
6
NullCash
19
thx bro, i will try it, nice share
 

HMC

Well-known member
Master
Diamond
Elite
Joined
May 29, 2021
Messages
508
Reaction score
1,088
Points
93
Location
Server Room
Website
localhost
NullCash
9,356
very interesting, thanks for sharing
Post automatically merged:

this script is not nulled, this script won't work without the purchase code :(
 
Last edited:

singlewolf

Member
XNullUser
Joined
Apr 18, 2021
Messages
137
Reaction score
0
Points
16
NullCash
0
this script is not nulled, this script won't work without the purchase code :(
 

Seken

New member
XNullUser
Joined
Feb 24, 2021
Messages
1
Reaction score
0
Points
1
NullCash
5
awesome sharing. ineed this script. thank you bro.
 

Siekiera

Active member
XNullUser
Joined
Sep 7, 2020
Messages
119
Reaction score
30
Points
28
NullCash
0
wow, item no longer avaliable on demo...
 

virgilio183

Well-known member
Pro
Master
Diamond
Elite
Joined
May 16, 2021
Messages
25,531
Reaction score
29,716
Points
113
NullCash
578,927
very interesting, thanks for sharing
Post automatically merged:

this script is not nulled, this script won't work without the purchase code :(
This software is not nulled .. but to make it nulled, please follow what i tell you to do ...

1. replace validation.php that you will find attached, present in the install / includes folder
2. write nulled in the purchase code field

then refresh your browser with which you are trying to install this script ... (Please make sure that the system where you will install this script has the correct server requirements).. Bingo, The Application start working!!step-one.jpg
step-two.jpg
step-three.png
Post automatically merged:

this script is not nulled, this script won't work without the purchase code :(
This software is not nulled .. but to make it nulled, please follow what i tell you to do ...

1. replace validation.php that you will find attached, present in the install / includes folder
2. write nulled in the purchase code field

then refresh your browser with which you are trying to install this script ... (Please make sure that the system where you will install this script has the correct server requirements).. Bingo, The Application start working!!
step-one.jpgstep-two.jpgstep-three.png
Post automatically merged:

View attachment 42717

With this script, you can license your own PHP projects. Issue licenses, and control these licenses remotelly. This script also have a built-in php obfuscator, to protect your code from being stolen.


Demo: http://codecanyon.net/item/phpmylicense/11719122
Help All

This software is not nulled .. but to make it nulled, please follow what i tell you to do ...

1. replace validation.php that you will find attached, present in the install / includes folder
2. write nulled in the purchase code field

then refresh your browser with which you are trying to install this script ... (Please make sure that the system where you will install this script has the correct server requirements).. Bingo, The Application start working!!
step-one.jpg
step-two.jpg
step-three.png
 

Attachments

  • validation.php.zip
    1.1 KB · Views: 10
  • validation.php.zip
    1.1 KB · Views: 7
  • validation.php.zip
    1.1 KB · Views: 7

dupek

New member
XNullUser
Joined
May 27, 2022
Messages
2
Reaction score
0
Points
1
NullCash
3
Ive been looking for this script to play with ill give it a try when i have enough NCash

Thank you.
 

nick

Member
XNullUser
Joined
Oct 11, 2021
Messages
137
Reaction score
0
Points
16
NullCash
278
this script is not nulled, this script won't work without the purchase code
 

ChrisLear87

New member
XNullUser
Joined
May 23, 2022
Messages
17
Reaction score
0
Points
1
Location
Northeast UK
NullCash
82
i replaced the validation file and got it installed but has error contacting verification server on index page.
 

amaninmb

New member
XNullUser
Joined
Aug 25, 2021
Messages
11
Reaction score
0
Points
1
NullCash
1
teşekkürler. deneyelim. Ben iletişim hatası aldım umarım düzelir
 

FallenAngel

Active member
Elite
Joined
Oct 6, 2021
Messages
502
Reaction score
113
Points
43
NullCash
69
i replaced the validation file and got it installed but has error contacting verification server on index page.

Try this

PHP:
<?php
/**
* Validation class
*/
class Validation extends Validation_Core
{
    // These function are part of the default $steps array to help you
    // illustrate how this script works. Feel free to delete them.

    function validate_license($value, $params = array())
    {       
            return true;
  
    }

    function validate_system_path($value, $params = array())
    {
        if ( !is_file(rtrim($value, '/').'/system/config.php') || !is_writable(rtrim($value, '/').'/system/config.php') ) {
            $this->error = rtrim($value, '/').'/system/config.php file does not exist or is not writeable.';
            return false;
        }

        return true;
    }
}
 
Top