ManOfTeal.COM a Proud UNA site, six years running strong! |
Thanks Alex, looks like it was worth the wait, one quick note, can the description of each place be added to the page header, and tags for keyword for better SEO? Also if members have not added any place, can the places box remain hidden on their profile page until a place has been added instead of: Member's places
No Places
From the land DownUnder |
I take it that since I had the old places now I have to buy again the new one? Since I don't have the download link.. |
Places v.3 is ready - http://www.boonex.com/m/places-2013-07-06 If you already bought old version, then you don't need to buy new one, just pay price difference from previous version - $20, and I will process transaction manually for you. |
Places v.3 is ready - http://www.boonex.com/m/places-2013-07-06 If you already bought old version, then you don't need to buy new one, just pay price difference from previous version - $20, and I will process transaction manually for you. Sent message to both your accounts to confirm that upgrade payment was sent yesterday, looking forward to trying the new version. From the land DownUnder |
I've just processed your transaction. Sent message to both your accounts to confirm that upgrade payment was sent yesterday, looking forward to trying the new version.
|
Got it thanks. From the land DownUnder |
Places rewrite rules for Nginx web-server Add the following rules: # places rewrite "^/dolphin_path/places/(.*)\.css$" /dolphin_path/modules/kolimarfey/places/$1.css last; rewrite "^/dolphin_path/places/(.*)\.js$" /dolphin_path/modules/kolimarfey/places/$1.js last; rewrite "^/dolphin_path/places/(.*)\.swf$" /dolphin_path/modules/kolimarfey/places/$1.swf last; rewrite "^/dolphin_path/places/(.*)\.png$" /dolphin_path/modules/kolimarfey/places/$1.png last; rewrite "^/dolphin_path/places/(.*)\.gif$" /dolphin_path/modules/kolimarfey/places/$1.gif last; rewrite "^/dolphin_path/places/(.*)\.kml$" /dolphin_path/modules/kolimarfey/places/$1.kml last; rewrite "^/dolphin_path/places/(.*)\.kmz$" /dolphin_path/modules/kolimarfey/places/$1.kmz last; rewrite "^/dolphin_path/places/application/icons/(.*)\.jpg$" /dolphin_path/modules/kolimarfey/places/application/icons/$1.jpg last; rewrite "^/dolphin_path/places/(.*)$" /dolphin_path/modules/kolimarfey/places/places.php?/$1 last; rewrite "^/dolphin_path/places.php/(.*)$" /dolphin_path/modules/kolimarfey/places/places.php?/$1 last; Just before Dolphin rewrite rules for profile: # profile rewrite if (!-e $request_filename ) { rewrite ^/dolphin_path/([^/]+)$ /dolphin_path/profile.php?ID=$1 last; break; } Replace dolphin_path to your path to Dolphin folder relative to your domain name, for example if dolphin is installed on http://example.com/community/ folder then replace dolphin_path with community. |
Thanks! http://www.boonex.com/market/posts/paansystems - your resource for Dolphin Pro |
Im looking at developing a motorcycle enthusiast site using this module, Does this include a means to create routes on a map using existing roads and save then for group/member access? The idea here is to create routes for rallys and have meeting points with times assignable. Also after the fact being able to post pictures to locations (maybe through panaramio) would be ideal. I dont really need a module that just lets me include single locations. |
It is possible to create map in Google Earth for example and export data as KML file, then KML files can be attached to the location. Pictures, for now, can be uploaded from the local computer only. Im looking at developing a motorcycle enthusiast site using this module, Does this include a means to create routes on a map using existing roads and save then for group/member access? The idea here is to create routes for rallys and have meeting points with times assignable. Also after the fact being able to post pictures to locations (maybe through panaramio) would be ideal. I dont really need a module that just lets me include single locations.
|
Hey Alex, i have a problem with the Static maps ... it seems that i run out of quota. Can you please add support for an API key of static maps too or show me how to add that? Thanks in advance! http://www.boonex.com/market/posts/paansystems - your resource for Dolphin Pro |
@paansystems - Actually google maps key can be entered via Places admin panel, please let me know if this isn't working for you. |
I've noticed that on some modern hosting environments Places URLs rewrite is not working correctly and links aren't working, then small modification is required in .htaccess file, replace the following code: RewriteRule ^places/(.*)$ modules/kolimarfey/places/places.php/$1 [QSA,L] with this one: RewriteRule ^places/(.*)$ modules/kolimarfey/places/places.php?r=$1 [QSA,L] Sorry for inconvenience, I will try to fix it in the next update. |
Hi Alex, your PlacesController.php has a problem with foreign Chartypes in URIs - $sUri = uriGenerate(urlencode ($form->get('pl_name')), 'places_places', 'pl_uri'); o/ |
Hello. |
Are also interested in whether it is possible to draw on the map with the module routes |
it seems there is a bug in "application/PlacesController.php" code is function include_display_unit () should be function include_display_unit () http://www.boonex.com/market/posts/paansystems - your resource for Dolphin Pro |
oh, and maybe we can get support for sitemaps?? http://www.boonex.com/market/posts/paansystems - your resource for Dolphin Pro |
and another one, if some categories are deselected on home map and the map got dragged the result shows all categories again, maybe that can be fixed too? http://www.boonex.com/market/posts/paansystems - your resource for Dolphin Pro |
any news here?? http://www.boonex.com/market/posts/paansystems - your resource for Dolphin Pro |
This is the fix for bug when categories filter is reset when the map is dragged. Change the following code in modules/kolimarfey/places/application/template/js/kmaps.js file (near ~300 line): google.maps.event.addListener(gmaps.map, 'dragend', function() { funcs['load_markers'].apply(this, [o.urlLoadLocations, o.cats]); }); to: google.maps.event.addListener(gmaps.map, 'dragend', function() { var aTypes = []; $(el).parent().find('input.k_cat_inputs:checked').each(function(i) { aTypes.push(this.value); }); funcs['load_markers'].apply(this, [o.urlLoadLocations, aTypes /* o.cats */]); }); |
Any News on if this mod will release a version for dolphin 7.2.x ? |
When do you plan to update for 7.2.x or better 7.3.x?? http://www.boonex.com/market/posts/paansystems - your resource for Dolphin Pro |
Yes, I'm going to upgrade Places to 7.2 and 7.3 versions. I'm busy now, but hope to do it approx. at the end of January 2016. When do you plan to update for 7.2.x or better 7.3.x??
|
Places module has been just updated. Now it is compatible with Dolphin 7.2.x and Dolphin 7.3.x |
Here is a fix for the problem when map isn't displaying and there are the following error in browser error console (only new domains are affected, old domains should work fine): Google Maps API warning: NoApiKeys Google Maps API warning: SensorNotRequired Change ~38 line in modules/kolimarfey/places/places.php file: <script language="javascript" type="text/javascript" src="http://maps.google.com/maps/api/js?v=3&key=' . $GLOBALS['MySQL']->getOne("SELECT `value` FROM `places_config` WHERE `name` = 'sGoogleKey'") . '&libraries=geometry"></script> Then you need to generate google maps key and enter it in Dolphin Admin Panel > Modules > Places > Basic Settings > Google Maps Key. |
Thank you, Alex! Now it works for me! |
We have bought and installed your module and getting this error - http://i.prntscr.com/32bf9c5e7bff4800aeb1a29ca8a45905.png |
We have bought and installed your module and getting this error - http://i.prntscr.com/32bf9c5e7bff4800aeb1a29ca8a45905.png Please apply the following fix: https://github.com/boonex/dolphin.pro/commit/4037f819e6c601684dc64155161c095e14983f98 Then clear Dolphin caches |
Is "Places By Countries" editable?
I want change to Places By state.
|