Zen Cart Logo
Forums / All Other Contributions/Addons / Google Mapinator

Google Mapinator

Views: 28,723

Results 101 to 108 of 108
7 Nov 2014, 9:07 AM
#101
design75 avatar

design75

Totally Zenned

Join Date:
Dec 2009
Location:
Amersfoort, The Netherlands
Posts:
2,862
Plugin Contributions:
5

Google Mapinator

Design75:

It has been 2 years since I last used this module. I will take a look at it and come with an answer.

I just installed this on a test server, and it is working fine.
Be sure you follow the google instructions, and use the correct API key

Do you have a link to your site? and what arethe versions of your Zen Cart, and the module?

18 Nov 2014, 5:12 PM
#102
craighill avatar

craighill

New Zenner

Join Date:
Oct 2014
Location:
United States
Posts:
2
Plugin Contributions:
0

Re: Google Mapinator

Sorry, I thought I posted up a followup message. I fixed the problem and it works great! My stupid problem, I had accidentally added an apostrophe in the marker title of the mapinator configuration. That was causing the white blank box. I took the apostrophe out and it works prefect. Thanks for the help.

8 Dec 2014, 5:42 AM
#103
thannaree avatar

thannaree

Zen Follower

Join Date:
Dec 2010
Location:
Thailand
Posts:
304
Plugin Contributions:
1

Re: Google Mapinator

NickP:

Solved:clap:

Deleted the last new entrees in the dabase 'configuration' directly.

Made a backup first!!!

I got the first version installed (Version: 0.1a), where there is no uninstall SQL patch.

Is there a uninstall patch available for that version ?

8 Dec 2014, 7:30 AM
#104
design75 avatar

design75

Totally Zenned

Join Date:
Dec 2009
Location:
Amersfoort, The Netherlands
Posts:
2,862
Plugin Contributions:
5

Re: Google Mapinator

Thannaree:

I got the first version installed (Version: 0.1a), where there is no uninstall SQL patch.

Is there a uninstall patch available for that version ?

No there is no uninstall, but is you go to phpmyadmin, and look in your configuration table. You can delete the entries with configuration_key: STORE_TELEPHONE, GOOGLEMAP_KEY,GOOGLEMAP_LAT, GOOGLEMAP_LNG, GOOGLEMAP_ZOOM

8 Dec 2014, 7:39 AM
#105
design75 avatar

design75

Totally Zenned

Join Date:
Dec 2009
Location:
Amersfoort, The Netherlands
Posts:
2,862
Plugin Contributions:
5

Re: Google Mapinator

Design75:

No there is no uninstall, but is you go to phpmyadmin, and look in your configuration table. You can delete the entries with configuration_key: STORE_TELEPHONE, GOOGLEMAP_KEY,GOOGLEMAP_LAT, GOOGLEMAP_LNG, GOOGLEMAP_ZOOM
Or use:

DELETE FROM 'configuration' WHERE 'configuration'.'configuration_key' = STORE_TELEPHONE;
DELETE FROM 'configuration' WHERE 'configuration'.'configuration_key' = GOOGLEMAP_KEY;
DELETE FROM 'configuration' WHERE 'configuration'.'configuration_key' = GOOGLEMAP_LAT;
DELETE FROM 'configuration' WHERE 'configuration'.'configuration_key' = GOOGLEMAP_LNG;
DELETE FROM 'configuration' WHERE 'configuration'.'configuration_key' = GOOGLEMAP_ZOOM;
8 Dec 2014, 9:06 AM
#106
thannaree avatar

thannaree

Zen Follower

Join Date:
Dec 2010
Location:
Thailand
Posts:
304
Plugin Contributions:
1

Re: Google Mapinator

Design75:

Or use:

DELETE FROM 'configuration' WHERE 'configuration'.'configuration_key' = STORE_TELEPHONE;
DELETE FROM 'configuration' WHERE 'configuration'.'configuration_key' = GOOGLEMAP_KEY;
DELETE FROM 'configuration' WHERE 'configuration'.'configuration_key' = GOOGLEMAP_LAT;
DELETE FROM 'configuration' WHERE 'configuration'.'configuration_key' = GOOGLEMAP_LNG;
DELETE FROM 'configuration' WHERE 'configuration'.'configuration_key' = GOOGLEMAP_ZOOM;



I have all these keys:
GOOGLEMAP_KEY
GOOGLEMAP_LAT
GOOGLEMAP_LNG
GOOGLEMAP_MAPTYPE
GOOGLEMAP_MARKER_TITLE
GOOGLEMAP_MODULE_VERSION
GOOGLEMAP_STORE_INFORMATION
GOOGLEMAP_ZOOM

Are these safe to delete?
8 Dec 2014, 9:23 AM
#107
design75 avatar

design75

Totally Zenned

Join Date:
Dec 2009
Location:
Amersfoort, The Netherlands
Posts:
2,862
Plugin Contributions:
5

Re: Google Mapinator

Thannaree:

I have all these keys:
GOOGLEMAP_KEY
GOOGLEMAP_LAT
GOOGLEMAP_LNG
GOOGLEMAP_MAPTYPE
GOOGLEMAP_MARKER_TITLE
GOOGLEMAP_MODULE_VERSION
GOOGLEMAP_STORE_INFORMATION
GOOGLEMAP_ZOOM

Are these safe to delete?

Yes they are

8 Dec 2014, 9:29 AM
#108
thannaree avatar

thannaree

Zen Follower

Join Date:
Dec 2010
Location:
Thailand
Posts:
304
Plugin Contributions:
1

Re: Google Mapinator

Many Thanks!