PhotoPost Community

PhotoPost Community (http://www.photopost.com/forum/)
-   Photopost Pro Bug Reports (http://www.photopost.com/forum/photopost-pro-bug-reports/)
-   -   5.62 database error (http://www.photopost.com/forum/photopost-pro-bug-reports/130563-5-62-database-error.html)

pengrus February 20th, 2007 05:13 PM

5.62 database error
 
I just upgraded to 5.62, and got a lot of mysql errors that look like this:

----------------------------------------
An error was encountered during execution of the query:

SELECT p.id, p.date, p.user, p.userid, SUM(p.views) AS tviews, COUNT(*) AS pcount, SUM(p.numcom) as numcom,
MAX(p.lastpost) AS maxlast, MAX(p.date) AS maxdate, SUM(p.filesize) AS tfilesize,
u.lastphoto, u.lastdate,
p2.bigimage, p2.cat, p2.storecat, p2.height, p2.width
FROM photos p
LEFT JOIN users u ON (u.userid=p.userid)
LEFT JOIN photos p2 ON (p2.id=u.lastphoto)
WHERE p.user LIKE 'b%'AND p.approved=1
GROUP BY p.userid ORDER BY maxdate DESC

The query returned with an errorcode of:

Unknown column 'u.lastphoto' in 'field list'

If you need assistence or feel this is a 'bug'; please report it to our support forums at: http://www.photopost.com/members/forum/f66/index.html

To turn off these emails, set $debug=0 in your config-inc.php file.
--------------------------

Thanks for your help.

Chuck S February 20th, 2007 05:25 PM

Looks to me like your running 5.6 and have not ran the upgrade script cause a lastphoto column indeed should exist under your Photopost users table

pengrus February 20th, 2007 05:33 PM

Chuck,

You are absolutely right. How could I miss this? I am sorry for my oversight and trouble...

Chuck S February 21st, 2007 09:25 AM

Not a problem my friend


All times are GMT -5. The time now is 09:29 PM.

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