Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Help] How to make a quick Aion Registration Web-Page

Newbie Spellweaver
Joined
Jun 2, 2007
Messages
19
Reaction score
4
It would be useful to know how to make a basic Registration WebPage and configure it to register accounts. A template for a web-page I found here





but it doesn't seem to connect to my mysql database...

Does anyone have any basic Aion Templates they could share? Or maybe help on getting this template to work? I'm sure many would love this.
 
Last edited:
Experienced Elementalist
Joined
Jun 29, 2010
Messages
216
Reaction score
71
It would be useful to know how to make a basic Registration WebPage and configure it to register accounts. A template for a web-page I found here





but it doesn't seem to connect to my mysql database...

Does anyone have any basic Aion Templates they could share? Or maybe help on getting this template to work? I'm sure many would love this.

I can help but i need the source for it, can you give me a download link?
If not tell me and i will create a simple register page for you
 
Upvote 0
Newbie Spellweaver
Joined
Jun 2, 2007
Messages
19
Reaction score
4
This link should work
Here is the source code, it requires ioncube and php

If you need the license key pm me.

Thanks!
 
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Jun 2, 2007
Messages
19
Reaction score
4
Ok I managed to figure out how to get it to work myself. For some reason the install.php still gives a sql execution error but editing the files works fine. first you have to combine al_server_ls and al_server_gs together into one. Then update the config.inc with the needed info adding the database info the recaptcha info and other things. you have to configure the smtp table and maybe a couple others. When it throws an error on the page just fix it.

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given inC:\xampp\htdocs\aion\includes\functions.phpon line 1814

Any errors that look like this are because of a couple of things. In the 3.9 Source Build there is no peak table in the database so the getPeak function of course doesn't exist so I edited the index.php to get rid of the use of that function. the player count and gm player count didn't work because it asked for tables that didn't exist. I aligned it with the tables that do exist and it works fine now.
 
Last edited:
Upvote 0
Newbie Spellweaver
Joined
Jul 9, 2009
Messages
37
Reaction score
5
Ok I managed to figure out how to get it to work myself. For some reason the install.php still gives a sql execution error but editing the files works fine. first you have to combine al_server_ls and al_server_gs together into one. Then update the config.inc with the needed info adding the database info the recaptcha info and other things. you have to configure the smtp table and maybe a couple others. When it throws an error on the page just fix it.

Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given inC:\xampp\htdocs\aion\includes\functions.phpon line 1814

Any errors that look like this are because of a couple of things. In the 3.9 Source Build there is no peak table in the database so the getPeak function of course doesn't exist so I edited the index.php to get rid of the use of that function. the player count and gm player count didn't work because it asked for tables that didn't exist. I aligned it with the tables that do exist and it works fine now.

got mine to work..thx :)
 
Upvote 0
Back
Top