How to Stop a Wordpress Plugins Trial from Expiring?

the45master

Registered Member
Joined
Jan 8, 2014
Messages
79
Reaction score
10
I have this plugin on my site: http://wordpress.org/plugins/leaflet-maps-marker/ Leaflet Maps Marker


Im using the trial version right now, they emailed me the license code, then I entered it in the backend inside wordpress here: http://gyazo.com/f8b84ef4cec7f01c863e5acd8fd16542


Is there a way in the PHP code of the plugin, to prevent it from expiring? Something to delete or change? Here is the code for the plugins "leaflet-license.php" file: http://pastebin.com/Zg2HvZh7 -Thats just 1 file though, maybe you have to edit other ones also, idk?

-thanks
 
I would also like to learn that too... I hardly believe there is a way, but let's see..
 
Not encoded, can you please upload original file without copy-ing and past-ing it into your Notepad? The format is ruined.
In anyway - It's most likely to be easily possible.
EDIT - The file is encoded, but can be easily decoded without any tools.
EDIT - You can't stop it from expiring, since it doesn't depend on any of your server-side files, they don't access you, you access them.
 
Last edited:
I dont know how to send you just the file, but here is the entire plugin, the php files are all inside it, so I assume you can look at it individually: http://www.sendspace.com/file/g328el

Not encoded, can you please upload original file without copy-ing and past-ing it into your Notepad? The format is ruined.
In anyway - It's most likely to be easily possible.
 
there is always a way. hire some crackers.. :)
 
Well I was just hoping some experience programmer would know how to. Didnt want to have to hire someone. Not sure the difficulty of it, maybe its really easy or maybe its really hard

there is always a way. hire some crackers.. :)
 
I sent you a PM. Wanted to confirm a few things. Im pretty sure theres a way to stop it from requiring a key, just use the files that create the functions plugin, and ignore the rest. Basically use it without paying is what I mean. ....

Not encoded, can you please upload original file without copy-ing and past-ing it into your Notepad? The format is ruined.
In anyway - It's most likely to be easily possible.
EDIT - The file is encoded, but can be easily decoded without any tools.
EDIT - You can't stop it from expiring, since it doesn't depend on any of your server-side files, they don't access you, you access them.
 
Yes, just got a new update, looked into - "leaflet-api.php", there is a way, poor coding probably.
 
I can't reply btw, 1 post, forgot my other accounts password.
EDIT : I don't know for sure, I'll upload leaflet-api.php and if you can check it?
Basically what I'll do is just change "Is Active" in all ways to True and "[expires]" to false.
But I'm not a good programmer though =P.
If anyone here is an experienced in - PHP check "function lmm_check_signature()" in "leaflet-api.php".
Just so you won't consider I'm uploading a shell or a virus - you can try to change yourself.

if (time() >= $expires) {
return false;

to

if (time() >= $expires) {
return $is_valid;
 
Last edited:
***post edited /removed****
 
Last edited:
***post edited***
 
Last edited:
I made the change you posted, switched it to "return $is_valid;" and the plugin is still working. But in the settings it says theres 18 days left, but maybe it just says that and will still keep working anyways after that? Idk, but it still says it will expire in 18 days
 
I got it and yes, it will keep saying that, the only way to check is to negatively affect it, I'll PM you more about it, just PM'ed in Email.
 
Marsilirus ^ above is the man! Thread closed, got answer! thanks Marsilirus
 
Last edited:
Back
Top