solved jrCore_db_get_multiple_items

nate
@nate
11 years ago
917 posts
When this function is used the module fails integrity check.

//$_song_names = jrCore_db_get_multiple_items('xtSong', $song_ids, array('audio_title','_item_id'));

Has this function been replaced or updated?
updated by @nate: 04/15/14 07:44:23PM
brian
@brian
11 years ago
10,149 posts
No - it's used extensively in almost all JR core scripts, and I've not seen any issues. Note that the function simply returns "false" if things aren't right, so it should not impact an integrity check. You might try it like this:

$_keys = array('audio_title','_item_id');
$_song_names = jrCore_db_get_multiple_items('xtSong', $song_ids, $_keys);

Some versions of PHP won't allow an inline array like that.

Hope this helps!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
SteveX
SteveX
@ultrajam
11 years ago
2,584 posts
Not as far as I know.

Is it failing on xtDistribLicense or xtDJLicense?


--
¯\_(ツ)_/¯ Education, learning resources, TEL, AR/VR/MR, CC licensed content, panoramas, interactive narrative, sectional modules (like jrDocs), lunch at Uni of Bristol. Get in touch if you share my current interests or can suggest better :)
nate
@nate
11 years ago
917 posts
It's not a problem until I update to version 5.1.29.
nate
@nate
11 years ago
917 posts
xtDistribLicense
SteveX
SteveX
@ultrajam
11 years ago
2,584 posts
Which version were you updating from?

I can't run the current xtraxx on localhost as it's too far out of date, but any additional info might be helpful in spotting a new cause of errors.


--
¯\_(ツ)_/¯ Education, learning resources, TEL, AR/VR/MR, CC licensed content, panoramas, interactive narrative, sectional modules (like jrDocs), lunch at Uni of Bristol. Get in touch if you share my current interests or can suggest better :)
nate
@nate
11 years ago
917 posts
Wow I'm not sure I know I think it was 5.1.20 But I could be mistaken.
SteveX
SteveX
@ultrajam
11 years ago
2,584 posts
When I said "too far out of date" I didn't mean xtraxx was, just that my local repo of the project is, and I can't reasonably update it.

Give me a moment to take a look ad the diff.


--
¯\_(ツ)_/¯ Education, learning resources, TEL, AR/VR/MR, CC licensed content, panoramas, interactive narrative, sectional modules (like jrDocs), lunch at Uni of Bristol. Get in touch if you share my current interests or can suggest better :)
nate
@nate
11 years ago
917 posts
Cool thanks.
SteveX
SteveX
@ultrajam
11 years ago
2,584 posts
I've looked through the diff, but didn't spot anything immediately.

I'll take another look at that diff tomorrow with fresher eyes, if you have any additional info in the mean time please post it here.


--
¯\_(ツ)_/¯ Education, learning resources, TEL, AR/VR/MR, CC licensed content, panoramas, interactive narrative, sectional modules (like jrDocs), lunch at Uni of Bristol. Get in touch if you share my current interests or can suggest better :)
nate
@nate
11 years ago
917 posts
ok.
SteveX
SteveX
@ultrajam
11 years ago
2,584 posts
I don't think it can be that causing the integrity check to fail, but you could try disabling xtDistribLicense and then run the integrity check again - if it is that it should then fail on xtDJLicense as the same get_multiple_items code is used there as well.


--
¯\_(ツ)_/¯ Education, learning resources, TEL, AR/VR/MR, CC licensed content, panoramas, interactive narrative, sectional modules (like jrDocs), lunch at Uni of Bristol. Get in touch if you share my current interests or can suggest better :)
nate
@nate
11 years ago
917 posts
I got this fixed.
brian
@brian
11 years ago
10,149 posts
Natedogg265:
I got this fixed.

What ended up being the issue?

Thanks!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
nate
@nate
11 years ago
917 posts
I was getting errors (often) about undeclared vars.

I created 3 vars to stop it, like this
$_song_name = array()

They caused the function to run and error.
if (is_array($_song_name))
brian
@brian
11 years ago
10,149 posts
Ahh yeah - you really should get in the habit of using isset() to make sure a var is set before you "check it" - i.e.

if (isset($_song_name) && is_array($_song_name)) {

This will get rid of "notices" in your PHP error log if you are running with developer mode on.

Hope this helps!


--
Brian Johnson
Founder and Lead Developer - Jamroom
https://www.jamroom.net
nate
@nate
11 years ago
917 posts
You know I figured that out. But I didn't author this module, so I just backed off before I break any further.
nate
@nate
11 years ago
917 posts
I may have to go back and do it, tho. But yeah I noticed I need to use isset.

Thanks.

Tags