so like i did it on screenshot is not ok?
Support for Account Manager
Forum rules
READ NOW: L2j Forums Rules of Conduct
READ NOW: L2j Forums Rules of Conduct
-
babyjason
- Posts: 575
- Joined: Wed Dec 02, 2009 7:59 pm
Re: Support for Account Manager
ty very much, i rly appreciated, but i have only 1 database.
so like i did it on screenshot is not ok?
so like i did it on screenshot is not ok?
- daedalus
- Posts: 155
- Joined: Sun Mar 12, 2006 12:16 pm
Re: Support for Account Manager
hum nop, because ACM use account_table for store tmp value (forget password, account validation, etc...) and need to delete these values. And you allow to update all tables in the database : accounts but characters too. Can be dangerous if ACM is under exploit which allow ACM to edit character acceslevel so being gamemaster and fu.... all your game experience.
SQL code for using one bd and understandable permission :
SQL code for using one bd and understandable permission :
Code: Select all
CREATE USER 'acm'@'localhost' IDENTIFIED BY '***************************************'; /* CREATE a new DB USER named acm */ REVOKE ALL PRIVILEGES FROM 'acm'@'localhost'; /* REVOKE him privilege */ GRANT SELECT , INSERT , UPDATE ON `l2jdb`.`accounts` TO 'acm'@'localhost'; /* allow SELECT, INSERT, UPDATE FOR accounts TABLE */GRANT SELECT , INSERT , UPDATE , DELETE ON `l2jdb`.`account_data` TO 'acm'@'localhost'; /* allow SELECT, INSERT, UPDATE, DELETE FOR account_table TABLE */Daedalus
-
babyjason
- Posts: 575
- Joined: Wed Dec 02, 2009 7:59 pm
Re: Support for Account Manager
i did what you tought me for my user
now it looks like this, all works, i hope i did good, only problem was when i did
is it ok as seen in image? i think i did all good, just replaced acm with my user and localhost with my server host, all worked.
# REVOKE ALL PRIVILEGES FROM 'acm'@'localhost'; it gave syntax error, but seamed to have removed all priviledges, as you can see in images,
thank you again so so much for helping me, nobody did ever, google seams useless when it comes to this , and i really wish to learn , luv ya!:D just reply with a yes if it seams allright so i can sleep tonight.
Code: Select all
REVOKE ALL PRIVILEGES FROM 'myuser'@'myhost';GRANT SELECT , INSERT , UPDATE ON `l2jdb`.`accounts` TO 'myuser'@'myhost'; GRANT SELECT , INSERT , UPDATE , DELETE ON `l2jdb`.`account_data` TO 'myuser'@'myhost';
now it looks like this, all works, i hope i did good, only problem was when i did
is it ok as seen in image? i think i did all good, just replaced acm with my user and localhost with my server host, all worked.
# REVOKE ALL PRIVILEGES FROM 'acm'@'localhost'; it gave syntax error, but seamed to have removed all priviledges, as you can see in images,
thank you again so so much for helping me, nobody did ever, google seams useless when it comes to this , and i really wish to learn , luv ya!:D just reply with a yes if it seams allright so i can sleep tonight.
- daedalus
- Posts: 155
- Joined: Sun Mar 12, 2006 12:16 pm
Re: Support for Account Manager
for revoke just be sure nothing is set before to applying grant access. Warn can be ignored.
It's seems good
Gn
It's seems good
Daedalus
-
babyjason
- Posts: 575
- Joined: Wed Dec 02, 2009 7:59 pm
Re: Support for Account Manager
thank you so much, you cant imagine how much it meant ur help to me. have a great day. ty and sry all for beeing so annoying.daedalus wrote:for revoke just be sure nothing is set before to applying grant access. Warn can be ignored.
It's seems goodGn
this account manager is just awsome, congrats.
- Raikkon35
- Posts: 178
- Joined: Sat Mar 08, 2008 2:54 pm
Re: Support for Account Manager
Hi Daedalus!
I was thinking it would be nice to request an object id and amount (located in the inventory of the character) to use the account services, such as gender and name change.
Would be possible for you to implement it? I'm sure it is not difficult.
Thank you very much!
I was thinking it would be nice to request an object id and amount (located in the inventory of the character) to use the account services, such as gender and name change.
Would be possible for you to implement it? I'm sure it is not difficult.
Thank you very much!
-
msjoker
- Posts: 2
- Joined: Thu Jul 01, 2010 5:34 pm
Re: Support for Account Manager
hello!
I'm new here
ok, my problem is this:
ACM everything ok, but I throw this error:
openssl ---- KO
and
gd ---- KO
everything else gives me: OK.
I thank you for your response.
p.d: I'm not very good with English, jaj
I'm new here
ok, my problem is this:
ACM everything ok, but I throw this error:
openssl ---- KO
and
gd ---- KO
everything else gives me: OK.
I thank you for your response.
p.d: I'm not very good with English, jaj
-
labman
- Posts: 67
- Joined: Sun Sep 13, 2009 2:09 pm
- Location: Taiwan
- Contact:
Re: Support for Account Manager
in my servermsjoker wrote: openssl ---- KO
and
gd ---- KO
openssl ---- OK
and
gd ---- OK
-
msjoker
- Posts: 2
- Joined: Thu Jul 01, 2010 5:34 pm
Re: Support for Account Manager
openssl ---- KO
and
gd ---- KO
yes, but not how to fix it appears to me OK
Instead of KO.
Help me please
and
gd ---- KO
yes, but not how to fix it appears to me OK
Instead of KO.
Help me please
- denser
- Posts: 1392
- Joined: Wed May 30, 2007 9:13 pm
- Location: Russia
- Contact:
Re: Support for Account Manager
it mean your hoster must have openssl and gd libraries in apache
Tiger, once tasted human flesh, will want to taste it again
L2J - the place where glad to see you any time!
L2J - the place where glad to see you any time!
- Raikkon35
- Posts: 178
- Joined: Sat Mar 08, 2008 2:54 pm
Re: Support for Account Manager
According to
Code: Select all
$vm['_REGWARN_PASS'] = 'Please enter a valid password. No spaces, more than 6 characters and contain 0-9,a-z,A-Z';Code: Select all
Index: classes/config.class.php===================================================================--- classes/config.class.php (revision 163)+++ classes/config.class.php (working copy)@@ -60,7 +60,7 @@ private $email_smtp_domain = ''; private $adv_id_regex = '`^[a-z0-9]{4,15}$`'; // allow alphanumeric character in login name and login character min needed is 4 and max 15- private $adv_pwd_regex = '`^[[:alnum:]@\\\/]{4,15}$`'; //allow alphanumeric character and \ / @ in password and pwd character min needed is 4 and max 15+ private $adv_pwd_regex = '`^[[:alnum:]@\\\/]{6,15}$`'; //allow alphanumeric character and \ / @ in password and pwd character min needed is 4 and max 15 private static $instance; - Shaka
- Posts: 277
- Joined: Wed Jun 13, 2007 7:43 pm
- Location: VENEZUELA
- Contact:
Re: Support for Account Manager
sorry, my english is bad.
fix gracia template:
DOCTYPE changes for XHTML 1.0 Transitional XHTML 1.0 Strict.
W3C validation for the whole document in XHTML 1.0 Strict and CSS 2.1.
Style.css disabled some things about compatibility.
moved the script in javascript files, in addition added a detector, check that your browser if you updated it to be out of date alerts you with a small notice that you upgrade your web browser. (http://www.browser-update.org/en/)
Changes in the language system:
added in config.php charset table description.
added but not implemented in english.php, english.php type of charset and language departments. (Requires changes to implement multilanguage).
suggestions.
smarty upgrade to version more stable.
add the configuration option to force HTTPS (SSL).
change the system multilingual.
watch videos guide only in Spanish.
spanish:
arreglos de la plantilla gracia:
cambios de DOCTYPE XHTML 1.0 Transitional por XHTML 1.0 Strict.
validación por W3C todo el documento en XHTML 1.0 Strict y CSS 2.1.
deshabilitado algunas cosas en Style.css por la compatibilidad.
movido los script en archivos javascript, adicionalmente agregado un detector, chequea que tu navegador si esta actualizado, al no estar actualizado te avisa con una pequeña notificación que debes actualizar tu navegador. (http://www.browser-update.org/es/)
Cambios en el sistema de lenguaje:
agregado en el config.php la descripción tabla charset.
agregado pero no implementado en english.php, spanish.php tipo de charset y tipo de lenguaje. (requiere cambios para implementar el multilenguaje).
sugerencias.
actualizar el smarty a la versión mas estable.
agregar en la configuración una opción de forzar a HTTPS (SSL).
cambiar el sistema a multilenguaje.
ver vídeos guías solo en español.
vidoe 1: Multilenguaje con PHP usando la clase class.Language.php
Video 2: Multilenguaje con PHP usando la clase class.Language.php
video 3: Multilenguaje con PHP y Smarty
example: multilenguage-part3.rar
otras referencias:
Markup Validation Service: http://validator.w3.org/
CSS Validation Service: http://jigsaw.w3.org/css-validator/
Total Validator: http://www.totalvalidator.com/
HTML ISO-8859-1 Reference: http://www.w3schools.com/tags/ref_entities.asp
HTML <html> Tag: http://www.w3schools.com/TAGS/tag_html.asp
HTML Language Code Reference: http://www.w3schools.com/TAGS/ref_language_codes.asp
HTML Character Sets: http://www.w3schools.com/tags/ref_charactersets.asp
fix gracia template:
DOCTYPE changes for XHTML 1.0 Transitional XHTML 1.0 Strict.
W3C validation for the whole document in XHTML 1.0 Strict and CSS 2.1.
Style.css disabled some things about compatibility.
moved the script in javascript files, in addition added a detector, check that your browser if you updated it to be out of date alerts you with a small notice that you upgrade your web browser. (http://www.browser-update.org/en/)
Changes in the language system:
added in config.php charset table description.
added but not implemented in english.php, english.php type of charset and language departments. (Requires changes to implement multilanguage).
suggestions.
smarty upgrade to version more stable.
add the configuration option to force HTTPS (SSL).
change the system multilingual.
watch videos guide only in Spanish.
spanish:
arreglos de la plantilla gracia:
cambios de DOCTYPE XHTML 1.0 Transitional por XHTML 1.0 Strict.
validación por W3C todo el documento en XHTML 1.0 Strict y CSS 2.1.
deshabilitado algunas cosas en Style.css por la compatibilidad.
movido los script en archivos javascript, adicionalmente agregado un detector, chequea que tu navegador si esta actualizado, al no estar actualizado te avisa con una pequeña notificación que debes actualizar tu navegador. (http://www.browser-update.org/es/)
Cambios en el sistema de lenguaje:
agregado en el config.php la descripción tabla charset.
agregado pero no implementado en english.php, spanish.php tipo de charset y tipo de lenguaje. (requiere cambios para implementar el multilenguaje).
sugerencias.
actualizar el smarty a la versión mas estable.
agregar en la configuración una opción de forzar a HTTPS (SSL).
cambiar el sistema a multilenguaje.
ver vídeos guías solo en español.
vidoe 1: Multilenguaje con PHP usando la clase class.Language.php
Video 2: Multilenguaje con PHP usando la clase class.Language.php
video 3: Multilenguaje con PHP y Smarty
example: multilenguage-part3.rar
otras referencias:
Markup Validation Service: http://validator.w3.org/
CSS Validation Service: http://jigsaw.w3.org/css-validator/
Total Validator: http://www.totalvalidator.com/
HTML ISO-8859-1 Reference: http://www.w3schools.com/tags/ref_entities.asp
HTML <html> Tag: http://www.w3schools.com/TAGS/tag_html.asp
HTML Language Code Reference: http://www.w3schools.com/TAGS/ref_language_codes.asp
HTML Character Sets: http://www.w3schools.com/tags/ref_charactersets.asp
You do not have the required permissions to view the files attached to this post.
- Shaka
- Posts: 277
- Joined: Wed Jun 13, 2007 7:43 pm
- Location: VENEZUELA
- Contact:
Re: Support for Account Manager
php 5.3.x incompatible
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /account_manager/index.php on line 18
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /account_manager/install.php on line 24
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /account_manager/index.php on line 18
Parse error: syntax error, unexpected T_OBJECT_OPERATOR in /account_manager/install.php on line 24
- UnAfraid
- L2j Veteran

- Posts: 4199
- Joined: Mon Jul 23, 2007 4:25 pm
- Location: Bulgaria
- Contact:
Re: Support for Account Manager
What have on that lines? 
take a look on config what's written on that CONFIG::g()->cs('core_iso_type', 'utf-8'); ?
take a look on config what's written on that CONFIG::g()->cs('core_iso_type', 'utf-8'); ?
- Shaka
- Posts: 277
- Joined: Wed Jun 13, 2007 7:43 pm
- Location: VENEZUELA
- Contact:
Re: Support for Account Manager
sorry, me and wrong, PHP 4 is not compatible to ignore this error.
