Jump to content
  • 0

Flux Control Panel - Account Creation error


Yasko

Question


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  5
  • Reputation:   0
  • Joined:  01/19/13
  • Last Seen:  

Hello..

After reading all the topic's here about 'flux control panel problems' i decided to make a new topic..

What i've done:

I installed the newest Flux control panel version from calciumkid. Then i configued the Application and Servers.php. Also created a new database for the control panel. At first it seems it works fine. I created a account and it works too. But when i want to login with the new account to my server > 'Unregistered ID'.

The problem is, that the new account saved in the wrong Login table (it saved in the control panel db).

I have to 2 database, the first as main database for my server and the second for the control panel.

How can i connect the control panel with my main database?

// Login server configuration.

'LoginServer' => array(

'Address' => 'IP adress',

'Port' => 6900,

'UseMD5' => true,

'NoCase' => true, // eA account case-sensitivity; Default: Case-INsensitive (true).

'Level' => 0, // Default account level during registration.

//'Database' => 'ragnarok' <--- When i change this to my main database and delete the // i got an error after account creation 'Uh oh, what happened?'...

Anyone can help me..?

Link to comment
Share on other sites

8 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  9
  • Reputation:   0
  • Joined:  07/27/12
  • Last Seen:  

change this

'UseMD5'   => true,

to this

'UseMD5'   => false,

and make a new acc then log again and let me know if this work :)

Edited by animous
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  5
  • Reputation:   0
  • Joined:  01/19/13
  • Last Seen:  

Hey animous, thanks for your reply! :)

I reinstalled the flux control panel and now the account creation works, but only without Md5 ('useMD5' => false,)... How can i get it work with MD5?

Edited by Yasko
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  49
  • Topics Per Day:  0.01
  • Content Count:  275
  • Reputation:   23
  • Joined:  01/06/13
  • Last Seen:  

bump. ihave the same problem

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  1
  • Topics Per Day:  0.00
  • Content Count:  9
  • Reputation:   0
  • Joined:  07/27/12
  • Last Seen:  

cant help u with that... i think the MD5 change the pass Ex;

My Pass ; Rybon~ = MD5 ; 154ASQWrf541

when u log on in CP if u put the Pass; Rybon~ it wont work so i think u will need to put the MD5...

do u understand??... anyway if u are the only one who have the pass of ur sql that wont be a problem!~

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  2223
  • Reputation:   593
  • Joined:  10/26/11
  • Last Seen:  

When i change this to my main database and delete the // i got an error after account creation 'Uh oh, what happened?'...

Did you enabled 'Database' in two places?

(LoginServer AND CharMapServers)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  3
  • Topics Per Day:  0.00
  • Content Count:  5
  • Reputation:   0
  • Joined:  01/19/13
  • Last Seen:  

no i dont done that.. could you tell me what exactly i have to change ? you speak about server.conf's ?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  6
  • Topics Per Day:  0.00
  • Content Count:  27
  • Reputation:   0
  • Joined:  01/20/13
  • Last Seen:  

Here's what I did to allow MD5 passwords work with my server.

1.) Go to login_athena.conf and look for this line:

// Store passwords as MD5 hashes instead of plaintext ?
// NOTE: Will not work with clients that use <passwordencrypt>
use_MD5_passwords: no

2.) Change the no, to yes.

3.) Then go to your MySQL database (assuming you use workbench) and double click your database name so it becomes bold.

4.) Type this code in a query:

UPDATE login

set user_pass = MD5(user_pass);

(The above code is assuming that your account username and passwords are stored in a database table called "login" and the password column is named "user_pass")

5.) Click execute and it should work.

Edited by Vinyasa
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  75
  • Topics Per Day:  0.02
  • Content Count:  2223
  • Reputation:   593
  • Joined:  10/26/11
  • Last Seen:  

When i change this to my main database and delete the // i got an error after account creation 'Uh oh, what happened?'...

Did you enabled 'Database' in two places?

(LoginServer AND CharMapServers)

no i dont done that.. could you tell me what exactly i have to change ? you speak about server.conf's ?

The FluxCP file ../config/servers.php (lines 51 and 65).

Link to comment
Share on other sites

×
×
  • Create New...