Welcome, Guest. Please Login or Register.
April 27, 2025, 06:30:41 PM
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.3.1] MemberAction Mod (UserDoingWhat) v0.2a « previous next »
Pages: 1 ... 6 7 [8] 9 10 Reply Ignore Print
Author Topic: [Done 1.3.1] MemberAction Mod (UserDoingWhat) v0.2a  (Read 12651 times)
Mach8
Sweetie
Beta Tester
YaBB God
*****
Posts: 1218


ICQ - 339855961
Re:[Done] MemberAction Mod (UserDoingWhat) v0.2a
« Reply #105 on: July 07, 2002, 09:06:44 AM »
Reply with quote

No, it will only refresh in the member action page.
Logged
phark
Sr. Member
****
Posts: 482


Re:[Done] MemberAction Mod (UserDoingWhat) v0.2a
« Reply #106 on: July 07, 2002, 11:06:50 AM »
Reply with quote

Quote from: Mach8 on July 06, 2002, 06:45:58 PM<?
global $action;
if ($action == "maction") {
print "<meta http-equiv=\"refresh\" content=\"<delay in seconds>;url=<forum url>?action=maction\">";
}
?>
Do the parts like "Refresh" and "Furum url" need to be changed before putting this in?   ???
« Last Edit: July 07, 2002, 11:07:30 AM by phark » Logged

I'm not scared of dying, I just don't want to.
Mach8
Sweetie
Beta Tester
YaBB God
*****
Posts: 1218


ICQ - 339855961
Re:[Done] MemberAction Mod (UserDoingWhat) v0.2a
« Reply #107 on: July 07, 2002, 12:55:11 PM »
Reply with quote

Yeah. If your forum location is for example:

http://www.website.com/forum/index.php

And you wanted to refresh the page every 15 seconds, then you would have this line in place of the line I have posted:

print "<meta http-equiv=\"refresh\" content=\"15;url=http://www.website.com/forum/index.php?action=maction\">";
Hope that helps.
Logged
phark
Sr. Member
****
Posts: 482


Re:[Done] MemberAction Mod (UserDoingWhat) v0.2a
« Reply #108 on: July 07, 2002, 03:26:24 PM »
Reply with quote

Cool... just put that line in there and it works great!  Thanks!   :D
Logged

I'm not scared of dying, I just don't want to.
Mach8
Sweetie
Beta Tester
YaBB God
*****
Posts: 1218


ICQ - 339855961
Re:[Done] MemberAction Mod (UserDoingWhat) v0.2a
« Reply #109 on: July 07, 2002, 07:11:04 PM »
Reply with quote

No problem.
Logged
phark
Sr. Member
****
Posts: 482


Re:[Done] MemberAction Mod (UserDoingWhat) v0.2a
« Reply #110 on: July 08, 2002, 01:16:42 AM »
Reply with quote

Now if we could just see the IP address on the Users Doing What screen...  (for Admins only, of course)  ;)
« Last Edit: July 08, 2002, 02:03:09 AM by phark » Logged

I'm not scared of dying, I just don't want to.
Jonno
Noobie
*
Posts: 5


I'm a llama!

Re:[Done] MemberAction Mod (UserDoingWhat) v0.2a
« Reply #111 on: July 21, 2002, 10:55:22 AM »
Reply with quote

please excuse my idiocity, but what do you open a .Z file with?
Logged
Nossie
Full Member
***
Posts: 192


If it aint broke, you haven't played with it enuff

ICQ - 18967293IanHarvie@Hotmail.com WWW
Re:[Done] MemberAction Mod (UserDoingWhat) v0.2a
« Reply #112 on: July 21, 2002, 01:30:47 PM »
Reply with quote

hehe rename it to .zip ;)

various reasons why people do this...

dunno why he did tho hehe
Logged

Nossie
Full Member
***
Posts: 192


If it aint broke, you haven't played with it enuff

ICQ - 18967293IanHarvie@Hotmail.com WWW
Re:[Done] MemberAction Mod (UserDoingWhat) v0.2a
« Reply #113 on: July 21, 2002, 02:21:57 PM »
Reply with quote

urm.... I've been trying to do this so that there is a link in the mods and settings seciton... like the ipscan mod...

but no matter how hard I try it always sends me back to the board index when I click the link? any ideas?

index.php (bottom lines)
#END FASTFIND IF STATEMENT
   if ($action == 'icons') { include_once "$sourcedir/Icons.php"; Icons(); }
   else if ($action == 'iconsadd') { include_once "$sourcedir/Icons.php"; IconsAdd(); }
   else if ($action == 'iconsmod') { include_once "$sourcedir/Icons.php"; IconsMod(); }
   else if ($action == 'userdo') { include_once "$sourcedir/MemberAction.php"; userdo(); }
# No board? Show Board Index

modsettings.php (bottom lines again )

function ModifyModSettings() {
   global $txt,$img,$yytitle,$cgi,$imagesdir,$color,$mtxt,$modSettings,$db_prefix;
   global $asmtxt;
   global $ipstxt;
    global $userdo;

 </tr><tr>
    <td class="windowbg2" bgcolor="$color[windowbg2]" colspan=2><HR size="1" width="100%" class="windowbg3"></td>
  </tr><tr>
    <td class="windowbg2" bgcolor="$color[windowbg2]" colspan=2><a href="$scripturl?action=ipscan">$ipstxt[12]</a></td>
  </tr><tr>
    <td class="windowbg2" bgcolor="$color[windowbg2]" colspan=2><a href="$scripturl?action=MemberAction">$userdo[13]</a></td>
  </tr><tr>

and last but not least...  english.lng (bottom line)
$ipstxt[11] = "First post";
$ipstxt[12] = "IpScan";
$userdo[13] = "User Doing What?";


sorry I followed the idea of the ipscan call and thought it would be better if I put it along side it till I got it working...

never did anything like this before so I dont really care what you think of my positioning as long as it works *lol*

could someone tell me if I'm on the right track here?

or if I've made a donkey cart out of a carriage ;)

thanks !

(\)

« Last Edit: July 21, 2002, 02:31:58 PM by Nossie » Logged

keysers0ze
Jr. Member
**
Posts: 65


I'm the Dali Llama!

ICQ - 159547275 WWW
Re:[Done] MemberAction Mod (UserDoingWhat) v0.2a
« Reply #114 on: July 23, 2002, 04:38:22 PM »
Reply with quote

I've only just got BoardManager, so now I'm going a bit 'Modding Crazy'. This mod is excellent... ;D
Logged

keysers0ze
Jr. Member
**
Posts: 65


I'm the Dali Llama!

ICQ - 159547275 WWW
Re:[Done] MemberAction Mod (UserDoingWhat) v0.2a
« Reply #115 on: July 24, 2002, 02:13:25 PM »
Reply with quote

Just one thing... You know in the 'users doing what' section, it displays the page each user is on as a link? Well, when I tried clicking on one of those, it just put me back to the 'member actions' page, even though the member was actually on the main index page...?

Any idea why?
Logged

Han
Noobie
*
Posts: 2


Re:[Done] MemberAction Mod (UserDoingWhat) v0.2a
« Reply #116 on: August 13, 2002, 01:30:11 AM »
Reply with quote

Hi vorapoap

Your mod works fine for us, but we have a small problem.
On our bourd we have a section, where only mod's and admins can post and read.

When mod's or admin's are in that restricted section the "memberAction mod" shows the forum and topictitle of that restricted section.  :-\
Is there a workaround for this problem, so that we can use the mod. It's a great mod and it would be a shame if we can't use it because of this problem.
« Last Edit: August 13, 2002, 01:39:09 AM by Han » Logged
Gobalopper
Mod Team
YaBB God
*****
Posts: 993


Cookie Monster

WWW
Re:[Done] MemberAction Mod (UserDoingWhat) v0.2a
« Reply #117 on: August 13, 2002, 02:05:43 AM »
Reply with quote

http://www.yabb.info/community/index.php?board=158;action=display;threadid=11216

You could try this mod. :)
Logged
vorapoap (vory)
Sr. Member
****
Posts: 424


Not considered either a living or death

WWW
Re:[Done] MemberAction Mod (UserDoingWhat) v0.2a
« Reply #118 on: August 17, 2002, 03:40:44 PM »
Reply with quote

Quote from: Nossie on July 21, 2002, 01:30:47 PMhehe rename it to .zip ;)

various reasons why people do this...

dunno why he did tho hehe

Because on the place I host my site, they don't allow people to download .zip file :p
Logged

On the route to hell...
vorapoap (vory)
Sr. Member
****
Posts: 424


Not considered either a living or death

WWW
Re:[Done] MemberAction Mod (UserDoingWhat) v0.2a
« Reply #119 on: August 17, 2002, 03:43:26 PM »
Reply with quote

Quote from: Webby on May 28, 2002, 09:28:34 AMA few posts ago, I asked the question how it could be, that some users were displayed more than once on the page.

I finally came to the conclusion (since several months ago) why this happens..  It was due to my stupidity in SQL Query.. you need to use LEFT JOIN . :)
 
If anybody wants to fix it..go on... :)
Logged

On the route to hell...
Pages: 1 ... 6 7 [8] 9 10 Reply Ignore Print 
YaBB SE Community  |  Development  |  Completed mods  |  [Done 1.3.1] MemberAction Mod (UserDoingWhat) v0.2a « 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.034 seconds with 18 queries.