vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Profile Enhancements - vBStatus - Facebook Style Status Updates (v5) (https://vborg.vbsupport.ru/showthread.php?t=243775)

Mark Hewitt 05-26-2011 01:13 PM

Works fine for me, I'd just like to be able to have a status edit box on the forum home page.

DNN 05-26-2011 11:42 PM

Does this mod also update their Facebook wall automatically ?

Mark Hewitt 05-27-2011 12:20 PM

No.

toxin 06-25-2011 10:06 AM

I've had to uninstall this.

The javascript in the headinclude template caused the new CKEditor in 4.1.4 to stop working.

S S0DEN 06-26-2011 03:19 PM

Does not allow you edit your Status with the 4.1.4 update. Worked prior to the update, but not after. Had to uninstall it.

sticky 07-04-2011 04:52 AM

Is it possible instead of just banning usergroups to ban specific users?

WDS 07-06-2011 09:51 AM

I tried it in vB 4.1.4 and not function, everything is installed correctly and others, but when editing from the postbit is impossible.

as I can make it work?

Greetings.

Alfa1 07-06-2011 11:06 PM

I think the javascript version update has caused this addon to stop functioning.

sticky 07-07-2011 03:04 AM

Any way to fix this for 4.1.4?

WDS 07-11-2011 03:52 AM

please 4.1.4

Gerdeman 07-13-2011 02:46 AM

I would love to install this modification on my forum. Would it be possible for anyone to create an update for this?

flbutterflyz 07-13-2011 06:32 PM

Adding myself to the list. Would love for this to work on 4.1.4.

8thos 07-16-2011 03:01 AM

Quote:

Originally Posted by sticky (Post 2217634)
Any way to fix this for 4.1.4?

Quote:

Originally Posted by WDS (Post 2219175)
please 4.1.4

Quote:

Originally Posted by Gerdeman (Post 2219856)
I would love to install this modification on my forum. Would it be possible for anyone to create an update for this?

Quote:

Originally Posted by flbutterflyz (Post 2220141)
Adding myself to the list. Would love for this to work on 4.1.4.

Use this and disable moods if you only want to use status. https://vborg.vbsupport.ru/showthread.php?t=243754

WDS 07-22-2011 11:44 AM

do not know how to install that program so it works like this ..
someone can tell me how I do it?

Thank you.

tvguy347 10-08-2011 07:21 PM

Your instructions are VERY confusing and unclear. I'd like this mod, and I followed your instructions as best I could. I uploaded the contents of "Upload" to the forum, and then I added the product. It is not working. I dunno what to do. >.<

Dave Hybrid 10-24-2011 10:59 AM

What would be great is if status rotated in small line box oh forum home, say under the navbar.

So status updated in last x min show or something.

howarde 11-16-2011 08:21 PM

It appears as though this mod causes the CKeditor to not allow users to switch to "Source Mode" it makes the screen grey out. Any ideas?

rajcolmo 12-04-2011 04:34 AM

Thought it was working then found it does grey out the CKeditor box. Too bad... looks great!!!

onealien 01-07-2012 04:03 AM

looks dope...
installed and working great!
thanks

Mark.B 01-22-2012 11:46 AM

I have at least found the piece of code in Mootools that causes the conflict.
However I have no idea how to remedy this.

In mootools.js there is this function:

Code:

(function(){

        var nativex = {'Array': Array, 'Date': Date, 'Function': Function, 'Number': Number, 'RegExp': RegExp, 'String': String};
        for (var n in natives) new Native({name: n, initialize: natives[n], protect: true});

        var types = {'boolean': Boolean, 'native': Native, 'object': Object};
        for (var t in types) Native.typize(types[t], t);

        var generics = {
                'Array': ["concat", "indexOf", "join", "lastIndexOf", "pop", "push", "reverse", "shift", "slice", "sort", "splice", "toString", "unshift", "valueOf"],
                'String': ["charAt", "charCodeAt", "concat", "indexOf", "lastIndexOf", "match", "replace", "search", "slice", "split", "substr", "substring", "toLowerCase", "toUpperCase", "valueOf"]
        };
        for (var g in generics){
                for (var i = generics[g].length; i--;) Native.genericize(natives[g], generics[g][i], true);
        }
})();

With that function in place, I can make the status editing work, but CKEditor is broken.

Now, you will find that if you REMOVE the second line of this function:
Code:

for (var n in natives) new Native({name: n, initialize: natives[n], protect: true});
It goes the other way round...the status editor is broken, but CKEditor works.

Sadly I haven't faintest notion how to resolve this, but if anyone has any ideas please let me know

Levi75 01-23-2012 03:45 PM

what a about á,é,í,ó,ú letters with accents

gkuhlmann 02-22-2012 08:50 AM

I had the same problem with CKeditor being broken with this mod on vB 4.1.10. I solved the problem by rewriting the mod's JavaScript to use jQuery (which we include in our forum anyway).

The functions vbstatus_formkill(), vbstatus_change_status() and vbstatus_update_status() in the file vbstatus/vbstatus_javascript.js need to be replaced with the following code:

Code:

function vbstatus_formkill(e){
        e.stopPropagation();
        e.preventDefault();
}
function vbstatus_change_status(statusID,userID,inputID,editboxID,statusboxID)
{
        jQuery('#'+inputID).val(jQuery.trim(jQuery('#'+statusID).text()));
        jQuery('#'+statusboxID).hide();
        jQuery('#'+editboxID).css('display','inline');
        jQuery('#'+inputID).keydown( function(e){
                if(e.which==13){
                        vbstatus_update_status(statusID,userID,inputID,editboxID,statusboxID);
                        e.preventDefault();
                }
        });       
        if( jQuery('#inlinemodform').length > 0 ) {
                jQuery('#inlinemodform').submit( vbstatus_formkill );
        }

}

function vbstatus_update_status(statusID,userID,inputID,editboxID,statusboxID)
{
        var update_url = 'vbstatus.php?do=update_status';
        var update_text = jQuery.trim(jQuery('#'+inputID).val());
        jQuery.post( update_url, {'status':update_text}, function( response ) {
                if ( typeof( response.updated_status ) != 'undefined' ) {
                        if ( response.updated_status ) {
                                jQuery('#'+statusID).html( response.updated_status );
                        } else {
                                jQuery('#'+statusID).html( 'hat noch keinen Status' );
                        }
                        jQuery('#'+editboxID).hide();
                        jQuery('#'+statusboxID).css('display','inline');
                }
                if ( jQuery('#inlinemodform').length > 0 ) {
                        jQuery('#inlinemodform').unbind('submit',vbstatus_formkill);
                }
                jQuery('#'+inputID).unbind('keydown');
        }, 'json' );
}

NOTES: The parts that set/remove the submit event handler on the 'inlinemod' form have not been tested yet.
The code above has been tested with jQuery 1.6.4
Accented and other special characters seem to work (tested with Firefox 10 and IE 9)
I used jQuery() rather than the shorthand notation $ because we set jQuery.noConflict() in the header. If you are sure the $ identifier is not used otherwise (e.g. no other javascript framework is included), you can of course replace the "jQuery" with "$"

pyes 03-13-2012 04:35 PM

this code odes not exist.
find: {vb:raw prepared.onlinestatus}

DoubleGlasses 04-07-2012 02:18 PM

I installed this today and I thought it was working but then when I switch pages - my status changes to just the text - utf-8

Is there something I did wrong?

GhostHunter2010 04-07-2012 02:36 PM

any live demo..

ywwz 04-08-2012 02:07 PM

working on 4.1.11?

FTG LIQUID CL 05-27-2012 12:06 AM

i added to 4.1.12,i see the status update,but when i click edit it does not do anything,any ideas why

edytwinky 05-27-2012 01:13 AM

How hard do you think it would be to make the vBStatus get posted to a specified thread. So there's on particular thread that shows all vBStatus' instead of having to look at the postbit?

PrincessFiona 05-28-2012 07:27 PM

I've wanted that for a long time!

TerryMason 06-14-2012 03:49 PM

gkuhlmann,
Thank you for posting that. It's alittle over my head, but it still allowed me to get everything working.

I updated the vbstatus/vbstatus_javascript.js file with the code that gkuhlmann provided, then changed my headerinclude template, replacing my old vbstatus information with this:

Code:

<!--BEGIN VBSTATUS-->
<vb:if condition="$show['member']">
<vb:if condition="$vbulletin->options['vbstatus_active']">
<script type="text/javascript" src="{vb:raw vboptions.bburl}/clientscript/jquery/jquery-1.6.4.min.js"></script>
<script type="text/javascript" src="{vb:raw vboptions.bburl}/vbstatus/vbstatus_javascript.js"></script>
</vb:if>
</vb:if>
<!--END VBSTATUS-->


I've removed the reference that loaded mootools, and added one that loads jquery-1.6.4.min.js, which is included in my copy of vbulletin 4.1.11. I wrapped this thing in an "if you are a member then show this" conditional, since I don't believe that guests need this 100k or so of javascript.


Let me know if I've done this wrong.

unit12stealth 07-16-2012 04:19 PM

Does this work with vb4 4.2 version?

EDIT: Also, how can I make status updates appear in a forum block on the side? Like showing a list of users with their status...

Would appreciate any assitance with this.

Thanks

unit12stealth 07-16-2012 08:54 PM

Sorry for double post. I installed this plugin on 4.2... and it pretty much disabled posting on the forum. No one could post, except for me. So.. i had to uninstall it to reenable posting.

Gemma 07-16-2012 10:14 PM

I've got this working on 4.2, if I remember correctly you've got to make a few changes as it doesn't 'working out of the box' as there is a conflict with the CKEditor - if you check back through the thread you should see some changes that are required to work with 4.2

katie hunter 09-22-2013 12:16 AM

Can a dev/coder update this modification so it works with vb 4.2.1? It is a mini mod but it is a great one.

ozzy47 09-22-2013 12:24 AM

It is not marked as reusable code, so someone could update it for you, but it would only be of use to you.

Best place to ask may be here in the paid requests section, https://vborg.vbsupport.ru/forumdisplay.php?f=30

unit12stealth 01-24-2014 02:07 AM

Anyone know where I can get the code to have a forum block of status updates?

Would greatly appreciate it!

Thanks

ahobilam 01-29-2014 12:34 PM

VB 4.2.2 - Installed, All template edits done.
But no where it is found in the forum?

ITDarasgah 02-13-2014 01:23 PM

after installing , I receive the following databse error when entring to ACP>Options
PHP Code:

Database error in vBulletin 4.2.0:

Invalid SQL:

        
SELECT setting.*, settinggroup.grouptitle
        FROM vb_settinggroup 
AS settinggroup
        LEFT JOIN vb_setting 
AS setting USING(grouptitle)
        
WHERE settinggroup.displayorder <> 0
        ORDER BY settinggroup
.displayordersetting.displayorder;

MySQL Error   Out of resources when opening file './[path]/vb_settinggroup.MYD' (Errcode24)
Error Number  23
Request Date  
ThursdayFebruary 13th 2014 11:16:55 AM
Error Date    
ThursdayFebruary 13th 2014 11:16:55 AM
Script        
http://www.itdarasgah.com/acp/options.php?null=0
Referrer      http://www.itdarasgah.com/acp/index.php?do=nav
IP Address    : ???.???.170.144
Username      
admin
Classname     
vB_Database
MySQL Version 
5.5.35-cll 

any idea?

fxdigi-cash 04-20-2014 09:36 PM

Thanks for the mod!!

it works great on vb4.2.x

you need to be careful with following this step:

https://vborg.vbsupport.ru/showpost....7&postcount=21

Good luck!!

hazem_aliraqi 05-26-2014 08:47 AM

its work on 4.2.0

But when i Click Save the word appear like this ظپط±ط+ط§ظ† in arabic word

I change the Character Encoding to windows-1256 or utf-8

but when i reloaded the page the word will appear ??


All times are GMT. The time now is 03:46 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.01418 seconds
  • Memory Usage 1,829KB
  • 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
  • (4)bbcode_code_printable
  • (1)bbcode_php_printable
  • (4)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)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