Whenever I try to import the character's speech, how do I solve?
COMMAND: http://localhost:8080/pwAdmin/index....rocess=sqlsync
ERROR: Importing Roles to MySQL Failed
Starts importing ... there delay and failure, it only matters to the 256.
Printable View
Whenever I try to import the character's speech, how do I solve?
COMMAND: http://localhost:8080/pwAdmin/index....rocess=sqlsync
ERROR: Importing Roles to MySQL Failed
Starts importing ... there delay and failure, it only matters to the 256.
I know it's boring, plus you can give me a clue what to do exactly?
if your character database has invalid characters it would crash at some point, because some releases of pwAdmin don't escape the strings properly. Your problem is an sql error because of invalid strings like "'"
to fix it you need to change your role.jsp at several points to something like this:
Code:rolename = StringEscapeUtils.escapeJava(StringEscapeUtils.escapeHtml(chr.base.name.getString()));
Edit only the line 450 and failed, what other line should be edited?