noob-it Posted March 8, 2015 Posted March 8, 2015 An Error Was Encountered The Encrypt library requires the Mcrypt extension. 'base_url' => 'http://127.0.0.1/cora/' 'encrypt_key' => 'eMZxG9Mpjin05MBYje95gft0cQaGrb', 'dev_mode' => true, 'timezone' => 'Asia/Manila',
Obiwan Posted March 16, 2015 Posted March 16, 2015 Sir Takari i got a problem the peak players and online players are not showing the real online in the server . i think its not refreshing every second
EzioYaoditore Posted March 26, 2015 Posted March 26, 2015 is the guild_emblem working on your site? when i tested it, it cant convert the emblem data to bmp so i have to fix it manually. the original from your git in application/controllers/community.php public function guild_emblem($gid) { $this->load->model('mcommunity'); $ginfo = $this->mcommunity->guild_info(array('guild_id'=>$gid)); $emblem = $ginfo[0]->emblem_data; $emblem = @gzuncompress(pack('H*',$emblem)); file_put_contents('emblem.bmp',$emblem); header('Content-type: image/png'); $im = imagecreatefrombmp('emblem.bmp'); $purple = imagecolorallocate($im, 255, 0, 255); imagecolortransparent($im,$purple); imagepng($im); } into public function guild_emblem($gid) { $this->load->model('mcommunity'); $ginfo = $this->mcommunity->guild_info(array('guild_id'=>$gid)); $emblem = $ginfo[0]->emblem_data; $emblem = @gzuncompress(pack('H*',$emblem)); header('Content-type: image/png'); $im = imagecreatefrombmpstring($emblem); $purple = imagecolorallocate($im, 255, 0, 255); imagecolortransparent($im,$purple); imagepng($im); } by calling imagecreatefrombmpstring from the ROChargen Bmp.php and got it work.
EzioYaoditore Posted April 3, 2015 Posted April 3, 2015 (edited) also tested the donate function with sandbox paypal account, it seems it dont add points after successful donation on corresponding points I added. update: it now works, i just need to add IPN url in both sandbox and actual account of my account Edited April 6, 2015 by EzioYaoditore 1
Takari Posted April 18, 2015 Author Posted April 18, 2015 Hi everyone. I'm sorry for being inactive for a while, I've been really busy with work. On the bright side, we're planning to restart development soon. We might need to find a better way to communicate though, for those who wants to contribute ideas and all 1
Takari Posted April 19, 2015 Author Posted April 19, 2015 Hmm.. Using the GitHub Issues? Github is ok nana, thanks for asking. Just haven't updated it all lately (sorry) But like I said, I will be updating it soon. In fact, I have some things that you guys might want to share your thoughts with: WYSIWYG Editor [ For Posts & Pages ] to be Changed. The editor will be changed from CKEditor to Froala for responsive compatibility. Multi-Server Support to be Added. It will work as follows:User registers an account through the CMS. User logs in and add a "game" [ which will be the servers ] to his account. Asynchronous Processes to be implemented. Fetching posts, pages, widgets, etc. will be asynchronous to decrease page load time. Character Management - Reset Character Gears to be Added. Disrobes the character of equipped gears to escape gravity error due to missing sprites. Character Management - Change Sex to be Updated. Changing sex will also reset character gears in case a character is wearing gender-locked equipment. Nested Navigation to be Added. To make adding sub menu possible for the navigation. Slug URL to be implemented. Slug URL option will be added for more user-friendly URL. There are more ideas to be discussed, but these are the only ones I can share with you guys for now. What do you guys think? I'd love to hear your take on these changes
Takari Posted April 25, 2015 Author Posted April 25, 2015 Hey everyone, I've formed a new dev team for CORA. Let's welcome the new members of the dev team: nanakiwurtz and Klutz. We'll be working hard to present you the next, bigger, and better version of CORA. Wish us luck! ^^
SevySevSevy Posted April 28, 2015 Posted April 28, 2015 I really love this forums, can you guys enable a forums engine in your cp? that would really be a freaking great addon!
Takari Posted April 29, 2015 Author Posted April 29, 2015 I really love this forums, can you guys enable a forums engine in your cp? that would really be a freaking great addon! Well that would be something we need to discuss first, I'm not quite sure yet, but I also think that would be great too Your site is it down? Hey Zell, sorry for that. I've been having trouble getting a new host. But anyway, we finally got one now and I'm propagating the DNS now. I might need some time to bring the contents back up though xP
SevySevSevy Posted April 29, 2015 Posted April 29, 2015 cool, it would really be a great help. or you can make an addon that enables you to make one login for IPboard and ur cp <3 register on ur cp automatically registers a forum account too
Takari Posted April 29, 2015 Author Posted April 29, 2015 I really love this forums, can you guys enable a forums engine in your cp? that would really be a freaking great addon! Well that would be something we need to discuss first, I'm not quite sure yet, but I also think that would be great too Your site is it down? Hey Zell, sorry for that. I've been having trouble getting a new host. But anyway, we finally got one now and I'm propagating the DNS now. I might need some time to bring the contents back up though xP Site is now back up although some contents are missing. I'll be adding them later cool, it would really be a great help. or you can make an addon that enables you to make one login for IPboard and ur cp <3 register on ur cp automatically registers a forum account too There could actually be a possibility for IPB
Currently Posted May 11, 2015 Posted May 11, 2015 This is what my user_counter.txt looks like. Problem: For example, I have 5 players only but the webpage only says I got 1 online player online. Same goes for Players Peak, it says 3 for Peak but I already reached 6 players. - script user_counter -1,{ OnPCLoginEvent: query_sql("SELECT value FROM mapreg WHERE varname='userOnline'",.@lastOnline); if(getarraysize(.@lastOnline) == 0) { query_sql("INSERT INTO mapreg(varname,value) VALUE('userOnline',1)"); set .@userOnline,1; } else { query_sql("UPDATE mapreg SET value=value+1 WHERE varname='userOnline'"); set .@userOnline,.@lastOnline[0]+1; } query_sql("SELECT value FROM mapreg WHERE varname='userPeak'",.@userPeak); if((.@userOnline > .@userPeak[0]) || (getarraysize(.@userPeak) == 0)) { if(getarraysize(.@userPeak) == 0) .@newPeak$ = "INSERT INTO mapreg(varname,value) VALUE('userPeak',"+.@userOnline+")"; else .@newPeak$ = "UPDATE mapreg SET value="+.@userOnline+" WHERE varname='userPeak'"; query_sql(.@newPeak$); .@peak = .@userOnline; } else { .@peak = .@userPeak[0]; } end; OnPCLogoutEvent: query_sql("SELECT value FROM mapreg WHERE varname='userOnline'",.@lastOnlineB); if(.@lastOnlineB[0] > 1) query_sql("UPDATE mapreg SET value=value-1 WHERE varname='userOnline'"); else query_sql("DELETE FROM mapreg WHERE varname='userOnline'"); end; }
Takari Posted May 14, 2015 Author Posted May 14, 2015 This is what my user_counter.txt looks like. Problem: For example, I have 5 players only but the webpage only says I got 1 online player online. Same goes for Players Peak, it says 3 for Peak but I already reached 6 players. - script user_counter -1,{ OnPCLoginEvent: query_sql("SELECT value FROM mapreg WHERE varname='userOnline'",.@lastOnline); if(getarraysize(.@lastOnline) == 0) { query_sql("INSERT INTO mapreg(varname,value) VALUE('userOnline',1)"); set .@userOnline,1; } else { query_sql("UPDATE mapreg SET value=value+1 WHERE varname='userOnline'"); set .@userOnline,.@lastOnline[0]+1; } query_sql("SELECT value FROM mapreg WHERE varname='userPeak'",.@userPeak); if((.@userOnline > .@userPeak[0]) || (getarraysize(.@userPeak) == 0)) { if(getarraysize(.@userPeak) == 0) .@newPeak$ = "INSERT INTO mapreg(varname,value) VALUE('userPeak',"+.@userOnline+")"; else .@newPeak$ = "UPDATE mapreg SET value="+.@userOnline+" WHERE varname='userPeak'"; query_sql(.@newPeak$); .@peak = .@userOnline; } else { .@peak = .@userPeak[0]; } end; OnPCLogoutEvent: query_sql("SELECT value FROM mapreg WHERE varname='userOnline'",.@lastOnlineB); if(.@lastOnlineB[0] > 1) query_sql("UPDATE mapreg SET value=value-1 WHERE varname='userOnline'"); else query_sql("DELETE FROM mapreg WHERE varname='userOnline'"); end; } Hi, thanks for the report! We are aware of this problem. Sadly, we are currently overhauling cora so it would take long before the next version comes out. The good news is that there will be many more things aside from this fix that is included in the next version. Hope you can stick around 'til then! 1
SevySevSevy Posted May 17, 2015 Posted May 17, 2015 still waiting for this awesome CP! hope u can release a new version before my server opens this 28th
nanakiwurtz Posted May 18, 2015 Posted May 18, 2015 hope u can release a new version before my server opens this 28th Sadly I think it will take longer than that
SevySevSevy Posted May 18, 2015 Posted May 18, 2015 hope u can release a new version before my server opens this 28th Sadly I think it will take longer than that well, we do not know mayve itll be released earlier then we expected
nanakiwurtz Posted June 7, 2015 Posted June 7, 2015 Links are dead... Yes it is, but the repo is still exist on https://github.com/takari1994/CORA
Virtue Posted July 24, 2015 Posted July 24, 2015 Yes my DB usernames is moonlight... I went back to change everything and again the same error Unable to connect to your database server using the provided settings. Filename: core/Loader.php Line Number: 346 Mysql version ( VPS ): Variable_name | Value | +-------------------------+-------------------------+ | innodb_version | 5.5.41 | | protocol_version | 10 | | slave_type_conversions | | | version | 5.5.41-0ubuntu0.14.10.1 | | version_comment | (Ubuntu) | | version_compile_machine | x86_64 | | version_compile_os | debian-linux-gnu wondering how was this solved? i am getting this error for the loader right now, anybody knows?
nanakiwurtz Posted July 24, 2015 Posted July 24, 2015 Have you recheck your password? And don't use a too long password for both Cora and your SQL account.
Elijah23 Posted November 27, 2015 Posted November 27, 2015 so is this project still ongoing? @nanakiwurtz
nanakiwurtz Posted November 28, 2015 Posted November 28, 2015 Currently stopped, main dev is very busy in real life
Recommended Posts