MySQL error after updating Jamroom

sbhadauria
@sbhadauria
6 years ago
129 posts
My website stopped working after jamroom update from 6.1.5 to 6.1.7

Please find the attached screenshot.
updated by @sbhadauria: 08/28/18 07:02:53AM
michael
@michael
6 years ago
7,692 posts
Have you tried clearing the caches and running the INTEGRITY CHECK tool?

https://www.jamroom.net/the-jamroom-network/documentation/troubleshooting/114/somethings-wrong-what-do-i-do
sbhadauria
@sbhadauria
6 years ago
129 posts
Thanks for reply @michale but I already did
sbhadauria
@sbhadauria
6 years ago
129 posts
_jrCore_db_search_items function in datastore.php is creating errors. when I have replaced this function to old jamroom release (6.1.5) then MySql errors fixed.
michael
@michael
6 years ago
7,692 posts
Maybe try rebuilding the search index
ACP -> MODULES -> LISTING -> SEARCH -> TOOLS -> REBUILD INDEXES
sbhadauria
@sbhadauria
6 years ago
129 posts
not working still getting errors
brian
@brian
6 years ago
10,136 posts
I cannot replicate this issue on this end - the DS is passing all unit tests as well. This is coming from your dashboard - have you created any custom dashboard panels? Do you know what panels are active? (look in the database jr_jrcore_settings table for the "dashboard_config" entry for the jrCore module).


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
sbhadauria
@sbhadauria
6 years ago
129 posts
Not coming only from dashboard. Below mentioned type of searching giving errors.
                $_cnt = array(
			'search' => array(
				"notification_user_id = {$_user['_user_id']}",
				"notification_status = unread"
			),
			'return_keys'   => array('_item_id','notification_type','notification_title','notification_url','notification_status'),
			'limit'			=> 1000000,
			'skip_triggers' => true,
			'pending_check' => false,
			'privacy_check' => false,
			'no_cache'      => true
		);
		$items = jrCore_db_search_items('xtCustomMod', $_cnt);
michael
@michael
6 years ago
7,692 posts
make sure that _user_id is being set, seems like it might not be there.
missing.jpg
missing.jpg  •  49KB

sbhadauria
@sbhadauria
6 years ago
129 posts
still not working, I can not update production
brian
@brian
6 years ago
10,136 posts
sbhadauria:
still not working, I can not update production

Disable your custom modules and see if it works. No other site has reported this issue, and unit tests are passing 100% for the datastore. I can see your query is missing info, so check your {jrCore_list} calls and calls to jrCore_db_search_items().


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
brian
@brian
6 years ago
10,136 posts
Looking at this some more, my suspicion is that you have a {jrCore_list} call either in your header.tpl or footer.tpl that is relying on a variable being set in the template (or passed in via $_post) that is NOT being set. Since the error in your first screenshot came in on the activity log, that makes me think it's probably in your header/footer.


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
sbhadauria
@sbhadauria
6 years ago
129 posts
Hi @brian sorry for late response was busy in another task.

why I am not getting any error in 6.1.5 version?
brian
@brian
6 years ago
10,136 posts
sbhadauria:
Hi @brian sorry for late response was busy in another task.

why I am not getting any error in 6.1.5 version?

I have no idea without spending time debugging it on your system. There is no other report from any site of this happening, so unfortunately I cannot tell you what it is.


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net

Tags