vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=4)
-   -   Away message for users (https://vborg.vbsupport.ru/showthread.php?t=33099)

Keyser S?ze 05-19-2002 02:22 AM

having a problem, i got lesanes store installed and the newthread/new reply gets messed up when i replace that past, so what code would i use to use both?

sorry if this has been asked before, but 232 replies is alot :p


thanks

Mone' 05-30-2002 03:06 AM

Great hack bira just installed on vb 2.2.6 and is working so well :)

( thx "cityofangelus" for pointing the installer mistake )

Keyser S?ze 05-31-2002 03:37 PM

[QUOTE]Originally posted by IceMalee
having a problem, i got lesanes store installed and the newthread/new reply gets messed up when i replace that past, so what code would i use to use both?

sorry if this has been asked before, but 232 replies is alot :p


thanks

Keyser S?ze 06-01-2002 04:12 AM

cannot get this to work for some reason, i click on "edit profile" and it acts like its goig to work, i see the profile, but then it jumps to a dead screen with nothing on it

anyone up late and want to help me out?

-update- on another style, it refreshes itself like every 3 secs,

Boofo 06-01-2002 06:58 PM

How would you do this for a memberlist online status column?

[QUOTE]Originally posted by Wolf42


Ok, I got it for myself :D

Find
PHP Code:

$templatesused="postbit_online,postbit_offline,showgroups,showgroups_groups,showgroups_adminbit,postbit_sendpm,showgroups_bit,showgroups_forumbit,showgroups_forumsplit,postbit_avatar"

and replace with
PHP Code:

$templatesused="postbit_online,postbit_offline,postbit_away,showgroups,showgroups_groups,showgroups_adminbit,postbit_sendpm,showgroups_bit,showgroups_forumbit,showgroups_forumsplit,postbit_avatar"

Find
PHP Code:

if ($user['lastactivity'] > $datecut and !$user['invisible'] and $user['lastactivity'] != $user['lastvisit']) {
        eval(
"\$onlinestatus = \"".gettemplate("postbit_online")."\";");
    } else {
        eval(
"\$onlinestatus = \"".gettemplate("postbit_offline")."\";");
    } 

an replace with
PHP Code:

if ($user[away]=="1") {
        eval(
"\$onlinestatus = \"".gettemplate("postbit_away")."\";");
        } else {
    if (
$user['lastactivity'] > $datecut and !$user['invisible'] and $user['lastactivity'] != $user['lastvisit']) {
        eval(
"\$onlinestatus = \"".gettemplate("postbit_online")."\";");
    } else {
        eval(
"\$onlinestatus = \"".gettemplate("postbit_offline")."\";");
    }


Find
PHP Code:

// get administrators & super moderators **********************************************************
$users $DB_site->query("
    SELECT
        
$locationfieldselect usergroup.title, user.username, user.userid, user.invisible, user.receivepm,
        user.usergroupid, user.lastactivity, user.lastvisit 

and replace with
PHP Code:

// get administrators & super moderators **********************************************************
$users $DB_site->query("
    SELECT
        
$locationfieldselect usergroup.title, user.username, user.userid, user.invisible, user.receivepm,
        user.usergroupid, user.lastactivity, user.lastvisit,user.away 

Find
PHP Code:

// get moderators **********************************************************
$users $DB_site->query("
    SELECT
        
$fieldselect forum.forumid, forum.title AS forumtitle,
        user.username, user.userid, user.invisible, user.receivepm, user.lastactivity, user.lastvisit 

and replace with
PHP Code:

// get moderators **********************************************************
$users $DB_site->query("
    SELECT
        
$fieldselect forum.forumid, forum.title AS forumtitle,
        user.username, user.userid, user.invisible, user.receivepm, user.lastactivity, user.lastvisit,user.away 

I just added user.away twice, added postbit_away in templatesused and modified the code like the funktions.php.

It is working well on my board.

Boofo 06-01-2002 07:07 PM

here's how my private autoreply looks. Can someone please help me figure out why it is doing this?

Auto Reply: RE: RE: Gender
Hi Boofo,

I have been away since Today (GCSE Exams ) and will read your message when I return on Jun 18, 2002.

[size=1 ]This is an auto-reply generated by the bearfacts2.com Forum Messaging System.[/size ]

I had to add spaces just before the ] because the code wouldn't show right in here. In the message, there is no spaces before the last bracket. And also, if I try to take the space out between the awaymessage and the ) I get a parse error when I send a message. What have I got set wrong on my site that won't let the size function work in the message? The color function works fine.

Boofo 06-01-2002 07:18 PM

Can someone please help me add the ability to have the away status icon show in the privmsg template? Here is the code I need to edit from the private template.

Code:

unset($onlinestatus);
        if ($post['lastactivity'] > $datecut and !$post['invisible'] and $post['lastvisit'] != $post['lastactivity']) {
          eval("\$onlinestatus = \"".gettemplate("postbit_online")."\";");
        } else {
          eval("\$onlinestatus = \"".gettemplate("postbit_offline")."\";");
        }

I want it to show in private messages like it does in the postbit.

Keyser S?ze 06-01-2002 09:43 PM

this was working fine for about a hour, i didnt do a thing, then without me doing anything stopped working again

same problem

aidler 06-02-2002 09:54 PM

OK, great hack. But why isn't there a detailed explanation what has chanced so one can do it manually. I upgraded to 2.2.6 and now I can't reintegrate the modifications for this hack into my templates because I don't know the necessary modifications. Now what??

Keyser S?ze 06-03-2002 12:08 AM

u know i wanted the same thing, because i dont really like these auto installers for the simple reason of if there is a problem, it makes it hard to hunt down, so i made this, its just a txt copy of the installer

now let me be clear, all i did was copy/paste in the right spots, i didnt make this in any way, all credit goes to bira


All times are GMT. The time now is 02:54 PM.

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.01572 seconds
  • Memory Usage 1,760KB
  • 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
  • (1)bbcode_code_printable
  • (8)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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