I am getting the following error message when trying to access/set up maps or markers.
Anyone know what to do? I deleted all the files and tried to reload the app, but got the same error!
Thank you, Steve
500 Unknown column 'a.language' in 'on clause' SQL=SELECT a.*,l.title AS language_title,uc.name AS editor FROM `#__phocamaps_map` AS a LEFT JOIN `#__languages` AS l ON l.lang_code = a.language LEFT JOIN #__users AS uc ON uc.id=a.checked_out WHERE (a.published IN (0, 1)) ORDER BY a.ordering asc LIMIT 100 Unknown column 'a.language' in 'on clause' SQL=SELECT COUNT(*) FROM `#__phocamaps_map` AS a LEFT JOIN `#__languages` AS l ON l.lang_code = a.language LEFT JOIN #__users AS uc ON uc.id=a.checked_out WHERE (a.published IN (0, 1))
Error message on Phoca Maps
- Jan
- Phoca Hero
- Posts: 48403
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Error message on Phoca Maps
Hi, which version of Phoca Maps and Joomla! do you use?
Jan
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 5
- Joined: 03 Apr 2017, 23:33
Re: Error message on Phoca Maps
phocamaps_v3
Joomla! 3.6.5
Joomla! 3.6.5
- Jan
- Phoca Hero
- Posts: 48403
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Error message on Phoca Maps
Hi, which version exactly of the Phoca Maps?
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 5
- Joined: 03 Apr 2017, 23:33
Re: Error message on Phoca Maps
com_phocamaps_v3.0.4
Joomla! 3.6.5
Joomla! 3.6.5
- Jan
- Phoca Hero
- Posts: 48403
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Error message on Phoca Maps
Hi, #__phocamaps_map table includes the column language:
Did you make some upgrade, etc. where the column can be lost?
Jan
Code: Select all
CREATE TABLE IF NOT EXISTS `#__phocamaps_map` (
`id` int(11) NOT NULL auto_increment,
...
`language` char(7) NOT NULL default '',
PRIMARY KEY (`id`),
KEY `cat_idx` (`published`,`access`),
KEY `idx_access` (`access`),
KEY `idx_checkout` (`checked_out`)
) CHARACTER SET `utf8`;
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 5
- Joined: 03 Apr 2017, 23:33
Re: Error message on Phoca Maps
Upgraded from Joomla 1.5 then deleted phocamaps then downloaded newest version. Getting same error message on v1.5 and v3.0.4
- Jan
- Phoca Hero
- Posts: 48403
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Error message on Phoca Maps
Did you really install the latest version:
https://www.phoca.cz/download/category/3 ... -component (3.0.4) here, just see the file inside the ZIP:
install/sql/mysql/install.utf8.sql and check the instructions for table phocamaps_map:
Do you see the column language: `language` char(7) NOT NULL default '',?
When you see your database e.g. with phpMyadmin, do you see the column in this table?
Jan
https://www.phoca.cz/download/category/3 ... -component (3.0.4) here, just see the file inside the ZIP:
install/sql/mysql/install.utf8.sql and check the instructions for table phocamaps_map:
Do you see the column language: `language` char(7) NOT NULL default '',?
When you see your database e.g. with phpMyadmin, do you see the column in this table?
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 5
- Joined: 03 Apr 2017, 23:33
Re: Error message on Phoca Maps
Thanks Jan! I will look for that setting.