PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro Installation & Upgrades (http://www.photopost.com/forum/photopost-pro-installation-upgrades/)
-   -   Almost working, but not quite (http://www.photopost.com/forum/photopost-pro-installation-upgrades/129604-almost-working-but-not-quite.html)

Basil December 29th, 2006 10:05 PM

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

Chuck S December 30th, 2006 08:12 AM

There should never be a need to edit or hack things.

Make sure your config file is set to the right database settings and then use phpmyadmin or such to view your database and issue this query

UPDATE pp_settings SET setting='ubbt_' WHERE id=83


All times are GMT -5. The time now is 10:30 AM.

Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97