| Almost working, but not quite
HELP! Ok, I just upgraded to 5.6.2, and yes I ran all the scripts and uploaded all the new files and also tripple checked my paths, etc. I am integrating with Threads7 and here is waht I get:
Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /home/XXXX/public_html/forum/photopost/forums/threads7.php on line 34
Ok, now I figured out that somehow the dprefix variable is picking up my OLD DB tables prefix of w3t_ instead of ubbt_ (the prefix on my new threads install). So, in threads7.php, if I force it to make dprefix = ubbt_ it seems to work. I do this my chaning line 18 in threads7.php from this:
if ( empty($Globals['dprefix']) ) $Globals['dprefix'] = "ubbt_";
to this:
$Globals['dprefix'] = "ubbt_";
Somehow $Globals['dprefix'] is not only not empty, but it is set to my old threads 6.5 DB prefix. (I do still have the old install installed).
Is this problem being caused by me still having my old install or is something else going on? Been trying all night to track this down, so any help or insight would be greatly appreciated.
Basil
|