Jump to content

Recommended Posts

Hi there,

 

I have just made my first new professional uploading script and I have encoded parts of it but now I want to know how to license the script. So if they enter the correct license, it removes copyright. The copyright is in ProcessCopyright :).

I'm really new at licenses so you will have to help me from the bottom :)

 

Thanks very much for your help.

 

Best Regards,

Private_Guy

Link to comment
https://forums.phpfreaks.com/topic/64421-how-to-license-a-script/
Share on other sites

I recommend a third-party paid piece of software built for handling this type of thing such as Ioncube or Zend's encoder which handle the code through their own loading software.

 

Otherwise you would be looking at a potentially easy script to bypass.

A nice way would maybe try storing a text file on your own website server containing all possible license keys, in a secret location. Then, when your customers download the program and use it, they can go onto their admin panel and attempt to put in their license key. The PHP can read the contents of your secret file, and if what they entered are any of the valid license keys, activate it by removing the copyright.

 

Although, it's always easily possible to remove the text "Copyright by _ _ _ _ _ _ _" manually from the html or php. No matter where you put it, they can always hit ctrl-F and find the copyright text, and delete it. Whilst they can always find it themselves, a nice trick to conceal it from ctrl-F would maybe try doing this:

 

echo "c";
echo "op";
echo "y";
echo "ri";
echo "ght";

 

That way, it will appear the same, but on the control file, it wont appear on the ctrl-F method of manually removing the copyright.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.