[map module] Integration problem

ledom

Joined: 2007-10-08
Posts: 77
Posted: Sun, 2008-09-21 08:54

Hi,

I have a problem with module map on my old post card site: http://picturevolution.com.

First, I used joomla 1.0.15, gallery2.2.4 with gallery bridge from 4theweb on an apache serveur with php4
All worked fine.

I need to change php version to 5 (to use iconv option). For that I add "SetEnv PHP_VER 5" to my root .htaccess (joomla directory).

The problem is that, if I do that, map module don't work on embedded gallery2. You can see the page I obtain here: http://picturevolution.com/photos-anciennes/?g2_view=map.ShowMap

there is an error in the console:

Erreur : myWidth is not defined
Fichier Source : http://picturevolution.com/photos-anciennes/?g2_view=map.ShowMap
Ligne : 244

But: the map work fine in gallery2 without integration!!!: http://picturevolution.com/photos2/main.php?g2_view=map.ShowMap

So, I upgrade gallery2 to 2.2.6 and joomla to 1.5.6: same problem

If I remove "SetEnv PHP_VER 5", it work fine again...

There is another post about this subject into gallery2 into wordpress integration forum: http://gallery.menalto.com/node/74900

If someone could help me....

Thanks
ledom

Gallery version = 2.2.6 noyau 1.2.0.8
PHP version = 5.2.6 cgi
Serveur Web = Apache/2.2.X (OVH)
Base de données = mysql 5.0.44-log, lock.system=flock
GoogleMap module 0.5.8
G2Bridge 2.1
Joomla 1.5.6

 
ledom

Joined: 2007-10-08
Posts: 77
Posted: Sun, 2008-09-21 14:40

If it can help... I don't understand why but if gallery2 debug mode is on "buffered", the map is shown and seems to work.

I can see this message before the map: Notice: Undefined index: sidebarBlocksHtml in .../www/components/com_g2bridge/models/gallery.php on line 108

 
ledom

Joined: 2007-10-08
Posts: 77
Posted: Mon, 2008-09-29 10:52

e

 
ledom

Joined: 2007-10-08
Posts: 77
Posted: Mon, 2008-09-29 10:52

Nobody can help me?

http://rubbishbusters.com

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Mon, 2008-09-29 15:34

Does it work standalown?

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
ledom

Joined: 2007-10-08
Posts: 77
Posted: Mon, 2008-09-29 16:30

Hi Dave,

Yes, it works good standalone!

It's like if the javascript that follow googleMap.js into mapHeader.tpl is invisible...

I have two installation of gallery2 on this server. I try with the second gallery2 and it work, I can see the map. Not with the first installation.

MapHeader.tpl files are the same.

Attachements are code of the embeded page in firebug, when it works (second installation of gallery2) and when it don't works (first installation).

Hope it will help you. Thanks.

 
ledom

Joined: 2007-10-08
Posts: 77
Posted: Mon, 2008-10-20 20:26

I upgrade to 2.3
Always the same problem:

the map is always showing with gallery2 standelone, no problem

-with PHP4 the map showned correctly into joomla 1.5
-with PHP4 with gallery2 debug mode ON the map showned correctly
-with PHP5 the map doesn't show at all (error "myWidth is not defined" in firebug)

and I need php5... :(

must I let debug ON?

do you have just an idea of the cause of this problem?

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Tue, 2008-10-21 04:34

So let me get this right...
standalown works in php 4 and 5?
embedded only works in php4 but not in php5?

you will have to leave it on php 5 so we can see the error and source.

Dave

_____________________________________________
Blog & G2 || floridave - Gallery Team

 
ledom

Joined: 2007-10-08
Posts: 77
Posted: Tue, 2008-10-21 07:21

Yes you're right Dave
embedded don't work in php5 (only the map, not the complete gallery)
you'll find html sources for each case in attachment. Ask me if you want I put php5 ON because now it's on php4 for visitors to see the map.
If you look at this sources, you'll see that the script containing <script type="text/javascript">
//<![CDATA[...... with a lot of declaration variables is forgot with php5...

ledom

 
floridave
floridave's picture

Joined: 2003-12-22
Posts: 27300
Posted: Tue, 2008-10-21 14:03

All just guessing here as I don't know much about joomla.
look in: MapHeader.tpl

<!-- Google Maps script -->
{if isset($map.googleMapKey) and $map.googleMapKey neq 'f'}
<script src="http://maps.google.com/maps?file=api&amp;v=2.x&amp;key={$map.googleMapKey}" type="text/javascript"></script>
{if isset($map.GZoom) and $map.GZoom}
  <script src="{g->url href="modules/map/includes/gzoom.js"}" type="text/javascript"></script>
{/if}
<script src="{g->url href="modules/map/GoogleMap.js"}" type="text/javascript"></script>
<!-- This is mostly boilerplate code from Google. See: http://www.google.com/apis/maps/documentation/ -->

<script type="text/javascript">
    //<![CDATA[

it gets through to <script src="{g->url href="modules/map/GoogleMap.js"}" type="text/javascript"></script>
so the if check above is working {if isset($map.googleMapKey) and $map.googleMapKey neq 'f'}
but does not deliver stuff after <!-- This is mostly boilerplate code from Google. See: http://www.google.com/apis/maps/documentation/ -->
so try to remove <!-- This is mostly boilerplate code from Google. See: http://www.google.com/apis/maps/documentation/ --> and see if that helps.

Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team

 
ledom

Joined: 2007-10-08
Posts: 77
Posted: Tue, 2008-10-21 15:24

Hi Dave, i appreciate your help
Spent 10 hours today to try to understand this problem... I dont"t want to become a nerd.. :)
The problem is not only with joomla bug it seems there is the same with wordpress: http://gallery.menalto.com/node/74900
Do you know for witch reason a javascript is not transmit by a tpl file? It seems all is good

I try that:

<script src="{g->url href="modules/map/GoogleMap.js"}" type="text/javascript"></script>
<script type="text/javascript">document.write("Position 1");</script>
<!-- This is mostly boilerplate code from Google. See: http://www.google.com/apis/maps/documentation/ -->
<script type="text/javascript">document.write("Position 2");</script>

<script type="text/javascript">
document.write("Position 3");

    //<![CDATA[
document.write("Position 4");

    var DEBUGINFO = 0; //set to 1 to view the Glog, 0 otherwise

gallery2 standalone I can see: Position 1 Position 2 Position 3Position 4
into joomla: Position 1 Position 2

Do you think I can put this the javascript part to another place (or file) to see it work? maybe in the body?

 
ledom

Joined: 2007-10-08
Posts: 77
Posted: Tue, 2008-10-21 17:06
 
ledom

Joined: 2007-10-08
Posts: 77
Posted: Tue, 2008-10-21 18:29

Think there is a problem with function ShowMeTheMap
If it is in the script, the script doesn't appear in source
If I delete it from mapheader.tpl, the rest of the srcipt appear normally

Now I'll search where is the problem into ShowMeTheMap

 
ledom

Joined: 2007-10-08
Posts: 77
Posted: Tue, 2008-10-21 21:21

Ok I know the problem come from this code (if I remove it all works good without market, the map is showing correctly):

{if $point.id|truncate:1:"" neq 'T'}
    	    CreateMarker({$point.gps}, "{$point.itemLink}", "{$point.title|markup|escape:"javascript"}", "{$point.thumbLink}", "{$point.created}", {$point.zoomlevel}, {$point.thumbWidth}, {$point.thumbHeight}, {if $map.showItemSummaries && !empty($point.summary)} "{$point.summary|markup|escape:"javascript"}"{else}""{/if}, {if $map.showItemDescriptions && !empty($point.description)} "{$point.description|markup|escape:"javascript"}"{else}""{/if}, {$iconDef}{$itemType}Icon, {$point.regroupShowLow}, {$point.regroupShowHigh}, 0, "{$point.type}");
	{/if}

now I need to understand why it work under php4 and not on php5... execution time? memory?
may be tomorrow...

 
ledom

Joined: 2007-10-08
Posts: 77
Posted: Wed, 2008-10-22 09:15

Not a memory problem, I think. Tested with php5 (128Mo memory) on my localhost, the script is not executed and the map doesn't show.

 
davidarnoult

Joined: 2008-03-18
Posts: 39
Posted: Wed, 2008-10-22 18:48

Hi guys,

I have exactly same problem, I tried to upgrade to 2.3 and it is the same, the global map doesn't work, but ok in stand alone mode.
Only the mini map works fine...

If you have any clue, I am interested in your bug profiling when you will have a solution.

Thanks

David

 
SiliconFiend
SiliconFiend's picture

Joined: 2006-12-27
Posts: 508
Posted: Thu, 2008-11-13 17:39

I'll look into this after I finish reworking some sections and make a release. I haven't used the integration personally so I'll have to get something set up on my development/testing gallery installation.

 
davidarnoult

Joined: 2008-03-18
Posts: 39
Posted: Thu, 2008-11-13 21:18

Great and thank you so much SiliconFiend! If I can be of any help regarding this issue.. let me know :-)
I can make some test if you like. Ledom has started to profile the bug. Thanks to him too.

Keep us posted

Rgds

David

 
davidarnoult

Joined: 2008-03-18
Posts: 39
Posted: Thu, 2008-11-13 22:28

Hi again

If i activate php error in config.php, i have this error when loading the map of an album in Joomla:
Fatal error: Maximum execution time of 30 seconds exceeded in /var/www/gallery2/lib/smarty/Smarty_Compiler.class.php on line 1627
Without :

Erreur : myWidth is not defined
Fichier Source : http://www.arnoult.com/index.php?option=com_g2bridge&view=gallery&Itemid=55&g2_view=map.ShowMap&g2_Mode=Normal&g2_Group=&g2_album=2008
Ligne : 872

Hope this helps...

 
SiliconFiend
SiliconFiend's picture

Joined: 2006-12-27
Posts: 508
Posted: Thu, 2008-11-13 23:52

Well, it would seem that it's timing out. Do you have a lot of items with geodata? The ShowMap view is very inefficient in how it's loading the items to display; that's one aspect I'm working on fixing.

 
SiliconFiend
SiliconFiend's picture

Joined: 2006-12-27
Posts: 508
Posted: Fri, 2008-11-14 00:11

I pointed to this thread by mistake. Let's continue discussion at this thread in the 3rd Party plugins forum.