SQL ERROR [ mysql4 ]
Data too long for column 'post_text' at row 1 [1406]
SQL
INSERT INTO phpbb_posts (forum_id, poster_id, icon_id, poster_ip, post_time, post_approved, enable_bbcode, enable_smilies, enable_magic_url, enable_sig, post_username, post_subject, post_text, post_checksum, post_encoding, post_attachment, bbcode_bitfield, bbcode_uid, post_edit_locked, topic_id) VALUES (14, 2, 0, '*.*.*.*', 1151490979, 1, 1, 1, 1, 1, '', 'MySQL error 1251', '[b:a7693]Did you recently encounter �Error 1251: Client does not support authentication protocol requested by server; consider upgrading MySQL client� error?[/b:a7693]\nThis is a common issue for MySQL server 4.1 and higher. Starting 4.1 version, MySQL changed the authentication algorithm to a better password hashing one. All older clients are trying to connect using the old authentication algorithm and this is the source of the error.\nHowever, MySQL offers the OLD_PASSWORD function for backward compatibility.\nThese are the steps:\n1. start mysql from console:\n[code:a7693]cd c:\\program files\\mysql\\mysql server 4.1\\bin\\mysql[/code:a7693]\nOptionally, if you changed the root password, you should use\n[code:a7693]cd c:\\program files\\mysql\\mysql server 4.1\\bin\\mysql -u root[/code:a7693]\n2. after connection, use the following statement\n[code:a7693]SET PASSWORD FOR root@localhost = OLD_PASSWORD(\'old_password_here\');[/code:a7693]\nThat�s it! Now all new and old clients will work.', 'fd67bfd47f687f0b8e48c00ce369ec1e', 'iso-8859-1', 0, 258, 'a7693', 0, 10)
BACKTRACE
FILE: includes/db/mysql4.php
LINE: 106
CALL: dbal_mysql4->sql_error()
FILE: includes/functions_posting.php
LINE: 1534
CALL: dbal_mysql4->sql_query()
FILE: posting.php
LINE: 845
CALL: submit_post()