Duplicate entry \'0\' for key 1 SQL=INSERT INTO jos_fb_whoisonline (`userid` , `time`, `what`, `task`, `do`, `func`,`link`, `userip`, `user`) \n VALUES (\'0\', \'1223373602\', \'Re:Work-around: Google maps not showing\',\'\',\'\',\'view\',\'/index.php?option=com_fireboard&Itemid=42&func=view&catid=9&id=3997\', \'38.103.63.59\', \'0\')
Re:Work-around: Google maps not showing (0 viewing)
Favoured: 0
|
|
|
TOPIC: Re:Work-around: Google maps not showing
|
|
|
|
Re:Work-around: Google maps not showing 1 Year, 5 Months ago
|
Karma: 0
|
|
in some IE browsers the map isnt displayed
but if you rightclick on the site you get this menu where code is displayed, if we set this on W-european the map is displayed
in other versions we do not have to change that
is there a workaround for this?
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
dyhex (User)
Expert Boarder
Posts: 146
|
|
Re:Work-around: Google maps not showing 1 Year, 5 Months ago
|
Karma: 4
|
|
Hi!
well I found out that there are in fact 3 locations where the map size is defined.
1. The EA back-end
2 The extended.template.css
3. The script itself
I set 100% width and high in all 3 locations and now it works in IE6 and IE7
|
|
|
|
|
|
|
Dont be afraid of the opposition: remember a kite rises against not with the wind!
|
|
|
The administrator has disabled public write access.
|
|
|
|
Re:Work-around: Google maps not showing 1 Year, 3 Months ago
|
Karma: 0
|
In response to the work around, I have a solution for anyone who is unable to use file_get_contents. Try using CURL. On line 1340, replace... | Code: |
function fetchURL($url) {
return file_get_contents($url);
}
|
with...
| Code: |
function fetchURL($url) {
$ch = curl_init();
$timeout = 5; // set to zero for no timeout
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$file_contents = curl_exec($ch);
curl_close($ch);
return $file_contents;
}
|
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
|
Re:Work-around: Google maps not showing 1 Year, 3 Months ago
|
Karma: 0
|
|
Hi people i have a problem , the map works great but still have a problem
In firefox open in right way under IE the map only open if I refresh the page !!!
Please help me because the users dont know if they have to refresh the page
tnkxs
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
dyhex (User)
Expert Boarder
Posts: 146
|
|
Re:Work-around: Google maps not showing 1 Year, 3 Months ago
|
Karma: 4
|
|
Hi zingaralho,
could you please give us a link to your side? Maybe it is just you and your IE which has problems?
//dyhex
|
|
|
|
|
|
|
Dont be afraid of the opposition: remember a kite rises against not with the wind!
|
|
|
The administrator has disabled public write access.
|
sfg (User)
Fresh Boarder
Posts: 6
|
|
Re:Work-around: Google maps not showing 1 Year, 2 Months ago
|
Karma: 0
|
Hello, thanks for the input:
This not only makes GoogleMaps work but also fix the blank pages (which are due to gmaps not working  ).
Admin, you should sticky this or put it under the faqs untill you implement the fix into the package
Cheers,
Simone
|
|
|
|
|
|
|
The administrator has disabled public write access.
|
|
|
|
|
|