Page 5 of 6

Posted: Thu Dec 06, 2007 12:25 am
by Matt
Sneak Peek - hosting MReg System on your own websites/servers:

Screenshot

Posted: Thu Dec 06, 2007 5:22 am
by GeoTrail
Sweet, :drewling:

Posted: Thu Dec 06, 2007 4:17 pm
by Rook Zimbabwe
This looks fantastic! Keep up the good work!!!

If I can be a hinderance, just let me know! 8)

Posted: Sun Dec 30, 2007 8:41 pm
by Matt
Version 3.5 released!

Major changes in the way it uses the server, allowing you to finally host your own server.
Also bug fixes in sending emails.

Enjoy!

Posted: Mon Dec 31, 2007 12:09 am
by mskuma
Great Matt! This update ought to please many people. Thank you. Happy New Year to you.

Posted: Mon Dec 31, 2007 9:11 pm
by r_hyde
Top-notch stuff, Matt, top-notch! I hope the holidays have been as good to you as you have been to this community 8)

Posted: Tue Jan 15, 2008 2:03 pm
by Morty
Hi Matt.

Thanks for that update.
I have one question. If I try to instal the script on my webspace and run the MRegServerSetup it says I need the zend optimizer. Is there a way to run it, without that?

Best wishes, Morty

Posted: Tue Jan 15, 2008 8:47 pm
by Matt
Not at the moment, I encoded it and it must be run using the Zend Optimizer to work. I would recommend emailing your webhost and see if they would be kind enough to install it. Most services out there actually do have it preinstalled. At this time I do not want to give away the source code.

Posted: Wed Feb 13, 2008 8:40 pm
by Andre
Now added to the DeveloperTools section on www.PureArea.net too! :D

Posted: Wed Feb 13, 2008 9:07 pm
by Matt
Andre wrote:Now added to the DeveloperTools section on www.PureArea.net too! :D
Thanks!

Also guys, a lot of new features are being worked on right now, like key types (so certain keys could unlock certain features in a program), master keys (which allow users to create a certain number of keys for other computers), and a lot more.

Posted: Sun Mar 02, 2008 8:51 am
by yoxola
Hi, Matt

This is very nice and generous, would you have time to add a user defined prefix like thing?

for example, instead of "users", we can set it as "mreg_users" or "drm_users" etc, this can make database maintain easier.

Posted: Fri Apr 18, 2008 8:02 pm
by Matt
Yep, added to the to-do list.

Posted: Wed Jun 11, 2008 4:09 am
by Matt
If anyone is still interested, yes I am still working on version 4.0 and a PHP class as well:

Heres a small update to fill everyone in on the PHP class and an example of how it works.

The PHP class allows you to create keys automatically on your website, which could happen directly after a purchase (or download) of your game. You can also create your own applications with it for your website, for example a system to allow customers to edit their information and keys.
In version 4.0, master keys are introduced. If a key is a master key, it can create a certain number of extra keys for more computers. This is useful if you are selling your application or game to, for example, a school and they need multiple keys for their computers and add keys when more computers are bought.
With the PHP Class you can easily program online a system for whoever bought a master key to create and manipulate extra keys. Trust me, it's easier and a lot better than it sounds.

Anyway, here is a quick example of something the MReg System PHP class can do. This example just loads a list of keys for a user and prints it out on the screen.

Code: Select all

<?php
		$MReg = new MRegSystem();
		if ($MReg->init("username", "password", "My Game") == false ) {
			die("Error: init");
		}
		
		$client = $MReg->getClient("John");
		$keys = $client->getKeys();
		if ($keys == 0) {
			echo "no keys";
			exit();
		}
		if ($keys == -1) {
			echo "error getting keys";
			exit();
		}
		
		for ($a=0; $a<count($keys); $a++) {
			echo $keys[$a]->getKey()."<br />";
		}
?>
That was a quick example I created to show you how the MReg System PHP class works. Of course it will contain functions to control every aspect of your MReg System data which I have not yet shown to you ;)

Stay tuned in for more updates on version 4.0 :)

edit: Also a .pbi file will be released to be used with PureBasic so you will not have to implement the DLL yourself.

Matt

Posted: Wed Jan 07, 2009 1:41 pm
by besko
Hello we waiting new version :) can we know how its going?

Re: MReg System

Posted: Sun Mar 02, 2014 5:40 pm
by Tenaja
This looks like a handy tool, but the developer has not been on the forum since 2011. Does anybody know if the source has ever been released?