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!

[OFFICIAL RELEASE] rCMS latest build [HABBOR.DE]

Status
Not open for further replies.

PR0

Legendary Battlemage
Joined
Mar 3, 2007
Messages
690
Reaction score
85
Thank you so much iExit. I've always loved your work and was actually trying to get your old 2013 rCMS to work to make it a project hahaha. I love your detail, innovation, and everything about it.

Is this based off the old builds? Would I be able to bring other features from the old version onto this just by changing a few syntax/functions types?
 
Newbie Spellweaver
Joined
Sep 5, 2014
Messages
11
Reaction score
0
Is it in English? And what queries do I need if I have a Mercury database?
 
Newbie Spellweaver
Joined
Sep 5, 2014
Messages
11
Reaction score
0
Does this work with plus db? Do you have queries so we can use custom db? And can you translate it into english please?
 
Newbie Spellweaver
Joined
Jun 10, 2012
Messages
18
Reaction score
0
help please it says:

Fatal error: Call to a member function fetch_assoc() on a non-object in C:\inetpub\wwwroot\lib\Privileges.php on line 9
 
Junior Spellweaver
Joined
Jul 5, 2008
Messages
156
Reaction score
19
help please it says:

Fatal error: Call to a member function fetch_assoc() on a non-object in C:\inetpub\wwwroot\lib\Privileges.php on line 9

which is this code
Code:
	public static function init($connection)
	{
		$result = $connection->query("SELECT * FROM rcms_privileges");	
		while ($row = $result->fetch_assoc())
		{
			self::$privs[$row['name']] = $row;	
		}
	}

meaning you may not have "rcms_privileges" imported into your database, make sure you imported everything.

edit:
gave myself admin on the site & it's asking for housekeeping security code on the me page, enter my password & nothing happens :S
 
Last edited:

pel

Skilled Illusionist
Joined
Jan 27, 2012
Messages
382
Reaction score
343
which is this code
Code:
	public static function init($connection)
	{
		$result = $connection->query("SELECT * FROM rcms_privileges");	
		while ($row = $result->fetch_assoc())
		{
			self::$privs[$row['name']] = $row;	
		}
	}

meaning you may not have "rcms_privileges" imported into your database, make sure you imported everything.

edit:
gave myself admin on the site & it's asking for housekeeping security code on the me page, enter my password & nothing happens :S

Go to config.php and search define('HK_CODE', ""); -> put your code into ""
 
Status
Not open for further replies.
Back
Top