The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vBStatus - Facebook Style Status Updates (v5) (vB 3.x) Details »» | |||||||||||||||||||||||||||||||||
vBStatus - Facebook Style Status Updates (v5) (vB 3.x)
Developer Last Online: Nov 2023
Compatible with 3.x vBStatus allows your users to update their status to tell other members what they are doing/thinking at any given time. A user's status is displayed under their names in their postbit, in their User Profile, and anywhere else you choose!User's can edit their status quickly and easily via AJAX. Features and Configuration options include:
Special Update Instructions for users of vBStatus v4 This version of vBStatus was mostly written from scratch. Please note that there are two features that are missing from v5 that were present in v4: the ability of members of certain usergroups to modify the status updates of other users, and the ability for users to edit their status in a popup window. If you need those features, don't upgrade yet. The upgrade process that I suggest is:
Version 5.1
Version 5.2
Version 5.3
Note: The files available in this thread will always be for the most recent version of the modification. If you previously used vBStatus in vB 3.x your member's old status messages will be preserved. Please do not forget to click INSTALL Download Now
Screenshots
Show Your Support
|
Comments |
#92
|
|||
|
|||
What do you mean?
|
#93
|
||||
|
||||
Just to let you know, version number didn't update from 5.2 to 5.3.
|
#94
|
|||
|
|||
Uninstalled again: Does not work on vB 3.8.7 ! When click on EDIT, Nothing happends, think JAVASCRIPT problems,,,, It would be great if there was a fix... Thanks for such an amazing Idea, but because I know this has been working for some, at least the developer should at least answer all the questions on here.. This is the line, which I think have some problems: PHP Code:
Hope it will get fixed, and hopefully soon.. |
#95
|
||||
|
||||
Quote:
|
#96
|
|||
|
|||
Works for me too.
Have you recently made any changes on your board? Upgrade, new plugins, etc? |
#97
|
||||
|
||||
and how to edit some impolite user's status by admin account ?
|
#98
|
|||
|
|||
Serious problems with this plugin if admins and mods cannot enforce rules and delete spam by editing status messages. We temporarily mitigated this by limiting changes to members with > 10 posts.
Hey Attilitus! Can you please tell us how to get the moderation code working? Did you ever get it working? We looked and it was not obvious how to fix this and make it so we can moderate it properly. Please. Thank you. www.unix.com PS: Also, where do we change the width of the edit / input box for when we update a status message? Thanks! |
#99
|
|||
|
|||
i am sorry for bumping this old thread but.., i still didn't mange to give admins the ability to edit other users status..
if anyone did mange to do that.., Please share it with us! ----------------Edit---------------- i manged to replace the : Code:
<if condition="$userinfo['userid']==$vbulletin->userinfo['userid']"> Code:
<if condition="($post['userid']==$vbulletin->userinfo['userid']) OR ($bbuserinfo[usergroupid]==6)"> Example (As an admin) .. : if i changed my status to : "Is good." and saved it.. every thing is fine. but when i want to change someone's else status.. Like from "has no status." to "Is fine." (or anything else..) That user's(which i changed his status) Only appears(his status) as i changed it to. (The "Is fine." status) until i reload the page.. then his status changes to "has no status." and my status changes to "Is fine." (As if i edited my own status!) So.., is there anyfix for this? i think that it is aproblem in the "vbstatus_class.php" file.. : Code:
<?php require_once('JSON.php'); if(!function_exists ( 'iconv' )){ function iconv($string){ return $string; } } class att_object{ function att_object(){ } } class vbstatus_class{ function vbstatus_class() { global $att; global $data; $this->att = $att; $this->data = $data; $this->JSON = new JSON; } function process_status($status,$change_encoding=True) { global $vbulletin; if($change_encoding){ $status = iconv('utf-8',$vbulletin->options['vbstatus_charset'],$status); } $charcount=strlen ($status); if($vbulletin->options['vbstatus_maxchars']) { if($charcount>$vbulletin->options['vbstatus_maxchars']) { return '[Too Long]'; } } if($vbulletin->options['vbstatus_wordwrap']) { $status=wordwrap($status, $vbulletin->options['vbstatus_wordwrap'], "\n", true); } return $status; } function change_status($userid,$status) { $this->att->required($userid); $return = new att_object(); $return->updated_status = $this->process_status($status,False); $status = $this->process_status($status); //$this->att->required($status); $this->data->set('user'); $this->data->select('*'); $this->data->where('userid',$userid); $userinfo = $this->data->execute('select1'); $this->att->required($userinfo); $this->data->set('userfield'); $this->data->update('vbstatus_status',$status); $this->data->where('userid',$userinfo['userid']); $this->data->execute('update'); return $this->JSON->serialize($return); } } ?> Thanks in advanced. |
#100
|
|||
|
|||
tried this mod, but didn't work on vb3.8
however, I made other version work on vb.3.8 this version: https://vborg.vbsupport.ru/showthread.php?t=181283 |
#101
|
|||
|
|||
Hmmm.
FYI: vBStatus recently stopped working in our forums. By "stop working" I mean that users (or admins) cannot edit status messages. Has anyone else experienced this problem? www.unix.com |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|