LINERPAY SIMPLE LICENSE SYSTEM
==============================

CENTRAL SERVER
--------------
Upload central/license.php to:
https://licence.linerpay.in/license.php

Edit the $licenses array there.

ACTIVE:
'status' => 'active'

SUSPEND:
'status' => 'suspended'

EXPIRE:
change the expiry date to a past date.

CUSTOMER PACKAGE
----------------
The customer package contains:
- license_guard.php
- index.php (guard added)
- payment.php (guard added)
- return.php (guard added)
- .user.ini (auto_prepend guard)

Before giving a package to a customer, change in license_guard.php:
$licenseKey = 'LP-PAN-001';

and add the same key/domain in central/license.php.

IMPORTANT
---------
This is a remote license check. It will stop the normal application when
license is suspended/expired or the domain does not match. Because plain
PHP source remains readable, a customer with full server/source access can
technically modify the PHP or configuration to bypass it. For stronger
source protection use ionCube (or another PHP encoder) on the application
files after integrating this guard.

DEPLOYMENT
----------
Create/use the subdomain:
https://licence.linerpay.in

Upload license.php into that subdomain's document root.

Test:
https://licence.linerpay.in/license.php?action=check&key=LP-PAN-001&domain=panfind.linerpay.in

The customer package points its license check to this licence subdomain.
