vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.6 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=194)
-   -   Add-On Releases - vBulletin-Membermap (https://vborg.vbsupport.ru/showthread.php?t=154533)

bikers 09-27-2007 02:02 AM

Yep I uninstalled it also.

captainslater 09-27-2007 05:13 AM

Quote:

Originally Posted by Ranger187 (Post 1347890)
Uninstalled due to lack of support. Installed it on 3 forums, and all 3 had issues with it.

Some kind of people are a bit unthankful. If installed the product in two boards without any problems.

Also you should note that people have their one private life. This should be respected.

ChurchMedia 09-27-2007 05:15 AM

Installed perfectly and it's up and running. I sent in a little donation for the great work.

I would LOVE to see a UK and Canada map! I have a lot of Canadian and UK members who are feeling left out. ;)

Thanks!

Ranger187 09-27-2007 06:06 AM

Quote:

Originally Posted by captainslater (Post 1347975)
Some kind of people are a bit unthankful. If installed the product in two boards without any problems.

Also you should note that people have their one private life. This should be respected.

If you don't like my reply, that's not my fault. If you can't handle the lack of support other then "check that it's (777) then maybe you better stop asking others to hold your hand. I'm not a noob to Vbulletin, nor to the plugins or computers for that aspect. It's been an issue that has been posted on in more then 30 days with 1 reply saying nothing more then make sure it's 777. If you think because it installs on 300 computers and 1 fails it's the failed computers fault, then you really need a clue.

Uninstalled. If ya don't like it, oh well. I didn't say anything disrespectful. I just said I uninstalled and why. Now go back to your hole.

captainslater 09-27-2007 09:32 AM

Well and exactly your kind of response make some people to stop support. I prefer my 'hole' instead of these unfriendly comments.

I don't say you are a newbie or anything else. I've just admitted to respect some coder's private life and don't blame if you don't get an answer within the next X days. The product is very good and it works for the most people. It's a normal thing that there a problems with few users.

But nevertheless I don't want to offend you nor anybody else.
Just sit back and relax and wait for the next version which will come for sure.

SVTCobraLTD 09-27-2007 10:23 AM

Quote:

Originally Posted by SVTCobraLTD (Post 1326753)
Anychance you got to get to this yet? Need the Pennsylvania map extracted from the US map. Thank you.

SVT

Just curious. If somone knows how I can do it myself, I am more then willing to do so. Thank you.

SVT

rknight111 09-27-2007 03:26 PM

Is there any Canada maps?

Thanks,
RON

MSpot 09-27-2007 05:54 PM

Hi,

Is it possible to include New Zealand map?

You are a wonderful coder man. You work rocks.

bikers 09-27-2007 06:25 PM

Quote:

Originally Posted by captainslater (Post 1348088)
Well and exactly your kind of response make some people to stop support. I prefer my 'hole' instead of these unfriendly comments.

I don't say you are a newbie or anything else. I've just admitted to respect some coder's private life and don't blame if you don't get an answer within the next X days. The product is very good and it works for the most people. It's a normal thing that there a problems with few users.

But nevertheless I don't want to offend you nor anybody else.
Just sit back and relax and wait for the next version which will come for sure.


No one said anything before and yet no support for this hack. Dont worry I wont be using it.

MissKalunji 09-27-2007 07:26 PM

Quote:

Originally Posted by rknight111 (Post 1348299)
Is there any Canada maps?

Thanks,
RON


no whatever you see up there is all there is available

74corvette 09-28-2007 10:30 PM

Great Job. Not a bit of problem to install. Clicked Installed and voted.

wi11ie1950 10-01-2007 03:52 AM

Just asking about a Canadian map being included eventually! Appreciate the consider!
Thanks

ChurchMedia 10-01-2007 04:23 AM

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

Thanks!

Quote:

Originally Posted by wi11ie1950 (Post 1350601)
Just asking about a Canadian map being included eventually! Appreciate the consider!
Thanks


CarpHunter 10-02-2007 10:45 PM

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.

Ski-Whiz 10-07-2007 03:02 AM

Quote:

Originally Posted by bikers (Post 1319124)
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??

labmixz 10-07-2007 04:49 PM

Quote:

Originally Posted by Ranger187 (Post 1331179)
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...

rotor 10-10-2007 06:24 PM

Quote:

Originally Posted by CarpHunter (Post 1351742)
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

wrang 10-10-2007 07:28 PM

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

rotor 10-11-2007 11:23 PM

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

wrang 10-12-2007 03:56 PM

Is it possible to have diffrent flags for diffrent usergroups?

Tettinntil 10-14-2007 11:01 PM

Is there any way I can choose to hide users zip codes and location for the other users? So that you could see approximately where a member lives with the flag on the map, but not show theire zip code and cityname.

U.K.Visuals 11-02-2007 10:57 PM

if someone gets this message:
Quote:

Warning: file_get_contents(vbmembermap/data/.data) [function.file-get-contents]: failed to open stream: No such file or directory in /vbmembermap.php on line 594
be sure that you have selected a default map

nedo_a 11-03-2007 10:29 AM

map for bosnia and herzegovinia, serbia etc...????? or for balkans

Biby 11-08-2007 09:03 PM

The map of Italy Must be fixed cause Sardegna is missing...also Corsica is present but is a French's Island!

TotlKaos 11-11-2007 11:59 AM

I have included Map images for the entire world.
If someone could give me a hint on WERE there
is a document on how to add the x y coords to
set these up. I'm sharing in hopes that everyone
can get these working.

It's a total of 9 Maps..

Take a look and hopefully we can figure something out.

RUss

Vossi 11-11-2007 12:41 PM

Each .map-file is configured as the following:

Line: Descr
1-4: coord-range for each card (1: east, 2: west, 3: north, 4: south)
5: Name of the map
6-7: country-ID of the map
8-9: size of the map-graphic
10-11: Distance on map in pixel at each border
12: Name of the map-files
13: Amount of countries on that map
14-15: Name of the country/countries on map and its country-ID (continues if more countries on map)

You can get the range for each card while looking into your geodatas (longitute, lattitute).

Genereal:
Sorry for less support, but we habe been working on vB-Ticker (people can use Tickers in their profile just like tickercentral, babygaga and so on) which we released in german just recently, also we're working on another project for vB.

wrang 11-11-2007 12:59 PM

:erm:Is it possible to change the map after i have uploaded it and the member has put there?s town at the map.
The swedish map isnt god and some town is in the wrong place at the map

Vossi 11-11-2007 01:18 PM

Quote:

Originally Posted by wrang (Post 1380315)
:erm:Is it possible to change the map after i have uploaded it and the member has put there?s town at the map.

Jep, the entries won't be lost. But you need to generate the maps in AdminCP after you changed the graphic of the map.
Quote:

Originally Posted by wrang (Post 1380315)
The swedish map isnt god

'coz it's not god :D
Quote:

Originally Posted by wrang (Post 1380315)
and some town is in the wrong place at the map

You might try to slightly change the range-coords of the map in the .map-file, for that have a look at my last post in this thread.

TotlKaos 11-11-2007 06:46 PM

Thanks for the Info Vossi...
USA is going to be a pain.. since Alaska and Hawaii are on that map too.. and not in the right places... bleh..

Thanks!

Russ

Vossi 11-11-2007 07:22 PM

There already is a map of the USA... not of North America thou....

max8028 11-17-2007 04:09 AM

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

Where exactly do I install the xml file. on the server?

yeku 11-17-2007 10:15 AM

Canary Island in vbmm map es.zip????
:(:(

max8028 11-26-2007 09:33 PM

finally have it installed. I keep getting this message.

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

Please inform the administrator!

What do I need to do next?

SVTCobraLTD 11-26-2007 11:57 PM

Quote:

Originally Posted by max8028 (Post 1384169)
Install the product-file 'vbmembermap-product.xml' in your AdminCP


Where exactly do I install the xml file. on the server?

AdminCP and Plugins/Products and then Manage Products... upload that XML file. Is that what you are looking for?

SVT

max8028 11-27-2007 03:07 AM

Quote:

Originally Posted by SVTCobraLTD (Post 1389979)
AdminCP and Plugins/Products and then Manage Products... upload that XML file. Is that what you are looking for?

SVT


I finally got it uploaded but it will not save my location when I push save entry. and it give me this error

The file properties for read/write are not correct.

Please inform the administrator!

I am using a windows based system.

www.soldiercircle.com

max8028 11-27-2007 04:05 AM

Quote:

Originally Posted by G?rome (Post 1319463)
A small bug-report:

Your check for write-permission for $datafile and $mapoutput does not work on a windows-based server:

PHP Code:

[...]
  if ((
substr (sprintf ('%o'fileperms ($datafile)), 35) != 777) || (substr (sprintf ('%o'fileperms ($mapoutput)), 35) != 777))
  {
   eval (
standard_error ($vbphrase['vbmembermap_write']));
  }
[...] 

I had to comment out these lines to get it to work. Actually that's no surprise having the different file-systems in mind. On monday I can report the output of "fileperms()" from my system.




Kind regards,
G?rome


I think this will help me but I but not understand what it means. Can someone translate?

Konstantinos 11-27-2007 09:47 AM

we need map of greece

Catziggy 11-29-2007 12:29 PM

Ive installed it for 3.6.8. The admin acp menu shows up but only the top button shows ioptions. The rest of the buttons i.e. geodata maps etc show white pages.

Any ideas?

FiX 12-06-2007 07:09 AM

Map of Great Britain would be cool!

SVTCobraLTD 12-09-2007 12:23 PM

Quote:

Originally Posted by max8028 (Post 1390055)
I finally got it uploaded but it will not save my location when I push save entry. and it give me this error

The file properties for read/write are not correct.

Please inform the administrator!

I am using a windows based system.

www.soldiercircle.com

Did you do this?
Quote:

- 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


All times are GMT. The time now is 08:12 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01632 seconds
  • Memory Usage 1,849KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (1)bbcode_php_printable
  • (18)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete