SQL error (Unknown column 'bg_image' in 'field list')
in (
    select title,header,footer,background,length(image1),
	length(image2),length(image3),length(image4),length(image5),
	length(bg_image),
	font_color,font_size,shading,support_department,
	table1_bgcolor,table2_bgcolor,table3_bgcolor,
	table1_color,table2_color,table3_color,
	table1_bordercolor,table2_bordercolor,table3_bordercolor
    from pages_properties
    where pages_properties.page_id='16'
)

SQL error (Unknown column 'header' in 'field list')
in (
    select length(header),header_align,length(footer),footer_align,
	header_html,footer_html,length(logo)
    from navlinks where navgroup='1'
)

SQL error (Unknown column 'left_img' in 'field list')
in (
    select top_navigation,topnav_color,length(left_img) from config
)

SQL error (Unknown column 'sort_by_rating' in 'field list')
in (
    select rate_answers,allow_email_articles,allow_print_articles,
	allow_save_articles,sort_by_rating,show_faq,
	show_lastmodified,allow_comments,show_topic_id,show_relevance,
	show_recent,recent_number,allow_update_notify,bar_bg,categ_numrows
    from kb_config
)
Categories
Getting Started (0)
Search Articles
Advanced Search
Frequently Asked Questions
Search our FAQ to find resolutions to common issues.
Our Links

SQL error (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 '' at line 12)
in (
	select topics.topic_id,subject,left(body,255),short_content,body,
	    1 as score,
	    topics.icon
	from topics ,topics_categories,help_categories
	where access=1 and expires>=curdate() and since<=curdate() and intgroup_id in ('0',0)
	     and topics.topic_id=topics_categories.topic_id and
		topics_categories.category_id='0' and
		((topics_categories.category_id=help_categories.category_id and
		help_categories.active in (1,2)) or '0'=0) and topics.intgroup_id in ('0',0)
	group by topics.topic_id
	order by score desc,topics.subject asc
	limit 0,
)