1054 error (wrong sql query?)

Phoca Gallery - image gallery extension
ruster1969
Phoca Member
Phoca Member
Posts: 36
Joined: 28 Aug 2015, 09:36

1054 error (wrong sql query?)

Post by ruster1969 »

I've tried to order categories by rating.
Now I got this error:

1054
Unknown column 'r.count' in 'order clause' SQL=SELECT a.id FROM jos_phocagallery AS a LEFT JOIN jos_phocagallery_categories AS cc ON cc.id = a.catid WHERE a.catid= 2 AND a.published = 1 AND a.approved = 1 ORDER BY r.count ASC, a.id ASC


Column count is not missing (it's in jos_phocagallery_categories).

IMHO the issue is in the query, in the part ORDER BY r.count... r is alias for which table? :roll:

I guess that the correct query is
SELECT a.id FROM jos_phocagallery AS a LEFT JOIN jos_phocagallery_categories AS cc ON cc.id = a.catid WHERE a.catid= 2 AND a.published = 1 AND a.approved = 1 ORDER BY cc.count ASC, a.id ASC
ruster1969
Phoca Member
Phoca Member
Posts: 36
Joined: 28 Aug 2015, 09:36

Re: 1054 error (wrong sql query?)

Post by ruster1969 »

If only I could know where to find that query... I can't find which file contains it :(
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 49144
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: 1054 error (wrong sql query?)

Post by Jan »

Hi, thank you for info, quick fix:

download: https://www.phoca.cz/forumfiles/model_category.zip

unzip it and copy it to your server: components\com_phocagallery\models\

This should solve the problem.

Please let me know, so I can add it to next version.

Jan
If you find Phoca extensions useful, please support the project
ruster1969
Phoca Member
Phoca Member
Posts: 36
Joined: 28 Aug 2015, 09:36

Re: 1054 error (wrong sql query?)

Post by ruster1969 »

Jan wrote:Hi, thank you for info, quick fix:

download: https://www.phoca.cz/forumfiles/model_category.zip

unzip it and copy it to your server: components\com_phocagallery\models\

This should solve the problem.

Please let me know, so I can add it to next version.

Jan
Hi Jan,
thank you, problem solved! :twisted:
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 49144
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: 1054 error (wrong sql query?)

Post by Jan »

Hi, great to hear it, I will implement it to newest version.

Thank you for the info.

Jan
If you find Phoca extensions useful, please support the project
User avatar
Jan
Phoca Hero
Phoca Hero
Posts: 49144
Joined: 10 Nov 2007, 18:23
Location: Czech Republic
Contact:

Re: 1054 error (wrong sql query?)

Post by Jan »

Hi, set in version 4.2.2

Jan
If you find Phoca extensions useful, please support the project
Post Reply