Code: Select all
Error in posting
DEBUG MODE
SQL Error : 1064 You have an error in your SQL syntax near 'viewtopic.php?p=2133#2133'> Here to go to the reported post
----------' at line 1
INSERT INTO phpbb_posts_text (post_id, post_subject, bbcode_uid, post_text) VALUES (2136, '(2133)For You Import Fanatics', '4e0b221378', 'Click Here to go to the reported post
--------------------------------
testing')
Line : 288
File : /home/bdweb4724f/ransacknation.com/public_html/phpBB2/includes/functions_post.php
Code: Select all
General Error
Error in posting
DEBUG MODE
SQL Error : 1064 You have an error in your SQL syntax near 'viewtopic.php?p=2975#2975'> Here to go to the reported post
----------' at line 1
INSERT INTO phpbb_posts_text (post_id, post_subject, bbcode_uid, post_text) VALUES (2976, '(2975)test', 'cbb01598f0', 'Click Here to go to the reported post
--------------------------------
testing post')
Line : 288
File : /home/bdweb4724f/ransacknation.com/public_html/phpBB2/includes/functions_post.php
Niels Chr. Denmark wrote:sorry for the delaqyed answer, I did try visit your forum, but the test forum, was unawailebleSnowManrcd wrote:i give up i see no piont to requesting help here. later.
submit_post($mode, $post_data, $return_message, $return_meta, $forum_id, $topic_id, $post_id, $poll_id, $topic_type, $bbcode_on, $html_on, $smilies_on, $attach_sig, $bbcode_uid, str_replace("\'", "''", $username), str_replace("\'", "''", $subject), str_replace("\'", "''", $message), str_replace("\'", "''", $poll_title), $poll_options, $poll_length);
Couldn't obtain category list.
DEBUG MODE
SQL Error : 1064 You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'AND c.cat_id<>'25' WHERE f.cat_id = c.cat_id
SELECT c.cat_id, c.cat_title, c.cat_order FROM phpbb_categories c, phpbb_forums f AND c.cat_id<>'25' WHERE f.cat_id = c.cat_id GROUP BY c.cat_id, c.cat_title, c.cat_order ORDER BY c.cat_order
Line : 121
File : /home/nick/public_html/phpBB2/includes/functions.php
Code: Select all
message_die(GENERAL_ERROR, "Couldn't obtain category list.", "", __LINE__, __FILE__, $sql);
Code: Select all
// $is_auth = auth(AUTH_VIEW, AUTH_LIST_ALL, $userdata);
$sql = "SELECT c.cat_id, c.cat_title, c.cat_order
FROM " . CATEGORIES_TABLE . " c, " . FORUMS_TABLE . " f
".(($userdata['user_level'] == ADMIN)? "" : " AND c.cat_id<>'".HIDDEN_CAT."'" )."
WHERE f.cat_id = c.cat_id
GROUP BY c.cat_id, c.cat_title, c.cat_order
ORDER BY c.cat_order";
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, "Couldn't obtain category list.", "", __LINE__, __FILE__, $sql);
}
$category_rows = array();
while ( $row = $db->sql_fetchrow($result) )
{
$category_rows[] = $row;
}
Code: Select all
c.cat_id <> '".HIDDEN_CAT.