Welcome, Guest. Please Login or Register.
April 26, 2024, 03:17:58 AM
Home Help Search Log in Register
News: SMF is the next generation in forum software, almost completely re-written from the ground up, make sure you don't fall for cheap imitations that suffer from feature bloat!

YaBB SE Community  |  Development  |  Completed mods  |  [Done 1.4.0] All in One MemberList 1.0 « previous next »
Pages: 1 ... 3 4 [5] Reply Ignore Print
Author Topic: [Done 1.4.0] All in One MemberList 1.0  (Read 40645 times)
goosemoose
Sr. Member
****
Posts: 256


I'm a llama!

Re:[Done 1.4.0] All in One MemberList 1.0
« Reply #60 on: January 14, 2003, 07:36:42 AM »
Reply with quote

I have it at work, I'll re-upload it tommorrow.
Logged

MobileYaBB v.3 [75% done]
All in One MemberList 1.0
Integrated Chat v 2.0
N-Ur-Hand
Noobie
*
Posts: 38


I'm a llama!

Re:[Done 1.4.0] All in One MemberList 1.0
« Reply #61 on: January 24, 2003, 07:17:39 AM »
Reply with quote

Ok i have it installed in 1.5.1 RC1 and when sorting by position they are still mixed up some..

should be:

admin
gypsy admin
gypsy member
general member

It is still mixed up...

any ideas..?..

Logged
IceQueen
Noobie
*
Posts: 1


I'm a llama!

Re:[Done 1.4.0] All in One MemberList 1.0
« Reply #62 on: January 29, 2003, 11:17:45 PM »
Reply with quote

The link is dead for me also...

I put in the addition in the index.php...... nothing, same thing... can't get back to the list of all members.

I am script-language handicapped, so spell it out how I have to fix it.  I can find, add, replace in the files, just don't have any idea what all the symbols mean.

Also, is there a script for the Admin panel member view/edit list.  I thought I saw one a couple of weeks ago, but I can't find it now.
« Last Edit: January 29, 2003, 11:18:35 PM by IceQueen » Logged
goosemoose
Sr. Member
****
Posts: 256


I'm a llama!

Re:[Done 1.4.0] All in One MemberList 1.0
« Reply #63 on: January 31, 2003, 08:05:21 AM »
Reply with quote

Guys,
 I am finishing up the new Integrated Chat mod for 1.5.1 tommorrow. Once I'm finished with that I will update this mod as well.
Logged

MobileYaBB v.3 [75% done]
All in One MemberList 1.0
Integrated Chat v 2.0
goosemoose
Sr. Member
****
Posts: 256


I'm a llama!

Re:[Done 1.4.0] All in One MemberList 1.0
« Reply #64 on: February 18, 2003, 04:37:10 AM »
Reply with quote

Since I have finally finished the new updated chat mod I am ready to update this mod to 1.5.1. That is of course unless someone has already updated it and has it running on 1.5.1. If you have , let me know before I get to work on it tommorrow!
Logged

MobileYaBB v.3 [75% done]
All in One MemberList 1.0
Integrated Chat v 2.0
Spaceman-Spiff
Mod Team
YaBB God
*****
Posts: 3689


My $txt[228]

Re:[Done 1.4.0] All in One MemberList 1.0
« Reply #65 on: February 18, 2003, 07:29:37 AM »
Reply with quote

doesnt it run already in 1.5.1?
i have it running, the only thing i changed was the index.php:

      'mlallbygroup' => array("$sourcedir/Memberlist.php", 'MLAll', TRUE),

and changed:

   if (isset($actionArray[$action]))
   {
      $includeFile = $actionArray[$action][0];
      $executeFunction = $actionArray[$action][1];
      unset($actionArray);

      include_once $includeFile;
      if ($executeFunction != "")
         $executeFunction();
   }


into:

   if (isset($actionArray[$action]))
   {
      $includeFile = $actionArray[$action][0];
      $executeFunction = $actionArray[$action][1];
      $attribute = $actionArray[$action][2];
      unset($actionArray);

      include_once $includeFile;
      if ($executeFunction != "")
         $executeFunction($attribute);
   }


btw, i was using allinoneML11a, dunno the difference with v1
Logged

   My mods, ysePak, codes, tutorials
    Support question IMs = bad.
goosemoose
Sr. Member
****
Posts: 256


I'm a llama!

Re:[Done 1.4.0] All in One MemberList 1.0
« Reply #66 on: February 18, 2003, 08:06:16 AM »
Reply with quote

I was hoping that it would :) I haven't changed anything in it since 1.4.0. I'll fix that and redo the link tommorrow.

Logged

MobileYaBB v.3 [75% done]
All in One MemberList 1.0
Integrated Chat v 2.0
[Unknown]
Global Moderator
YaBB God
*****
Posts: 7830


ICQ - 179721867unknownbrackets@hotmail.com WWW
Re:[Done 1.4.0] All in One MemberList 1.0
« Reply #67 on: February 18, 2003, 08:15:37 AM »
Reply with quote

This:

'mlallbygroup' => array("$sourcedir/Memberlist.php", 'MLAll', TRUE),

Won't quite work in 1.5.x.....

-[Unknown]
Logged
Spaceman-Spiff
Mod Team
YaBB God
*****
Posts: 3689


My $txt[228]

Re:[Done 1.4.0] All in One MemberList 1.0
« Reply #68 on: February 18, 2003, 09:52:10 AM »
Reply with quote

Quote from: [Unknown] on February 18, 2003, 08:15:37 AM
This:

'mlallbygroup' => array("$sourcedir/Memberlist.php", 'MLAll', TRUE),

Won't quite work in 1.5.x.....

-[Unknown]

it works because i changed the index.php function calling into this:

  if (isset($actionArray[$action]))
  {
     $includeFile = $actionArray[$action][0];
     $executeFunction = $actionArray[$action][1];
     $attribute = $actionArray[$action][2];
     unset($actionArray);

     include_once $includeFile;
     if ($executeFunction != "")
        $executeFunction($attribute);
  }
Logged

   My mods, ysePak, codes, tutorials
    Support question IMs = bad.
1979Z28
Sr. Member
****
Posts: 324


WWW
Re:[Done 1.4.0] All in One MemberList 1.0
« Reply #69 on: February 18, 2003, 11:47:38 AM »
Reply with quote

So, uh, where is this file located at? :P Forgive me if I skipped over it being said already, if it has, but I've been up for about 30 hours and, am not quite up to my full thinking capacity.. ;)

Board = 1.5.1BC1, build 42
Logged
PostDeals
Full Member
***
Posts: 112


Checkout postdeals.net for the latest deals.

WWW
Re:[Done 1.4.0] All in One MemberList 1.0
« Reply #70 on: February 08, 2004, 05:31:01 AM »
Reply with quote

which works for version 1.5.5
Logged

For HotDeals, Coupons, Games Visit: www.postdeals.net

goosemoose
Sr. Member
****
Posts: 256


I'm a llama!

Re:[Done 1.4.0] All in One MemberList 1.0
« Reply #71 on: February 08, 2004, 08:03:32 AM »
Reply with quote

not sure, im still running 1.5.1. If you get it to work let me know.
Logged

MobileYaBB v.3 [75% done]
All in One MemberList 1.0
Integrated Chat v 2.0
Pages: 1 ... 3 4 [5] Reply Ignore Print 
YaBB SE Community  |  Development  |  Completed mods  |  [Done 1.4.0] All in One MemberList 1.0 « 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.045 seconds with 20 queries.