Jump to content
  • 0

FLUX CP install problem


acocalypso

Question


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  28
  • Reputation:   0
  • Joined:  06/15/12
  • Last Seen:  

Hi everyone,

ive installed fluxcp renewal, configured application.php and servers.php

now i went to www.mydomain.com/ragnarok and it autodirect me to /ragnarok/install

Not Found

The requested URL /ragnarok/install/ was not found on this server.

What can i do?

ok fixed it, but have another problem

ServerName'	 => 'FluxRO',
 // Global database configuration (excludes logs database configuration).
 'DbConfig'	   => array(
  //'Socket'	 => '/tmp/mysql.sock',
  //'Port'	   => 3306,
  //'Encoding'   => 'utf8', // Connection encoding -- use whatever here your MySQL tables collation is.
  'Convert'    => 'utf8',
   // -- 'Convert' option only works when 'Encoding' option is specified and iconv (http://php.net/iconv) is available.
   // -- It specifies the encoding to convert your MySQL data to on the website (most likely needs to be utf8)
  'Hostname'   => '127.0.0.1',
  'Username'   => 'username',
  'Password'   => 'password',
  'Database'   => 'rathena_cp',
  'Persistent' => true,
  'Timezone'   => null // Example: '+0:00' is UTC.
  // The possible values of 'Timezone' is as documented from the MySQL website:
  // "The value can be given as a string indicating an offset from UTC, such as '+10:00' or '-6:00'."
  // "The value can be given as a named time zone, such as 'Europe/Helsinki', 'US/Eastern', or 'MET'." (see below continuation!)
  // **"Named time zones can be used only if the time zone information tables in the mysql database have been created and populated."
 ),
 // This is kept separate because many people choose to have their logs
 // database accessible under different credentials, and often on a
 // different server entirely to ensure the reliability of the log data.
 'LogsDbConfig'   => array(
  //'Socket'	 => '/tmp/mysql.sock',
  //'Port'	   => 3306,
  //'Encoding'   => null, // Connection encoding -- use whatever here your MySQL tables collation is.
  'Convert'    => 'utf8',
   // -- 'Convert' option only works when 'Encoding' option is specified and iconv (http://php.net/iconv) is available.
   // -- It specifies the encoding to convert your MySQL data to on the website (most likely needs to be utf8)
  'Hostname'   => '127.0.0.1',
  'Username'   => 'username',
  'Password'   => 'password',
  'Database'   => 'rathena',
  'Persistent' => true,
  'Timezone'   => null // Possible values is as described in the comment in DbConfig.
 ),
 // Login server configuration.
 'LoginServer'    => array(
  'Address'  => '127.0.0.1',
  'Port'	 => 6900,
  'UseMD5'   => false,
  'NoCase'   => true, // eA account case-sensitivity; Default: Case-INsensitive (true).
  'Level'    => 0,    // Default account level during registration.
 '
 ),
 'CharMapServers' => array(
  array(
   'ServerName'    => 'FluxRO',
   'BaseExpRates'  => 200,
   'JobExpRates'   => 200,
   'MvpExpRates'   => 200,
   'DropRates'	 => 25,
   'MvpDropRates'  => 25,
   'CardDropRates' => 25,
   'MaxCharSlots'  => 9,
   'DateTimezone'  => null,	   // Specifies game server's timezone for this char/map pair. (See: http://php.net/timezones)
   //'ResetDenyMaps' => 'sec_pri',  // Defaults to 'sec_pri'. This value can be an array of map names.
   //'Database'	  => 'rathena', // Defaults to DbConfig.Database
   'CharServer'    => array(
 'Address'   => '127.0.0.1',
 'Port'	  => 6121
   ),
   'MapServer'	 => array(
 'Address'   => '127.0.0.1',
 'Port'	  => 5121
   ),

im getting this error output:

Critical Error
An error was encountered during the lifetime of the application.
This could be due to a variety of problems, such as a bug in the application.
However, normally it is caused by misconfiguration.
Exception Details
Error: Flux_Error
Message: MySQL error (SQLSTATE: 42S02, ERROR: 1146): Table 'rathena_cp.ipbanlist' doesn't exist
File: /var/www/ragnarok/lib/Flux/Connection/Statement.php:27
File Line Function/Method
/var/www/ragnarok/lib/Flux/LoginServer.php 581 Flux_Connection_Statement::execute()
/var/www/ragnarok/lib/Flux/SessionData.php 262 Flux_LoginServer::isIpBanned()
/var/www/ragnarok/modules/account/login.php 19 Flux_SessionData::login()
/var/www/ragnarok/lib/Flux/Template.php 337 include()
/var/www/ragnarok/lib/Flux/Dispatcher.php 168 Flux_Template::render()
/var/www/ragnarok/index.php 177 Flux_Dispatcher::dispatch()
Exception Trace As String
#0 /var/www/ragnarok/lib/Flux/LoginServer.php(581): Flux_Connection_Statement->execute(Array)
#1 /var/www/ragnarok/lib/Flux/SessionData.php(262): Flux_LoginServer->isIpBanned()
#2 /var/www/ragnarok/modules/account/login.php(19): Flux_SessionData->login('FluxRO', 'username', 'password', NULL)
#3 /var/www/ragnarok/lib/Flux/Template.php(337): include('/var/www/ragnar...')
#4 /var/www/ragnarok/lib/Flux/Dispatcher.php(168): Flux_Template->render()
#5 /var/www/ragnarok/index.php(177): Flux_Dispatcher->dispatch(Array)
#6 {main}

some has any idea?

Link to comment
Share on other sites

1 answer to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  707
  • Reputation:   168
  • Joined:  01/26/12
  • Last Seen:  

Hi acocalypso,

You need to install FluxCP within the same database as your rAthena/eAthena database; so `rathena_cp` should really be whatever your rAthena MySQL database is.

Link to comment
Share on other sites

×
×
  • Create New...