Log in

View Full Version : An idea on how to make a trial script


harmor19
02-28-2006, 09:35 PM
Lets say you made the expire date 3/5/06

Would it be possible to have a script run until that date and when it is met automatically delete the tables?

Aesma Deva
03-01-2006, 11:51 AM
Make a conditional that would run a query to drop the tables if the date was the one you want?

Marco van Herwaarden
03-01-2006, 12:14 PM
Dropping data is not considered a "nice" way of limiting a Trial. It could even be against the law in some places of the world.

Better just to make your script stop functioning. Anyhow without encrypting your files, it would be easy to work around a limit.

harmor19
03-01-2006, 02:55 PM
Dropping data is not considered a "nice" way of limiting a Trial. It could even be against the law in some places of the world.

Better just to make your script stop functioning. Anyhow without encrypting your files, it would be easy to work around a limit.

Now I need to write a test script that will do this.

The most difficult thing is making hard to edit the trial code

UK Jimbo
03-02-2006, 10:36 PM
As it's a scripting language PHP is difficult to "encode" or hide the source of. Two solutions that spring to mind are:

- Compiling the code and distrubiting it as byte code of sorts
- Obfuscating it (I'm sure there are products out there, do a search for "php obfuscator" or "php obfuscate")

The first option might be difficult as I suspect you'll need "not-free" software to create the files and it'll rely on the end user having certain modules installed (it's also unlikely to work with the vBulletin plugin system which evals the code).

Just pointers but I hope it's of some use to you :)