vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.5 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=113)
-   -   [AJAX] vBShout v2.0 (https://vborg.vbsupport.ru/showthread.php?t=93097)

lierduh 04-30-2006 07:39 AM

Quote:

Originally Posted by Brad
If you are one of the people having issues with the last fix I posted, try using the attached file instead. Let me know if this one works or not.

PHP Code:

function bbcodeparser($text ''$striphtml true)
{
    global 
$vbulletin;

    if (
$vbulletin->options['shout_bbcode'])
    {
        return 
$vbulletin->vbshout_parse->parse(convert_url_to_bbcode($text), 'nonforum');
    }
    else
    {
        return 
$text;
    }

    if (
$striphtml)
    {
        
$text htmlspecialchars_uni($text);
    }


Have not checked the rest of the script you attached, but what is the purpose of the last bit?

Code:

        if ($striphtml)
        {
                $text = htmlspecialchars_uni($text);
        }

I thought the latest version is supposed to filter out html tags to avoid java script inject. Your code seems on the surface to bypass the fix?

lierduh 04-30-2006 10:18 AM

A better way to handle html inject will be:

PHP Code:

function bbcodeparser($text ''$striphtml true)
{
        global 
$vbulletin;

        if (
$vbulletin->options['shout_bbcode'])
        {
                if (
$striphtml)
                {
                        
$vbulletin->options['allowhtml'] = false;
                }

                return 
$vbulletin->vbshout_parse->parse(convert_url_to_bbcode($text), 'nonforum');
        }
        else
        {   
                if (
$striphtml)
                {
                        
$text htmlspecialchars_uni($text); 
                }
                return 
$text;
        }



$vbulletin->options['allowhtml']

Defaults to off when bbcode is used. That is why everyone is getting the > etc. using the latest version.

Basically if one uses bbcode in the shouter. That is no need to worry about html inject because bbcode parser will handle special html tags by default.

Zelda-King 04-30-2006 10:20 AM

There appears to be a bug with speech marks. " is replaced with "

Tested on vB 3.5.4
Using the vBShout fixed v3 zip.

Hemanth 04-30-2006 11:11 AM

Hi,

How many shouts will be stored in database?

I'm using it over a few months. Is all the shouts so far'll be in the DB or it'll be cleared?

Zelda-King 04-30-2006 12:56 PM

They're all saved until you prune them.

Zweeper 04-30-2006 01:50 PM

Can please help me somebody with a function that cut long words??
look @ attachment

furst 04-30-2006 06:43 PM

Any way to get the ignore list to work with this?

lucky64 04-30-2006 08:49 PM

Still hoping on figuring out why it doesn't show the last shout when reloading the page :( just jumps to the middle.

Quote:

Originally Posted by kafi
I couldn't find this yet here>

I would like to show VBShout only with specific forum.

1. please can u give me conditional and where to place it?
2. this would be good to have in admin area for flexible use.
3. or is there a way to do it otherway already?

Thank you!

Was anone successful in getting it to appear in a specific forum either?

TwTom 04-30-2006 09:10 PM

I'm just getting 'loading' at the bottom of the board's main page. :-(

http://www.twolvescentral.com

Sn!per101 05-01-2006 05:13 AM

As an update to my other post about the WOL showing everyone on the forum index as "viewing the shoutbox" I believe it is not because of a newer apache but because of PHP 5 that I now have on my new hosting. My old hosting had PHP 3. So if you could please make this extention PHP 5 comptable to fix that bug I would appreciate it. Thank you.


All times are GMT. The time now is 07:03 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.03829 seconds
  • Memory Usage 1,754KB
  • 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
  • (2)bbcode_php_printable
  • (2)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (6)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