Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.6 > vBulletin 3.6 Add-ons

Reply
 
Thread Tools
vBulletin-Membermap Details »»
vBulletin-Membermap
Version: 1.04, by Vossi Vossi is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Category: Add-On Releases - Version: 3.6.x Rating:
Released: 08-06-2007 Last Update: 08-07-2007 Installs: 218
Supported DB Changes Uses Plugins Template Edits
Additional Files  

vBulletin-Membermap
- the membermap for your vBulletin -

works with vBulletin 3.5.x and 3.6.x

Click here
to nominate vBulletin-Membermap for
Modification of the Month


Click Install to get a Mail when an update has been released!

You can also send a donation if you like to.

What is this AddOn:

This AddOn is a membermap for vBulletin. We coded this AddOn in german and published it on vbhacks-germany.org first, here you will find a stable version in english now.

Your users can add their location on the map... Have a look at it and check yourself.

Here you will find a demo:

http://www.hogwarts-forum.de/vbmembermap.php?langid=3

Most countries in europe are done by now, so if you want to use this AddOn and wish a special country, then let us know and we will upload it.

Installation::

- Upload the files in the 'upload'-folder via FTP.

- Chmod (0777) the following files:

- /vbmembermap/data/vbmembermap_de.data
- /vbmembermap/data/vbmembermap_eu.data
- /vbmembermap/data/vbmembermap_at.data
- /vbmembermap/data/vbmembermap_ch.data

- /vbmembermap/maps/vbmembermap_de_1.png
- /vbmembermap/maps/vbmembermap_eu_1.png
- /vbmembermap/maps/vbmembermap_at_1.png
- /vbmembermap/maps/vbmembermap_ch_1.png

- /vbmembermap/clientscript/vbmembermap_popup.js

- Chmod (0777) the following folder:

- /vbmembermap/backup

- Install the product-file 'vbmembermap-product.xml' in your AdminCP

After your are done with that, follow this instructions:

In AdminCP -> vBulletin-Membermap:
  • Install the wanted geodata under 'Geodata'
  • Install the wanted maps under 'Maps'
  • Choose standard map under 'Maps'.
  • Generate the maps under 'Tools'.
  • Generate the statistic under 'Tools'
  • Choose the right in the usergroups for vBulletin-Membermap

Maps currently available:
  • Austria
  • Australia (within this thread!)
  • Belgium
  • Czech Republic
  • Denmark
  • Europe [BeNeLux]
  • Europe [NoSeFi]
  • Finland
  • France
  • Germany
  • Italy
  • Liechtenstein
  • Luxembourg
  • Netherlands
  • Norway
  • Spain
  • Sweden
  • Switzerland
  • United States of America (within this thread!)
Please request the map you need in this thread an we'll try our best to upload the data as soon as possible.

Have fun with it and: Donations are welcome!

Supporters / CoAuthors

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #252  
Old 09-28-2007, 10:30 PM
74corvette 74corvette is offline
 
Join Date: Sep 2007
Posts: 49
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Great Job. Not a bit of problem to install. Clicked Installed and voted.
Reply With Quote
  #253  
Old 10-01-2007, 03:52 AM
wi11ie1950 wi11ie1950 is offline
 
Join Date: Sep 2004
Posts: 62
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Just asking about a Canadian map being included eventually! Appreciate the consider!
Thanks
Reply With Quote
  #254  
Old 10-01-2007, 04:23 AM
ChurchMedia's Avatar
ChurchMedia ChurchMedia is offline
 
Join Date: Dec 2002
Location: Las Cruces, NM
Posts: 473
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Me too! Canada and the UK.... I'll be sure to send a donation for your time

Thanks!

Quote:
Originally Posted by wi11ie1950 View Post
Just asking about a Canadian map being included eventually! Appreciate the consider!
Thanks
Reply With Quote
  #255  
Old 10-02-2007, 10:45 PM
CarpHunter CarpHunter is offline
 
Join Date: Apr 2005
Location: Netherlands
Posts: 42
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Like the mod so installed.

Only thing is that (for an intended english plugin) not all phrases are translated in english. I get allot of German phrases.

Also is it possible to have the text in the maps in more languages than german only?
I use the NL and BE maps and it looks wierd when it says Niederlande and Belgien. Just make it universal english or make it in the language of the country map.
Reply With Quote
  #256  
Old 10-07-2007, 03:02 AM
Ski-Whiz's Avatar
Ski-Whiz Ski-Whiz is offline
 
Join Date: May 2003
Posts: 214
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bikers View Post
How do I change the User close and user far distance from km to miles?
Here's the code that does the distance (in vbmembermap.php)

Code:
// Entfernteste und dichteste User ermitteln
		$f = M_PI / 180; $r = 6370;
		if ($vbmembermap_benutzerdaten['longitude'])
		{
			$a_b = $vbmembermap_benutzerdaten['longitude'] * $f; $a_l = $vbmembermap_benutzerdaten['latitude'] * $f;
			$user_dist = $db->query ("SELECT * FROM " . TABLE_PREFIX . "vbmembermap_user WHERE userid != '" . $db->escape_string($vbulletin->userinfo['userid']) . "'");
			$a = 0; while ($row = $db->fetch_array ($user_dist))
			{
				$b_b = $row['longitude'] * $f; $b_l = $row['latitude'] * $f;
				$entfernung = round (acos (sin ($b_l) * sin ($a_l) + cos ($b_l) * cos ($a_l) * cos ($b_b - $a_b)) * $r, 2);
				if (($entfernung < $usermin[1]) || (!$a))
				{
					$usermin[0] = "<a href=\"member.php?u=" . $row['userid'] . "\">" . $row['username'] . "</a> (" . $entfernung . " km)";
					$usermin[1] = $entfernung;
				}
				if (($entfernung > $usermax[1]) || (!$a))
				{
					$usermax[0] = "<a href=\"member.php?u=" . $row['userid'] . "\">" . $row['username'] . "</a> (" . $entfernung . " km)";
					$usermax[1] = $entfernung;
				}
				$a = 1;
			}

			$showusernear = $vbphrase['statistik_vbmembermap_showusernear'] . $usermin[0];
			$showuserfar = $vbphrase['statistik_vbmembermap_showuserfar'] . $usermax[0];
		} else {
			$showusernear = $vbphrase['statistik_vbmembermap_showusernear'] . "none";
			$showuserfar = $vbphrase['statistik_vbmembermap_showuserfar'] . "none";
		}
	}

Now to fix it to work for miles.. lol Maybe someone knows how to??
Reply With Quote
  #257  
Old 10-07-2007, 04:49 PM
labmixz labmixz is offline
 
Join Date: Oct 2007
Location: Palm Harbor, FL
Posts: 3
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Ranger187 View Post
I'm kinda clueless here... I'm getting this when I click this:

Klick here for generating the maps

Resulting in:

The file properties for read/write are not correct.

Please inform the administrator!

When I gave full permissions to the correct places... Did I miss something?
Edit the Usergroup permissions are the very bottom of the UserGroup permissions you will see the addition for vBMembermap...

Right now I'm getting...

Code:
vBulletin Message
The file properties for read/write are not correct.

Please inform the administrator!

Edit: I found out my FTP client wasn't saving the permissions; Fixed it by just using old command line ftp...
Reply With Quote
  #258  
Old 10-10-2007, 06:24 PM
rotor rotor is offline
 
Join Date: Jul 2007
Location: Qld, Australia
Posts: 116
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by CarpHunter View Post
Like the mod so installed.

Only thing is that (for an intended english plugin) not all phrases are translated in english. I get allot of German phrases.

Also is it possible to have the text in the maps in more languages than german only?
I use the NL and BE maps and it looks wierd when it says Niederlande and Belgien. Just make it universal english or make it in the language of the country map.
It's relatively easy to add what you want to the maps ... just edit the .png file and upload it over the map on site .. I've added the Australian and USA states without a problem ...

rotor
Reply With Quote
  #259  
Old 10-10-2007, 07:28 PM
wrang wrang is offline
 
Join Date: Oct 2004
Location: Sweden
Posts: 161
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I have done all the thing abow to install but i cant find the dots in the map and the link dosent shows in the navbar

http://www.saltvattensguiden.se/forumet/vbmembermap.php

What have i missed
Reply With Quote
  #260  
Old 10-11-2007, 11:23 PM
rotor rotor is offline
 
Join Date: Jul 2007
Location: Qld, Australia
Posts: 116
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

I don't want to be a pain in the @rse but ..... does anyone have any idea when any more maps will become available? It seems there are plenty of EU maps but not others ....

I know people are chasing - Canada, United Kingdom, China, India, Africa, New Zealand ..... the list goes on .... and I'd like a few of these also ......

I'm not impatient .... but there hasn't been any progress in maps for quite a while now - this mod hasn't died has it?

rotor
Reply With Quote
  #261  
Old 10-12-2007, 03:56 PM
wrang wrang is offline
 
Join Date: Oct 2004
Location: Sweden
Posts: 161
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is it possible to have diffrent flags for diffrent usergroups?
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 10:51 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.12905 seconds
  • Memory Usage 2,317KB
  • Queries Executed 26 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (2)bbcode_code
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete