Quote:
Today at 05:17 PM DPoole said this in Post #51
Done that in jukebox.php i don`t get the same error now LOL
i get this
Invalid SQL: SELECT userid,username,jbplays FROM user WHERE userid='1'
mysql error: Unknown column 'jbplays' in 'field list'
mysql error number: 1054
|
ok i do have the store installed so obviously i mist some stuff in the stand alone version....i will update the zip file once these bugs are fixed......thenks for your co operation & persistance DPpoole....try this find around line 123
PHP Code:
$userstuff = $DB_site->query_first("SELECT userid,username,jbplays FROM user WHERE userid='$bbuserinfo[userid]'");
replace with
PHP Code:
if($jukeboxadmin[storehack]=="1") {
$userstuff = $DB_site->query_first("SELECT userid,username,jbplays FROM user WHERE userid='$bbuserinfo[userid]'");
}