Set coordinates button doesn't work
-
- Phoca Newbie
- Posts: 1
- Joined: 19 Jul 2013, 15:09
Set coordinates button doesn't work
On 2 of my new sites, after installing Phoca Maps, the "set coordinates" button doesn't work (it opens a new window but that stays empty) and no map can be made. I do have other similar websites (same structure, same Joomla version, same Phoca Maps version) which do function normally. What can be the problem?
- Jan
- Phoca Hero
- Posts: 48402
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Set coordinates button doesn't work
Hi, blank page mostly means php error, try to enable php error reporting to see which error you get there.
https://www.phoca.cz/documents/16-joomla ... rs-on-site
Jan
https://www.phoca.cz/documents/16-joomla ... rs-on-site
Jan
If you find Phoca extensions useful, please support the project
-
- Phoca Newbie
- Posts: 1
- Joined: 24 Aug 2013, 10:04
Re: Set coordinates button doesn't work
Hi all,
I have got the some issue on my joomla 2.5.14 with Phoca Maps component v. 2.0.6
The problem for me was:
- My site use HTTPS protocol, and "google.com/jsapi" from /Administration folder is called from http://
so all my browsers continue to block library downloading
The solution:
In file /administrator/components/com_phocamaps/helpers/phocamapsmap.php
change to
so just add the final "S" to http
cheers
I have got the some issue on my joomla 2.5.14 with Phoca Maps component v. 2.0.6
The problem for me was:
- My site use HTTPS protocol, and "google.com/jsapi" from /Administration folder is called from http://
so all my browsers continue to block library downloading
The solution:
In file /administrator/components/com_phocamaps/helpers/phocamapsmap.php
Code: Select all
line 69 $scriptLink = 'http://www.google.com/'.$src;
Code: Select all
line 69 $scriptLink = 'https://www.google.com/'.$src;
cheers
- Jan
- Phoca Hero
- Posts: 48402
- Joined: 10 Nov 2007, 18:23
- Location: Czech Republic
- Contact:
Re: Set coordinates button doesn't work
Hi, thank you for the info, in version 3, this can be set in Options.
Jan
Jan
If you find Phoca extensions useful, please support the project
- Jheroen
- Phoca Member
- Posts: 36
- Joined: 23 May 2011, 13:36
Re: Set coordinates button doesn't work
Great! This fixed my problem