Welcome, Guest. Please Login or Register.
November 26, 2024, 12:44:15 AM
Home Help Search Log in Register
News: If you are still using YaBB SE, please consider upgrading to SMF as soon as possible.

YaBB SE Community  |  Development  |  Completed mods  |  [Done 1.5.x] Member Map « previous next »
Pages: 1 ... 3 4 [5] 6 7 ... 15 Reply Ignore Print
Author Topic: [Done 1.5.x] Member Map  (Read 64316 times)
Wiziwig
Sr. Member
****
Posts: 407


Programmer and Users Liason and Manager

WWW
Re:[Beta 1.5.1] Member Map
« Reply #60 on: February 05, 2003, 09:24:20 PM »
Reply with quote

Yes, it would be. I suppose by doing it that way, a viewer could have the choice of viewing all the states together or each individual ones.
Logged

Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:[Beta 1.5.1] Member Map
« Reply #61 on: February 16, 2003, 07:09:58 AM »
Reply with quote

A new version is out with more additions made in a number of areas. You can also edit the settings through the admin panel. There shouldn't be any major issues now, at least I haven't found any while using this on my boards.

Once I get a chance I will make a few instructions on changing it to work with Advanced Memberlist mod.
Logged
Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:[Beta 1.5.1] Member Map
« Reply #62 on: February 17, 2003, 06:57:45 AM »
Reply with quote

Ok RC4 is out. The only fix was adding database_error lines.

I also added instructions for those of you who don't want to use the location field. Basically it creates another field called mm_location for storing the data.

Let me know how it works out, good or bad. :)
Logged
Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:[Beta 1.5.1] Member Map
« Reply #63 on: February 18, 2003, 04:17:45 AM »
Reply with quote

Ok new version out that should fix the error people were having with pins not showing up. Let me know if you get it to work. If you have RC4 installed all you need to do is upload the new MemberMap.php file.
Logged
GWP
Sr. Member
****
Posts: 252


A total PHP MySQL Novice :) - but getting better!

Re:[Beta 1.5.1] Member Map
« Reply #64 on: February 23, 2003, 12:48:49 PM »
Reply with quote

I had the slightly older version up and running, just a problem with the flag showing on the posts.
I have downloaded the newer version, uninstalled the older version.
Found a couple of errors, one is for Index.php:
Quote'yabbinfo' => array("$sourcedir/Admin.php", 'showYaBBInfo'));
Found that chnaging it to:
Quote'yabbinfo' => array("$sourcedir/Admin.php", 'showYaBBInfo'),
(in other words removing the 2nd ")" )
this solved that prob.
The next was in Modsettings.php
Quote<search for>
      'advim_orderby');
</search for>

<replace>
      'advim_orderby',
      'mm_imgpath',
      'mm_defaultmap',
      'mm_regions');
</replace>
The underlined bit had to be changed as I had another mod that updated modsettings and the last link of that section had been changed.

All went in OK.
Uploaded, refreshed and got:
QuoteParse error: parse error, unexpected T_DOUBLE_ARROW in /home/.sites/web/forum/index.php on line 299

Php line 299 reads:
Quote'imview' => array("$sourcedir/InstantMessage.php", 'IMView'),
Any clues please?
Logged

YabbSE 1.5.1rc Mods:AdvIm, Member Map, Password Prompt, Report to mod, Smilies SE 2.0, Bio, collapsable_yabb, Ignore user, Name, allowed user, search member, enchanced ban, posts per day, Mute User, Memberlist Plus,Who,ExactPostLink. Remove_Clicklog,mc_BoldOwnThreads.QuickReply, UserEnableDisableCensor, RefererMod, lastlogin_profile,PostBasedImRestrict, ExactPostLink, UserBrowsing,
GWP
Sr. Member
****
Posts: 252


A total PHP MySQL Novice :) - but getting better!

Re:[Beta 1.5.1] Member Map
« Reply #65 on: February 23, 2003, 06:09:54 PM »
Reply with quote

Found the problem..

Index.php had two sets of ';''s
at lines 298 and 303.

I just changed one (298) to ','
Reloaded and....

;D ;D ;D
Its all working fine now, even the flags next to the posts. Perfect.!
Logged

YabbSE 1.5.1rc Mods:AdvIm, Member Map, Password Prompt, Report to mod, Smilies SE 2.0, Bio, collapsable_yabb, Ignore user, Name, allowed user, search member, enchanced ban, posts per day, Mute User, Memberlist Plus,Who,ExactPostLink. Remove_Clicklog,mc_BoldOwnThreads.QuickReply, UserEnableDisableCensor, RefererMod, lastlogin_profile,PostBasedImRestrict, ExactPostLink, UserBrowsing,
Fizzy
Full Member
***
Posts: 214


Re:[Beta 1.5.1] Member Map
« Reply #66 on: February 23, 2003, 10:59:07 PM »
Reply with quote

Hi Gobal

Thought you should know that your Mod conflicts with your own AdvIM.

They both make use of double brackets ending certain lines of code and then change them.

example

in AdvIM
Quote
<search for>
      'yabbinfo' => array("$sourcedir/Admin.php", 'showYaBBInfo'));
</search for>

<replace>
      'yabbinfo' => array("$sourcedir/Admin.php", 'showYaBBInfo'),
      'imview' => array("$sourcedir/InstantMessage.php", 'IMView'),
      'imbackupbox' => array("$sourcedir/InstantMessage.php", 'IMBackupBox'),
      'imbackup' => array("$sourcedir/InstantMessage.php", 'IMBackup'));
</replace>

and in MemberMap you try to use 'IMBackup')); yet again

Quote
<search for>
      'imbackup' => array("$sourcedir/InstantMessage.php", 'IMBackup'));
</search for>

<replace>
      'mmedit' => array("$sourcedir/MemberMap.php", 'MemberMapEdit'),
      'mmedit2' => array("$sourcedir/MemberMap.php", 'MemberMapEdit2'),
      'mmview' => array("$sourcedir/MemberMap.php", 'MemberMapView'),
      'imbackup' => array("$sourcedir/InstantMessage.php", 'IMBackup'));
</replace>

As it had already been changed by your previous AdvIM it was unable to locate it.

I just thought you should know.
Logged
Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:[Beta 1.5.1] Member Map
« Reply #67 on: February 23, 2003, 11:54:03 PM »
Reply with quote

Yep I am going to fix that in the next version of the mod.
Logged
GWP
Sr. Member
****
Posts: 252


A total PHP MySQL Novice :) - but getting better!

Re:[Beta 1.5.1] Member Map
« Reply #68 on: February 24, 2003, 12:06:38 AM »
Reply with quote

The double brackets didn't seem to affect my installs.
In fact I think they are still there?

But the major change is mentioned in my post above.
Still, not changing it now, as it works fine :)
Logged

YabbSE 1.5.1rc Mods:AdvIm, Member Map, Password Prompt, Report to mod, Smilies SE 2.0, Bio, collapsable_yabb, Ignore user, Name, allowed user, search member, enchanced ban, posts per day, Mute User, Memberlist Plus,Who,ExactPostLink. Remove_Clicklog,mc_BoldOwnThreads.QuickReply, UserEnableDisableCensor, RefererMod, lastlogin_profile,PostBasedImRestrict, ExactPostLink, UserBrowsing,
Happy Axeman
Noobie
*
Posts: 8


I am a PHP Newbie!

WWW
Re:[Beta 1.5.1] Member Map
« Reply #69 on: February 24, 2003, 03:41:15 AM »
Reply with quote

I installed this Mod, And it ran Perfectly.
Thank You Very Much for a fantastic mod.  ;D
the Only Thing missing is a UK Map, But since its so easy to add more, My forum now has maps for many regions from the UK!
If anyone is interested in them i would be glad to offer them to anyone  ;D
I just need to work on a Pin more Visible  ;)
Logged
marcnyc
Full Member
***
Posts: 137


I'm a llama!

Re:[Beta 1.5.1] Member Map
« Reply #70 on: March 08, 2003, 06:45:59 AM »
Reply with quote

I was suggested to follow the link at the beginning of this post to find the location for downlaod of the cool member map but I can't seem to find one for yabb se, they all seem for yabb sp1... is there a version of yabbse?
Logged
Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:[Beta 1.5.1] Member Map
« Reply #71 on: March 08, 2003, 08:38:26 PM »
Reply with quote

The very first post has a link to download it. One link is to the YaBB SP1 version the second is YaBB SE.
Logged
babylonking
Full Member
***
Posts: 174


Proudly Canadian

WWW
Re:[Beta 1.5.1] Member Map
« Reply #72 on: March 08, 2003, 10:29:14 PM »
Reply with quote

Gobalopper: I insert it the code below in MemberMap.php to stop guests from viewing the map section but when i  click as guest on map button i only see this message  
(An Error Has Occurred!) and the error message box is not showing the reason of the error.........for example (Sorry, you must register before using this feature.) ???

if ($username == "Guest")
  fatal_error($txt[223]);


Thanks for this great mod. :)
Logged

Proudly Canadian          
babylonking
Full Member
***
Posts: 174


Proudly Canadian

WWW
Re:[Beta 1.5.1] Member Map
« Reply #73 on: March 09, 2003, 03:00:46 PM »
Reply with quote

damn another problem ???

after i finish adding the location mod to use a seperate field for storing the member map location information, now is not saving my location when i click save pin and also i don't see nothing in Location field  ???

I guess the save pin is not entering the location text in location field..... such as (1|Canada|385|298|Canada|Toronto|ON,Ontario) :-\
Logged

Proudly Canadian          
Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:[Beta 1.5.1] Member Map
« Reply #74 on: March 13, 2003, 07:21:21 AM »
Reply with quote

I'm not sure why you would not get the text showing up there, it looks ok to me.

As for the other error my guess is you must not have made all the required changes in the .mod file.



Also a new version is out. It doesn't change much just doesn't show the map when viewing a users profile and there is no pin set. And when placing the pin on the map it uses a crosshair cursor.
This will probably be the final release depending on what happens code wise with the future RC builds of 1.5.1.
Logged
Pages: 1 ... 3 4 [5] 6 7 ... 15 Reply Ignore Print 
YaBB SE Community  |  Development  |  Completed mods  |  [Done 1.5.x] Member Map « previous - next »
 


Powered by MySQL Powered by PHP YaBB SE Community | Powered by YaBB SE
© 2001-2003, YaBB SE Dev Team. All Rights Reserved.
SMF 2.1.4 © 2023, Simple Machines
Valid XHTML 1.0! Valid CSS

Page created in 0.092 seconds with 20 queries.