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!

[Release] AionCMS 3.1.0

Banned
Banned
Joined
May 26, 2020
Messages
235
Reaction score
100
@dezalmado
I'm not host the CMS on my local computer. I'm hosting by a hosting provider on Linux.
I have bin seen your video and executing cronjobs from Windows, but as I said, I'm hosting on Linux.

I wrote, if you add in AionCP items over Weekly Special Items, you will add records in the table "weeklyspecial_itemlist"
But this table is not displayed in the AionCMS

Instead of this apera records in the AionCMS,
Weekly Special Items, if you add manually records
in the other database table
"weeklyspecial_activeitems"

0d52fb753de4ad4460d9a7fe6c8abee8 - [Release] AionCMS 3.1.0 - RaGEZONE Forums

4be56eb622b48071d21516c9f11a7d89 - [Release] AionCMS 3.1.0 - RaGEZONE Forums




























57fac8d89dc24608a5830406b5bbbf17 - [Release] AionCMS 3.1.0 - RaGEZONE Forums

 

Attachments

You must be registered for see attachments list
Banned
Banned
Joined
May 26, 2020
Messages
235
Reaction score
100
Exactly, you're right. It's the cron take from the Weekly Special Items and put in the weeklyspecial_activeitems.
And finally it will shows in the Webshop on Weekly Specials.


I have just one issue left with this script, the lottery.
timestamp i wrong 1970 so I can not start a new one
 
Last edited:
Banned
Banned
Joined
May 26, 2020
Messages
235
Reaction score
100
lottery_stash need a additional table named "lottery_stash_log" otherwise the withdraw gives an error.
Add to the login server

917c046cc1775b254492dcb5c3867d32 - [Release] AionCMS 3.1.0 - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Banned
Banned
Joined
May 26, 2020
Messages
235
Reaction score
100
I'm searching of a method to receive a item from the webshop with shugo express near instantly, without to log out and login
 
Banned
Banned
Joined
May 26, 2020
Messages
235
Reaction score
100
Basicaly it has nothing to do with which Aion version.
the aioncms tables doesn't include login or gameserver data.

aion_ls = loginserver
aioncms = gameserver

you will need to import your originate al_server_ls in to aion_ls, and al_server_gs, in to aioncms
 
Newbie Spellweaver
Joined
Jul 4, 2021
Messages
36
Reaction score
12
Basicaly it has nothing to do with which Aion version.
the aioncms tables doesn't include login or gameserver data.

aion_ls = loginserver
aioncms = gameserver

you will need to import your originate al_server_ls in to aion_ls, and al_server_gs, in to aioncms
I was talking about cms4.0 :D

---------------
dearVoidstar
3.1.0 works fine with xamppBut in my linux apache2 server, all menus don't work. Is there any setting I need to do on the web server?
 
Banned
Banned
Joined
May 26, 2020
Messages
235
Reaction score
100
Exactly, me too

LE;

You're right, again the database is a crap, errors and missing the "website_modules"
table. You will need to take it from the 3.1, put it on 4.0 and fix or add pages
 
Last edited:
Banned
Banned
Joined
May 26, 2020
Messages
235
Reaction score
100
I installed and configured AionCMS 4.0, today.
You're right, 4.0 is working fine and there is no hardcoded database name anymore.
 
Banned
Banned
Joined
May 26, 2020
Messages
235
Reaction score
100
Take a look please also in 3.1 if you can fix the same issue. I'm not at home until Monday, so I can not edit the php file, just upload another one.
Thanks
 
Banned
Banned
Joined
May 26, 2020
Messages
235
Reaction score
100
Hey, dezalmado, do you have a simple php scrips for aioncms with "player online"?
It would be nice in the footer or header, somewhere..

And maybe we can find a decent php coder to modify the script adding to the buy an "as gift"
to other player, options


e9587654af584fb18fc5b290867f5bc5 - [Release] AionCMS 3.1.0 - RaGEZONE Forums


1e4cf550f65bd08d5d0475424c025073 - [Release] AionCMS 3.1.0 - RaGEZONE Forums


9e36de775f053bde575ac4ad8f6e162f - [Release] AionCMS 3.1.0 - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Last edited:
Banned
Banned
Joined
May 26, 2020
Messages
235
Reaction score
100
You misunderstand me. I don't need a Server Online/Offline scripts.
I need a "Players Online"

704aaf1e3610d742edf66ecdb312c981 - [Release] AionCMS 3.1.0 - RaGEZONE Forums
 

Attachments

You must be registered for see attachments list
Newbie Spellweaver
Joined
Oct 13, 2021
Messages
74
Reaction score
46

the store sees, but does not understand the Russian names of the characters. how can I fix it?

public function setCharacter($characterName) {
if(!is_array($this->_accountData)) throw new Exception('Сначало выберите персонажа');
if(!Validator::AlphaNumeric($characterName)) throw new Exception('The selected character is not valid1.');
$playerInfo = $this->sdb->queryFetchSingle("SELECT * FROM `players` WHERE `name` = ? AND `account_id` = ?", array($characterName, $this->_userId));
if(!is_array($playerInfo)) throw new Exception('The selected character is not valid2.');
$this->_character = $characterName;
$this->_characterData = $playerInfo;
}
 
Last edited:
Newbie Spellweaver
Joined
Oct 13, 2021
Messages
74
Reaction score
46
of course there is. I have no errors on the database.I have an encoding error.
 
Back
Top