I recently upgraded my vbulletin from 3.54 to 3.61. I had the photopost latest pics showing on my home page fine with 3.54. I upgraded to 3.61, made the change to the index file that was required:
Quote:
In your vB index.php file, you will need to add two lines under under these four:
// ######################### REQUIRE BACK-END ############################
require_once('./global.php');
require_once('./includes/functions_bigthree.php');
require_once('./includes/functions_forumlist.php');
include('./photopost/inc_features.php');
include('./photopost/inc_photopost.php');
|
Checked my FORUMHOME template:
Quote:
In your vB templates, select Forum Home Templates and edit the FORUMHOME template.
To include the PhotoPost "features" box, add the variable $photopostfeature to your template:
$header
$navbar
$photopostfeature
|
And instead of getting the latest pics on my forum home, I get this error:
Quote:
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /gallery/inc_features.php on line 67
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /gallery/inc_features.php on line 142
Warning: mysql_fetch_row(): supplied argument is not a valid MySQL result resource in /gallery/inc_photopost.php on line 128
Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource in /gallery/inc_photopost.php on line 143
|
NO, I do not have seperate databases for my forum and photopost - they are both using the same database. I noticed alot of people are reporting this problem and I see that the standard answer given is that 'you are using 2 seperate databases'. I double checked that:
1. Both my forum and photopost tables are located in the ONE database and;
2. the forum's config.php and photopost's config-inc.php files are pointing at the same datbase with the same user/password.
So any ideas? Has it perhaps got something to do with the way
vb 3.61 works?