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)
-   -   Add-On Releases - [DavidsMods] vBLive Lite - Global User Statuses and Site Stream! (https://vborg.vbsupport.ru/showthread.php?t=277545)

lild100 02-13-2012 03:15 PM

Quote:

Originally Posted by DavidsMods (Post 2298917)
THank you for the kind words! :) As for your questions, I will be including further moderation options in the next update. To ban words, simply add them to the default vBulletin censored words list and the mod will take care of it for you :)

- David

Thanks for your reply David :)

Does the mod cause many queries? For example if there were 500 people online at once on a board would it cause the baord to slow down?

I have the mod installed and works great so far, think im going to get pro! :)

glen290 02-13-2012 03:26 PM

Found a bit of a strange bug, the sideblock works fine until I enable everywhere sidebar, then it disappears..

DavidsMods 02-13-2012 03:28 PM

Quote:

Originally Posted by lild100 (Post 2299281)
Thanks for your reply David :)

Does the mod cause many queries? For example if there were 500 people online at once on a board would it cause the baord to slow down?

I have the mod installed and works great so far, think im going to get pro! :)

It doesn't cause many queries at all. I doubt it would impact greatly on your site by having it installed! :)

- David

hugh_ 02-13-2012 07:12 PM

Could we have an option to rebuild the stream so posts which have been edited after posting can be updated? Also how about a paginated archive either unique page titles?

cherylferraro 02-14-2012 01:30 AM

I'm interested, this seems very useful.

Tagged and will revisit later to see how it develops.

savraot 02-14-2012 04:17 AM

1 Attachment(s)
is there a way that User can delete his own status updates from the stream?

-edit-

smilies don't work in stream

Ziki 02-15-2012 11:19 AM

I installed this on a client's website and found out that placeholder (predefined text in status bar in header) is not a supported HTML attribute in IE (does not display Status...). If anybody is having this problem as well, below is the fix. The code is not mine, it's a jQuery fix.

Open template headinclude and at the bottom add:

Code:

<script type="text/javascript">
/* <![CDATA[ */
$(function() {
        var input = document.createElement("input");
    if(('placeholder' in input)==false) {
                $('[placeholder]').focus(function() {
                        var i = $(this);
                        if(i.val() == i.attr('placeholder')) {
                                i.val('').removeClass('placeholder');
                                if(i.hasClass('password')) {
                                        i.removeClass('password');
                                        this.type='password';
                                }                       
                        }
                }).blur(function() {
                        var i = $(this);       
                        if(i.val() == '' || i.val() == i.attr('placeholder')) {
                                if(this.type=='password') {
                                        i.addClass('password');
                                        this.type='text';
                                }
                                i.addClass('placeholder').val(i.attr('placeholder'));
                        }
                }).blur().parents('form').submit(function() {
                        $(this).find('[placeholder]').each(function() {
                                var i = $(this);
                                if(i.val() == i.attr('placeholder'))
                                        i.val('');
                        })
                });
        }
});
/* ]]> */
</script>


DavidsMods 02-15-2012 02:09 PM

Quote:

Originally Posted by savraot (Post 2299498)
is there a way that User can delete his own status updates from the stream?

-edit-

smilies don't work in stream

These will be added possibly in the next update! :)

- David

savraot 02-15-2012 05:38 PM

Code:

These will be added possibly in the next update!
THX, David :D

DavidsMods 02-15-2012 11:46 PM

Updated to 1.4.1!

Changes:
- Fixed a bug that would cause new thread/reply streams not to post.

- David

thecore762 02-16-2012 12:09 AM

Nice update :)

savraot 02-16-2012 04:57 AM

I have 1.4.1 update installed, but it shows 1.4.0 in acp?

DavidsMods 02-16-2012 12:27 PM

Quote:

Originally Posted by savraot (Post 2300143)
I have 1.4.1 update installed, but it shows 1.4.0 in acp?

I mustn't have updated the version in the product XML file. It doesn't matter anyway, you can ignore it :)

- David

MikeF 02-16-2012 01:13 PM

Besides the registration notifications, how does this differ from dmActivityStream - Facebook-like news feed for your forum!

DavidsMods 02-18-2012 03:53 AM

Updated to 1.4.1!

Changes:
- Forum permissions will now be taken into consideration for new thread and new reply streams.

- David

savraot 02-18-2012 06:19 AM

1 Attachment(s)
when I enable the forum sidebar block I get this error and my style (vb standard) breaks?

when I trie to use the advanced post/thanks (db-tech) sidebar block I get also an MySQL error.

Code:

Warnung: require([path]/dmods/hide/plugins/showthread_post_start.php) [function.require]: failed to open stream: No such file or directory in [path]/showthread.php(815) : eval()'d code (Zeile 3)

Fatal error: require() [function.require]: Failed opening required '/www/htdocs/xxx/dmods/hide/plugins/showthread_post_start.php' (include_path='.:/usr/share/php:..') in /www/htdocs/xxx/showthread.php(815) : eval()'d code on line 3


clutchthese 02-18-2012 07:20 AM

I'm getting errors trying to view forums that are locked.

Warning: require([path]/dmods/hide/plugins/showthread_post_start.php) [function.require]: failed to open stream: No such file or directory in [path]/showthread.php(815) : eval()'d code on line 1

Fatal error: require() [function.require]: Failed opening required '/dmods/hide/plugins/showthread_post_start.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /showthread.php(815) : eval()'d code on line 1

Markus79 02-18-2012 07:54 AM

Same failure

Downgrade to 1.4.0

I didn't install a hide-addon

DavidsMods 02-18-2012 05:31 PM

Quote:

Originally Posted by savraot (Post 2300775)
when I enable the forum sidebar block I get this error and my style (vb standard) breaks?

when I trie to use the advanced post/thanks (db-tech) sidebar block I get also an MySQL error.

Code:

Warnung: require([path]/dmods/hide/plugins/showthread_post_start.php) [function.require]: failed to open stream: No such file or directory in [path]/showthread.php(815) : eval()'d code (Zeile 3)

Fatal error: require() [function.require]: Failed opening required '/www/htdocs/xxx/dmods/hide/plugins/showthread_post_start.php' (include_path='.:/usr/share/php:..') in /www/htdocs/xxx/showthread.php(815) : eval()'d code on line 3


Quote:

Originally Posted by clutchthese (Post 2300785)
I'm getting errors trying to view forums that are locked.

Warning: require([path]/dmods/hide/plugins/showthread_post_start.php) [function.require]: failed to open stream: No such file or directory in [path]/showthread.php(815) : eval()'d code on line 1

Fatal error: require() [function.require]: Failed opening required '/dmods/hide/plugins/showthread_post_start.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /showthread.php(815) : eval()'d code on line 1

Could you both send me login info for your sites?

- David

Gemma 02-18-2012 09:06 PM

Wouldn't mind seeing something similar to IPB where you can comment on other user's statuses.

Yes I know DBT's Live Wall has comments before anyone goes on about copying or similarities but I think they should be limited to comments on user statuses; no need for having them on things like threads or posts (that is why there are forums).

IPB does it pretty well although they allow users to associate their twitter account with their status updates.

glen290 02-18-2012 10:39 PM

I agree with Gemma, being able to comment on statuses only is a great addition

DavidsMods 02-19-2012 01:48 AM

Quote:

Originally Posted by Gemma (Post 2300979)
Wouldn't mind seeing something similar to IPB where you can comment on other user's statuses.

Yes I know DBT's Live Wall has comments before anyone goes on about copying or similarities but I think they should be limited to comments on user statuses; no need for having them on things like threads or posts (that is why there are forums).

IPB does it pretty well although they allow users to associate their twitter account with their status updates.

Comments are coming :) Quite possibly in the next version :)

- David

clutchthese 02-23-2012 07:42 PM

Quote:

Originally Posted by DavidsMods (Post 2300917)
Could you both send me login info for your sites?

- David

I've sent you login info... haven't heard back and haven't seen an update. Any new info David?

AURFSCAN 02-23-2012 09:36 PM

comments, status's-posts-threads

yes and no.. Im following both mods and ive got for eg. two usergroups, only one usergroup (premium) can use this type of mod, while the normal usergroup (member) cannot. I dont have an issue with prem members commenting on normal members threads/posts on the 'stream' instead of in thread. With the forum i have, the ability to comment on threads/posts in the stream works for me :)

DavidsMods 02-24-2012 10:17 PM

Quote:

Originally Posted by clutchthese (Post 2302768)
I've sent you login info... haven't heard back and haven't seen an update. Any new info David?

Apologies for the delay! Your message got lost in my inbox. I'll have a fix hopefully tonight :)

- David

DavidsMods 02-25-2012 06:06 PM

Quote:

Originally Posted by clutchthese (Post 2302768)
I've sent you login info... haven't heard back and haven't seen an update. Any new info David?

Hey,

Sorry for the delay, I have been away from home the past few days. I've noticed that you are currently on 1.4.0. Upgrading to 1.4.1 should fix the issues you have!

- David

clutchthese 02-26-2012 01:18 AM

Quote:

Originally Posted by DavidsMods (Post 2303342)
Hey,

Sorry for the delay, I have been away from home the past few days. I've noticed that you are currently on 1.4.0. Upgrading to 1.4.1 should fix the issues you have!

- David

No, i have your pro version installed.

this is from creating a new thread:

Warning: require([path]/dmods/hide/plugins/showthread_post_start.php) [function.require]: failed to open stream: No such file or directory in [path]/showthread.php(815) : eval()'d code on line 1

Fatal error: require() [function.require]: Failed opening required '/home/gameru5/public_html/dmods/hide/plugins/showthread_post_start.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/gameru5/public_html/showthread.php(815) : eval()'d code on line 1



This is from clicking the thread from within the "Stream" tab:


Warning: require([path]/dmods/hide/plugins/showthread_post_start.php) [function.require]: failed to open stream: No such file or directory in [path]/showthread.php(815) : eval()'d code on line 1

Fatal error: require() [function.require]: Failed opening required '/home/gameru5/public_html/dmods/hide/plugins/showthread_post_start.php' (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/gameru5/public_html/showthread.php(815) : eval()'d code on line 1


Basically the same thing. But from different pages. Also, you can't click any post without getting an error. So, you HAVE to disable the mod.

I've sent you login details. If you want to investigate further, go ahead. It's disabled at this time.

Schoelle 02-26-2012 07:33 AM

@clutchthese: also the pro Version is on 1.4.1
I had the same error with 1.4.0 and 1.4.1 fixed it.

But i have disabled it anyways since this mod breaks special charactes when answering with the quick reply box. One has to refresh the page to see the special characters like the german umlauts.

Nice mod, but unless the sidebar will refresh automatically and the special character problem is fixed i will leave it off.

thecore762 02-26-2012 07:54 AM

David, question regarding the pro mod.
Can the top status option be disabled and just use the live status on the forums block?

DavidsMods 02-26-2012 02:00 PM

Quote:

Originally Posted by thecore762 (Post 2303492)
David, question regarding the pro mod.
Can the top status option be disabled and just use the live status on the forums block?

It can indeed :) There are settings within the mod for this!

- David

thecore762 02-26-2012 06:05 PM

David, is there a demo of AdminCP for pro version available anywhere?

DavidsMods 02-26-2012 06:37 PM

Quote:

Originally Posted by thecore762 (Post 2303639)
David, is there a demo of AdminCP for pro version available anywhere?

Not at the moment no! Sorry! :(

- David

ewebdesigner 02-26-2012 09:01 PM

Will I be allowed to cancel the site stream and only have user statuses?

thecore762 02-26-2012 10:22 PM

David, I'd suggest adding the reply notification to the lite version.
It would be a nice feature to have.

BTW, How do I edit the background for the status box?

DavidsMods 02-26-2012 10:58 PM

Quote:

Originally Posted by ewebdesigner (Post 2303708)
Will I be allowed to cancel the site stream and only have user statuses?

There are options available for that :)

Quote:

Originally Posted by thecore762 (Post 2303738)
David, I'd suggest adding the reply notification to the lite version.
It would be a nice feature to have.

BTW, How do I edit the background for the status box?

I'll be assessing the streams in a future version. It may or may not be added to lite then. As for the status box, you can find all CSS in the dmods_live.css template! :)

- David

thecore762 02-26-2012 11:11 PM

I am not sure which one is the one that I need to change to make it black background.

Code:

.stream {
    width: 100%;
    border-right: 1px solid #F5F5F5;
    border-bottom: 1px solid #D0D0D0;
    padding: 10px;
    margin: 10px;
}

.live_hover:hover {
    background: {vb:var vboptions.dmods_live_stream_hover};
}

.dmods_bold {
    font-weight: bold;
}

.dmods_additional {
    margin: 12px !important;
    margin-left: 18px;
    padding: 4px;
    width: auto;
    border-left: 8px solid #F5F5F5;
}

.dmods_small {
    font-size: 10px;
}


DavidsMods 02-27-2012 01:20 AM

Quote:

Originally Posted by thecore762 (Post 2303755)
I am not sure which one is the one that I need to change to make it black background.

Code:

.stream {
    width: 100%;
    border-right: 1px solid #F5F5F5;
    border-bottom: 1px solid #D0D0D0;
    padding: 10px;
    margin: 10px;
}

.live_hover:hover {
    background: {vb:var vboptions.dmods_live_stream_hover};
}

.dmods_bold {
    font-weight: bold;
}

.dmods_additional {
    margin: 12px !important;
    margin-left: 18px;
    padding: 4px;
    width: auto;
    border-left: 8px solid #F5F5F5;
}

.dmods_small {
    font-size: 10px;
}


Add the following to the end of the file:

Code:

#dmods_status {
    background: #000000;
    color: #FFFFFF;
}

- David

thecore762 02-27-2012 01:27 AM

Many thanks David :)

Maybe that can also be added to the script to the plugin next version.
I doubt many would have to change this, but I am sure few would find this useful.

clutchthese 02-27-2012 01:46 AM

Fixed. I upgraded to 1.4.1...

I thought i was already on it, as the version in admincp reflected 1.4.1

Anyways, thanks for the reply, David. All is well now.

TheLastSuperman 02-27-2012 02:25 AM

Please refrain from discussing the Paid/Pro version in this thread, please PM DavidsMods directly or contact him on the site you purchased from respectively.

Thanks!


All times are GMT. The time now is 11:40 AM.

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.01649 seconds
  • Memory Usage 1,848KB
  • 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
  • (7)bbcode_code_printable
  • (16)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