Page 6 of 29
Re: Support for Account Manager
Posted: Tue Jul 07, 2009 7:24 pm
by streamsss
have admin system in this tool?
Re: Support for Account Manager
Posted: Tue Jul 07, 2009 8:17 pm
by daedalus
thanks lishawj for your explanation
streamsss wrote:have admin system in this tool?
No there aren't an admin system on it
Re: Support for Account Manager
Posted: Thu Jul 09, 2009 11:32 am
by Eragon
Hello, thanks for this wonderful tool.
I have one problem, let me try to explain:
I want to include the "?&action=show_create" or "index.php" into one of my static html websites.
I tried the following:
Code: Select all
<?php include ('./account/index.php'); ?>
But when I do so, I get these errors:
Code: Select all
Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /home/sunrisen/public_html/l2/register.php:7) in /home/sunrisen/public_html/l2/account/index.php on line 6 Warning: require(./classes/config.class.php) [function.require]: failed to open stream: No such file or directory in /home/sunrisen/public_html/l2/account/index.php on line 10 Warning: require(./classes/config.class.php) [function.require]: failed to open stream: No such file or directory in /home/sunrisen/public_html/l2/account/index.php on line 10 Fatal error: require() [function.require]: Failed opening required './classes/config.class.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/sunrisen/public_html/l2/account/index.php on line 10
As you might figure, I'm rather new to php.
Any help would be nice.
Re: Support for Account Manager
Posted: Thu Jul 09, 2009 4:38 pm
by daedalus
You should use template for keep website design.
But the solution to use include('acm/index.php') won't work because you display some html code before to show acm and session system doesn't like that.
Re: Support for Account Manager
Posted: Fri Jul 10, 2009 6:33 am
by momo61
will there be more templates for the ACM soon ?

Re: Support for Account Manager
Posted: Fri Jul 10, 2009 4:34 pm
by daedalus

Soon ;D
Re: Support for Account Manager
Posted: Fri Jul 10, 2009 4:43 pm
by momo61
daedalus wrote:
Soon ;D
can't wait ^^ good job D !
Re: Support for Account Manager
Posted: Mon Jul 13, 2009 3:43 am
by Vader
So what are the benefits of this program or any account manager if you can autocreate an account when you first login now? I'm just curious so I can run a server more efficiently. Appreciate any input on this.

Re: Support for Account Manager
Posted: Mon Jul 13, 2009 5:19 pm
by daedalus
It's a good question. Why use an account manager instead of auto create account.
Some ideas :
When you make a wrong type in your account name, it's create useless account.
You can't recovery your password when you use autocreate.
You can't use account services.
You can't manage the number of created account.
Some account manager give some extra for admin likes give access level, check account with the same ip (don't need to log in), ban, unban,. It's mode user friendly to manage an account than edit a db.
Re: Support for Account Manager
Posted: Mon Jul 13, 2009 7:38 pm
by Andrewzz
daedalus, when you set your ACM to a language like spanish, it show bad characters, could you please fix that setting a correct format for the acm?
Also, when the mail arrive to the inbox, it shows that bad letters.
Hope you understand me.
Thanks in advance
Re: Support for Account Manager
Posted: Wed Jul 15, 2009 8:45 am
by daedalus
Try now. But it should be work before. Someone have the same problem ?
By the way, if you have made a template be sure to use UTF-8 charset.
Re: Support for Account Manager
Posted: Wed Jul 15, 2009 10:56 pm
by Andrewzz
Yeah that fixed the error showing bad chars.
But the email that arrive to my inbox is still showing bad characters, I'm using Hotmail.
Code: Select all
La dirección IP xxx.xxx.xxx.xxx quieren restablecer la contraseña de su cuenta de Lineage II a austin.haga clic aqui para restablecer su contraseña.Si no ha realizado este cambio, por favor, no tienen que preocuparse de este correo electrónico. El equipo de Assassins L2 Online
Re: Support for Account Manager
Posted: Thu Jul 16, 2009 3:09 pm
by Vader
daedalus wrote:It's a good question. Why use an account manager instead of auto create account.
Some ideas :
When you make a wrong type in your account name, it's create useless account.
You can't recovery your password when you use autocreate.
You can't use account services.
You can't manage the number of created account.
Some account manager give some extra for admin likes give access level, check account with the same ip (don't need to log in), ban, unban,. It's mode user friendly to manage an account than edit a db.
Thank you for the response back. That's some good info I learned. Now it makes sense to me. Take care and keep up the great contributions that make L2j fun to work with.
Re: Support for Account Manager
Posted: Sun Jul 26, 2009 9:44 am
by Gheazu
i got this error
Deprecated: Function eregi() is deprecated in C:\wamp\www\classes\config.class.php on line 140
Code: Select all
// Test if config value is an email public function ce($var, $val) { try { [color=#FF0000]if(!eregi('^[a-zA-Z0-9._-]+@[a-zA-Z0-9-]+\.[a-zA-Z.]{2,5}$', $val))[/color] throw new MyException('('.gettype($val).')'.var_export($val, 1).' set on '.$var.' must be an email'); $this->$var = $val; } catch (MyException $e) { echo $e; } }
Re: Support for Account Manager
Posted: Mon Jul 27, 2009 9:15 am
by daedalus
Hum,
The problem is eregi is a deprecated function and ACM use it instead of pre_match function. This function is use for check if an email is correct or not.
I'll make an update with preg_match instead of eregi.