Jump to content
  • 0

Can't log in to Ceres CP


diamondjack

Question


  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  9
  • Reputation:   0
  • Joined:  01/11/17
  • Last Seen:  

When I tried to log in to ceres cp it always says wrong username or password. My server has md5 encryption so I enabled md5 on ceres config..still have the same problem

$CONFIG['md5_pass']        =    '1'

;    . 

Also do I have to create a different database for ceres cp ? I don't know what tables to create.

 

//sql connections
$CONFIG['rag_serv']		=	$my_db_host;	// SQL Ragnarok Host
$CONFIG['rag_user']		=	$my_db_user;		// SQL Ragnarok User
$CONFIG['rag_pass']		=	$my_db_pass;		// SQL Ragnarok Password
$CONFIG['rag_db']		=	$my_ragnarok;		// SQL Ragnarok Database name
$CONFIG['log_db']		=	$my_ragnarok_log;	

$CONFIG['cp_serv']        =    $my_db_host;    // SQL CP Host
$CONFIG['cp_user']        =    $my_db_user;        // SQL CP User
$CONFIG['cp_pass']        =    $my_db_pass;        // SQL CP Password
$CONFIG['cp_db']        =    '????'    // create database for ceres ?

 

Thank you.

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

  • Group:  Forum Manager
  • Topic Count:  282
  • Topics Per Day:  0.06
  • Content Count:  3122
  • Reputation:   1616
  • Joined:  03/26/12
  • Last Seen:  

If i recall correctly, there's an installation guide in a text file that tells you how to configure your CP and what SQL script to run.

I haven't seen a server use CeresCP for a very long time!

Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  5
  • Topics Per Day:  0.00
  • Content Count:  9
  • Reputation:   0
  • Joined:  01/11/17
  • Last Seen:  

On the installation guide it says:

Installing 
-----------------------------------------------------------------
*** Make sure the System Requirements are met.

1. Unzip the package into your web site directory.

2. Create a user with access to ragnarok and cp databases. 

3. Set write access to apache write in ./install folder

4. Run ./install/install.php

I already imported table.sql but it still wrong username or password when I try to log in.


CREATE TABLE `cp_bruteforce` (
  `action_id` int(11) NOT NULL auto_increment,
  `user` varchar(24) NOT NULL default '',
  `IP` varchar(20) NOT NULL default '',
  `date` int(11) NOT NULL default '0',
  `ban` int(11) NOT NULL default '0',
  PRIMARY KEY  (`action_id`),
  KEY `user` (`user`),
  KEY `IP` (`IP`)
) ENGINE=MyISAM AUTO_INCREMENT=1 ;

CREATE TABLE `cp_links` (
  `cod` int(11) NOT NULL auto_increment,
  `name` varchar(30) NOT NULL,
  `url` varchar(255) NOT NULL,
  `desc` text NOT NULL,
  `size` int(11) default '0',
  PRIMARY KEY  (`cod`)
) ENGINE=MyISAM AUTO_INCREMENT=1 ;

CREATE TABLE `cp_querylog` (
  `action_id` int(11) NOT NULL auto_increment,
  `Date` datetime NOT NULL default '0000-00-00 00:00:00',
  `User` varchar(24) NOT NULL default '',
  `IP` varchar(20) NOT NULL default '',
  `page` varchar(24) NOT NULL default '',
  `query` text NOT NULL,
  PRIMARY KEY  (`action_id`),
  KEY `action_id` (`action_id`)
) TYPE=ENGINE AUTO_INCREMENT=1 ;

CREATE TABLE `cp_server_status` (
  `last_checked` datetime NOT NULL default '0000-00-00 00:00:00',
  `status` tinyint(1) NOT NULL default '0'
) ENGINE=MyISAM;

I use this because there's a ceres theme that I want to use.

Link to comment
Share on other sites

  • 0

  • Group:  Forum Manager
  • Topic Count:  282
  • Topics Per Day:  0.06
  • Content Count:  3122
  • Reputation:   1616
  • Joined:  03/26/12
  • Last Seen:  

If you link me to it i'll see if i can update it to work with FluxCP - CeresCP is so out of date that it likely won't work correctly with rAthena as it is now.

  • Upvote 1
Link to comment
Share on other sites

  • 0

  • Group:  Members
  • Topic Count:  34
  • Topics Per Day:  0.01
  • Content Count:  386
  • Reputation:   38
  • Joined:  04/28/13
  • Last Seen:  

Just wrong installation.

You should try to install it again, i had the same problem, and solve it just reinstalling it.

Link to comment
Share on other sites

×
×
  • Create New...