mein CMX News Mod funktioniert irgendwie nur noch manchmal. In manchen fällen wenn ich nen news Post machen will kommt folgender fehler:
Code: Alles auswählen
Error in posting
DEBUG MODE
SQL Error : 1196 Warning: Some non-transactional changed tables couldn't be rolled back
INSERT INTO phpbb_posts_text (post_id, post_subject, bbcode_uid, post_text) VALUES (3764, 'Tchibo-Armee? - Kalter Kaffee', 'b816350d41', '[b:b816350d41]Tchibo-Armee? - Kalter Kaffee[/b:b816350d41]
Line : 261
File : functions_post.php
Code: Alles auswählen
$sql = ($mode != 'editpost') ? "INSERT INTO " . POSTS_TEXT_TABLE . " (post_id, post_subject, bbcode_uid, post_text) VALUES ($post_id, '$post_subject', '$bbcode_uid', '$post_message')" : "UPDATE " . POSTS_TEXT_TABLE . " SET post_text = '$post_message', bbcode_uid = '$bbcode_uid', post_subject = '$post_subject' WHERE post_id = $post_id";
if (!$db->sql_query($sql))
{
message_die(GENERAL_ERROR, 'Error in posting', '', __LINE__, __FILE__, $sql);
}
add_search_words('single', $post_id, stripslashes($post_message), stripslashes($post_subject));
Code: Alles auswählen
message_die(GENERAL_ERROR, 'Error in posting', '', __LINE__, __FILE__, $sql);
Was ich vielleicht dazu sagen sollte ist das ich einen Mod mit BB Code erweiterungen installiert habe. Ob es daran liegen könnte???
Danke schonmal für eure hilfe!