Support for Account Manager

Have you created a useful tool? or you want to get help building one... this is the right place
Forum rules
READ NOW: L2j Forums Rules of Conduct

Re: Support for Account Manager

Postby CostyKiller » Sun Mar 13, 2011 9:31 pm

Hi guys! I solved the annoying problem with strict standards warnings i disabled error reporting from php config file.
CostyKiller
 
Posts: 11
Joined: Tue Aug 11, 2009 12:48 am

Re: Support for Account Manager

Postby Jinsu » Fri Mar 18, 2011 7:24 pm

Yeah .. got the same error then fakoykas ...... wierd
Jinsu
 
Posts: 47
Joined: Tue Jul 14, 2009 2:52 am

Re: Support for Account Manager

Postby l2c4reborb » Tue Mar 29, 2011 1:51 pm

Hello everyone,

First of all, thanks for such a great opportunity of free account management software.

I have faced a problem which was mentioned in this thread but did not receive an answer.

First, some entry info:

1. config
permissions 666
email verification false
account management enabled

2. install.php script says there are no problems. everything is OK.
3. cache perm 755
4. sql file parsed! tables updated! checked manually and by install script.

About the problem.

When try to create account:

Database problem : Account was not created. Please report this to the Staff.

Debug

  1. ACM VERSION : 0.9.8
  2. Check if the image verification is needed
  3. Check if the image verification is correct
  4. Check if the login still exist
  5. l2jdb->SELECT COUNT(`login`) FROM `accounts` WHERE `login` = 'fool' LIMIT 1;
  6. Result: string('0')
  7. Check if the email still exist
  8. l2jdb->SELECT COUNT(`login`) FROM `accounts` WHERE `email` = 'fool@xxx.com' LIMIT 1;
  9. Result: string('0')
  10. Create a new user on the accounts table with -1 on accesslevel
  11. l2jdb->INSERT INTO `accounts` (`login`,`password`,`lastactive`,`accessLevel`,`lastIP`,`email`) VALUES ('fool', 'DcFW0ozSoN4oQ89yp/81/ZoM4vM=', '1.301400151E+12', '-1', 'myip', 'fool@xxx.com');
  12. Records: -1
  13. Check if the login still exist
  14. l2jdb->SELECT COUNT(`login`) FROM `accounts` WHERE `login` = 'fool' LIMIT 1;
  15. Result: string('0')


When try to access existing accnt:

We were unable to verify your login. Either your login information was entered incorrectly, or the account system is currently unavailable.

Debug

  1. ACM VERSION : 0.9.8
  2. Check if the image verification is needed
  3. Check if the image verification is correct
  4. Get how many unsuccessfull loggin user have do
  5. l2jdb->SELECT `value` FROM `account_data` WHERE `account_name` = 'ip' AND `var` LIKE 'try_%' LIMIT 1;
  6. Result: string('1301400118')
  7. Get how many unsuccessfull loggin user have do
  8. l2jdb->SELECT `var` FROM `account_data` WHERE `account_name` = 'ip' AND `var` LIKE 'try_%' LIMIT 1;
  9. Result: string('try_3')
  10. Set how many unsuccessfull loggin user have do
  11. l2jdb->UPDATE `account_data` SET `var` = 'try_0', `value` = '1301401932' WHERE `account_name` = 'ip';
  12. Records: 1
  13. Get how many unsuccessfull loggin user have do
  14. l2jdb->SELECT `var` FROM `account_data` WHERE `account_name` = 'ip' AND `var` LIKE 'try_%' LIMIT 1;
  15. Result: string('try_0')
  16. Check if login and password match on account table
  17. l2jdb->SELECT COUNT(`login`) FROM `accounts` WHERE `login` = 'stem' AND `password` = 'pass' AND `accessLevel` >= 0 LIMIT 1;
  18. Result: boolean(false)
  19. Get how many unsuccessfull loggin user have do
  20. l2jdb->SELECT `var` FROM `account_data` WHERE `account_name` = 'ip' AND `var` LIKE 'try_%' LIMIT 1;
  21. Result: string('try_0')
  22. Set how many unsuccessfull loggin user have do
  23. l2jdb->UPDATE `account_data` SET `var` = 'try_1', `value` = '1301401932' WHERE `account_name` = 'ip';
  24. Records: 1


In the same time password retrieve function is working.

I m running c4. servername.xml was replaced by the one in gameserver folder. Also ACM is located on separate server, but once again, connection is setup and install script does not show any problems. Server is up and running. Also I have tried to manually edit accesslevel on registration to 0, but its of no help.

Any advice is appreciated!!
l2c4reborb
 
Posts: 2
Joined: Tue Mar 29, 2011 1:24 pm

Re: Support for Account Manager

Postby l2c4reborb » Tue Mar 29, 2011 4:13 pm

Ok, I figured it out.

In c4 AccessLevel column in table is access_level.
l2c4reborb
 
Posts: 2
Joined: Tue Mar 29, 2011 1:24 pm

Re: Support for Account Manager

Postby elmatig89 » Thu Mar 31, 2011 8:09 pm

thank you for this is very helpfull
User avatar
elmatig89
 
Posts: 81
Joined: Sun Dec 07, 2008 7:39 pm

Re: Support for Account Manager

Postby elmatig89 » Tue May 17, 2011 6:43 am

Hi, i want to report that somehow, a guy managed to insert a file into my accountmanager/libs directory, ive uploaded the file.

If you uncode it, you will see that its a complete access to your server. Idk if this is a security problem of the account manager itself but its crazy.
You do not have the required permissions to view the files attached to this post.
User avatar
elmatig89
 
Posts: 81
Joined: Sun Dec 07, 2008 7:39 pm

Re: Support for Account Manager

Postby assimilated » Sun May 22, 2011 11:40 am

Can someone please help me out a little here cause i've been trying for 2 days now to figure what causes the error and i can not seem to find it. Everytime i register a new account i get this error :
This username is already in use. Please try a different one.

The privileges of the user that connects to the DB are good..i inserted the db.sql strings with no problem ..I really can not understand what causes the problem.
Thanks in advance
assimilated
 
Posts: 2
Joined: Sun May 22, 2011 11:30 am

Re: Support for Account Manager

Postby assimilated » Mon May 23, 2011 3:41 pm

And also where do you change password length ? currently is 15 but i want it 20...where can i do that
assimilated
 
Posts: 2
Joined: Sun May 22, 2011 11:30 am

Re: Support for Account Manager

Postby Moon » Fri May 27, 2011 1:57 pm

When I add this code ALTER TABLE `accounts` ADD `votes` INT( 11 ) NOT NULL ; than account manager dont create account. "Database problem : Account was not created. Please report this to the Staff."

Some idea?
User avatar
Moon
 
Posts: 194
Joined: Wed Feb 21, 2007 10:30 pm

Re: Support for Account Manager

Postby Dyad » Fri May 27, 2011 11:54 pm

I have a little question. On one host, my ACM is working fine. But on another host, the same config and everything, when I acces it, it won't show anything. A little advice on what to change? (I am pretty sure that the problem is from the php configuration, but what?)

And another problem is that sometimes when users try to log in, it shows some message about spam (I do not have the accurate error). Any suggestions on this?

Thank you in advance!
Dyad
 
Posts: 1
Joined: Tue Nov 09, 2010 9:40 pm

Re: Support for Account Manager

Postby atd07 » Tue May 31, 2011 9:49 pm

hi.i take this error Database problem: Account was not created. Please report this to the staff.i have read that this error is because i don't parse db.sql.when i run bd.sql i get this error:
[Err] ALTER TABLE `accounts` ADD `email` VARCHAR( 255 ) NULL DEFAULT NULL ;
[Msg] Finished - Unsuccessfully

anyone knows how to fix it???thank you
atd07
 
Posts: 1
Joined: Tue May 31, 2011 9:39 pm

ACOUNT MANAGER

Postby l2jnob » Fri Jun 03, 2011 3:30 am

install the account manager, accounts Reader around the stagnant and you can see, but I can not create accounts when I create an account tells me that the mail is already being used, please long I'm trying to make it work I need a complete guide for account manager.
thank you very much.
l2jnob
 
Posts: 3
Joined: Fri Jun 03, 2011 3:13 am

Re: ACOUNT MANAGER

Postby hope » Fri Jun 03, 2011 4:23 am

support is for server files only not custom things post in right section, dont spam, read forum rules,
Support for Account Manager
hope
 
Posts: 1206
Joined: Thu Aug 30, 2007 6:17 pm

account maanager error meil

Postby l2jnob » Fri Jun 03, 2011 4:37 am

MAKES GOOD ENOUGH TRYING TO OPERATE THE ACCOUNT MANAGER, excuse me to bother you BUT PLEASE Le Pied ME A HAND IN THIS AND NOT TO DO. ALWAYS GIVES ME THIS ERROR.
Set everything as QUI IN THE GUIDE BUT GIVE ME THIS ERROR AND DOES NOT MAKE ME TAKE ME ONLY ACCOUNTS THAT I HAVE.
THANK YOU FOR YOUR HELP :|
l2jnob
 
Posts: 3
Joined: Fri Jun 03, 2011 3:13 am

Re: Support for Account Manager

Postby diablodoro » Sat Jun 18, 2011 2:08 pm

some one know how to fix this ? (linux)

  1. Checking extensions loaded :
  2.  
  3.     * mysql extension : OK
  4.     * gd extension : KO   <--------- Here
  5.     * openssl extension : OK
  6.  
  7.  
  8. Checking mysql connexion :
  9.  
  10.     * connected ? OK
  11.  
  12.  
  13. Checking db connexion :
  14.  
  15.     * connected ? OK
  16.  
  17.  
  18. Checking table connexion :
  19.  
  20.     * accounts exist ? OK
  21.     * account_data exist ? OK
  22.  
  23.  
  24. Checking sql parsing on accounts table :
  25.  
  26.     * email exist ? OK
  27.     * created_time exist ? OK
  28.  
  29.  
  30. Checking rights of the cache folder :
  31.  
  32.     * cache folder : OK
Last edited by diablodoro on Sat Jun 18, 2011 2:12 pm, edited 1 time in total.
User avatar
diablodoro
 
Posts: 71
Joined: Thu Oct 11, 2007 9:54 pm

PreviousNext

Return to Tools & Tools Support

Who is online

Users browsing this forum: No registered users and 1 guest