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)

ohgenki 05-13-2006 02:06 PM

Quote:

Originally Posted by DjTaz

i tried this, guess what happened? the shoutbox disappeared totally! :(

DjTaz 05-13-2006 04:25 PM

Quote:

Originally Posted by ohgenki
i tried this, guess what happened? the shoutbox disappeared totally! :(

I hadnt tried that hack myself as its not something i want, but the code looks to be sound from what i can see - are you sure you did it exactly as it said ?

Step 1 is important
1) Change the hook location for 'vBShout [Template Alteration]' to: forumdisplay_complete


and in Step 2 basically you change the code to this :

Code:


$Used    = 0;
$UsedArr = array();
$smilies = $db->query_read("
                SELECT smilieid, smilietext, smiliepath, smilie.title,
                imagecategory.title AS category
                FROM " . TABLE_PREFIX . "smilie AS smilie
                LEFT JOIN " . TABLE_PREFIX . "imagecategory AS imagecategory USING(imagecategoryid)
                ORDER BY imagecategory.displayorder, smilie.displayorder
        ");
$Smilie_Build  = '';
$Total_Smilies = $db->num_rows($smilies);

if ($Total_Smilies > 0)
{
        while ($emo = $db->fetch_array($smilies))
        {
                if ($vbulletin->options['shout_smilies_show'] > 0)
                {
                        $Smilie_Cache[] = $emo;
                }
                else
                {
                        $Smilie_Build .= '<a href="#" onclick="return sb_Smilie(\''.$emo['smilietext'].'\')"><img src="'.$emo['smiliepath'].'" alt="'.$emo['title'].'" border="0" /></a> ';
                }
        }

        if ($vbulletin->options['shout_smilies_show'] > $Total_Smilies)
        {
                $vbulletin->options['shout_smilies_show'] = $Total_Smilies;
        }

        if ($vbulletin->options['shout_smilies_show'] > 0)
        {
                while ($Used < $vbulletin->options['shout_smilies_show'])
                {
                        $GetEmo = $Total_Smilies;
                        $GetEmo = rand(0, $GetEmo);

                        if (!in_array($GetEmo, $UsedArr) && $Smilie_Cache[$GetEmo])
                        {
                                $Used++;
                                $GetEmo = $Smilie_Cache[$GetEmo];
                                $Smilie_Build .= '<a href="#" onclick="return sb_Smilie(\''.$GetEmo['smilietext'].'\')"><img src="'.$GetEmo['smiliepath'].'" alt="'.$GetEmo['title'].'" border="0" /></a> ';
                        }
                }
        }
}
else
{
        $Smilie_Build = 'No Emoticons Available';
}

$Options_DropDown        = array(); // Items included will be parsed to create drop down menus
$DropDowns                = array(); // Completed constructed drop down menus

$Options_DropDown['font_selector']    = array('Default', 'Arial', 'Arial Black', 'Arial Narrow', 'Book Antiqua', 'Century Gothic', 'Comic Sans MS', 'Courier New', 'Fixedsys', 'Franklin Gothic Medium', 'Garamond', 'Georgia', 'Impact', 'Lucida Console', 'Lucida Sans Unicode', 'Microsoft Sans Serif', 'Palatino Linotype', 'System', 'Tahoma', 'Times New Roman', 'Trebuchet MS', 'Verdana');
$Options_DropDown['color_selector']  = array();
$Options_DropDown['color_selector'][] = 'Default';

$hex  = array();
$hex[] = '0';
$hex[] = '3';
$hex[] = '6';
$hex[] = '9';
$hex[] = 'C';
$hex[] = 'F';

for ($a = 0; $a < 6; $a++)
{
        for ($b = 0; $b < 6; $b++)
        {
                for ($c = 0; $c < 6; $c++)
                {
                        $Options_DropDown['color_selector'][] = '#' . $hex[$a].$hex[$a].$hex[$b].$hex[$b].$hex[$c].$hex[$c];
                }
        }
}

if (is_array($Options_DropDown))
{
        foreach ($Options_DropDown as $Menu => $Options)
        {
                $DropDowns[$Menu] = '';
                if (is_array($Options))
                {
                        foreach ($Options as $Selection)
                        {
                                if (preg_match("#^\#([a-z0-9]+)$#i", $Selection))
                                {
                                        $Extra = ' style="color:'.$Selection.';"';
                                }
                                else
                                {
                                        $Extra = '';
                                }

                                if ($Selection == 'Default')
                                {
                                        $Text = (($Menu == 'color_selector') ? 'Color' : 'Font Face') . ' [Default]';
                                }
                                else
                                {
                                        $Text = $Selection;
                                }

                                $DropDowns[$Menu] .= '<option value="'.$Selection.'"'.$Extra.'>'.$Text.'</option>' . "\n";
                        }
                }
        }
}

function isBanned($user)
{
        return (isBanned_Check($user['userid'], 'shout_banned_users') || isBanned_Check($user['usergroupid'], 'shout_banned_usergroups'));       
}

function isBanned_Check($bash, $against)
{
        global $vbulletin;
        return in_array($bash, iif($vbulletin->options[$against], explode(',', $vbulletin->options[$against]), array()));
}

if ($vbulletin->options['shout_banned_perms'] == 2 && isBanned($vbulletin->userinfo))
{
        $Shoutox = '';
}
else
{
        eval('$Shoutbox = "' . fetch_template('forumhome_vbshout') . '";');
}




if ($forumid ==1)
{
$vbulletin->templatecache['FORUMDISPLAY'] = str_replace('$navbar', '$navbar' . ' $Shoutbox', $vbulletin->templatecache['FORUMDISPLAY']);
}

I changed the forumid to 1 on my forums and it works well when i clicked on Main Forum - but it wont work if you dont change the hook location ... well done to lierduh for that edit !

utw-Mephisto 05-13-2006 04:50 PM

Quote:

Originally Posted by DjTaz
I hadnt tried that hack myself as its not something i want, but the code looks to be sound from what i can see - are you sure you did it exactly as it said ?

Step 1 is important
1) Change the hook location for 'vBShout [Template Alteration]' to: forumdisplay_complete


and in Step 2 basically you change the code to this :

Code:


$Used    = 0;
$UsedArr = array();
$smilies = $db->query_read("
                SELECT smilieid, smilietext, smiliepath, smilie.title,
                imagecategory.title AS category
                FROM " . TABLE_PREFIX . "smilie AS smilie
                LEFT JOIN " . TABLE_PREFIX . "imagecategory AS imagecategory USING(imagecategoryid)
                ORDER BY imagecategory.displayorder, smilie.displayorder
        ");
$Smilie_Build  = '';
$Total_Smilies = $db->num_rows($smilies);

if ($Total_Smilies > 0)
{
        while ($emo = $db->fetch_array($smilies))
        {
                if ($vbulletin->options['shout_smilies_show'] > 0)
                {
                        $Smilie_Cache[] = $emo;
                }
                else
                {
                        $Smilie_Build .= '<a href="#" onclick="return sb_Smilie(\''.$emo['smilietext'].'\')"><img src="'.$emo['smiliepath'].'" alt="'.$emo['title'].'" border="0" /></a> ';
                }
        }

        if ($vbulletin->options['shout_smilies_show'] > $Total_Smilies)
        {
                $vbulletin->options['shout_smilies_show'] = $Total_Smilies;
        }

        if ($vbulletin->options['shout_smilies_show'] > 0)
        {
                while ($Used < $vbulletin->options['shout_smilies_show'])
                {
                        $GetEmo = $Total_Smilies;
                        $GetEmo = rand(0, $GetEmo);

                        if (!in_array($GetEmo, $UsedArr) && $Smilie_Cache[$GetEmo])
                        {
                                $Used++;
                                $GetEmo = $Smilie_Cache[$GetEmo];
                                $Smilie_Build .= '<a href="#" onclick="return sb_Smilie(\''.$GetEmo['smilietext'].'\')"><img src="'.$GetEmo['smiliepath'].'" alt="'.$GetEmo['title'].'" border="0" /></a> ';
                        }
                }
        }
}
else
{
        $Smilie_Build = 'No Emoticons Available';
}

$Options_DropDown        = array(); // Items included will be parsed to create drop down menus
$DropDowns                = array(); // Completed constructed drop down menus

$Options_DropDown['font_selector']    = array('Default', 'Arial', 'Arial Black', 'Arial Narrow', 'Book Antiqua', 'Century Gothic', 'Comic Sans MS', 'Courier New', 'Fixedsys', 'Franklin Gothic Medium', 'Garamond', 'Georgia', 'Impact', 'Lucida Console', 'Lucida Sans Unicode', 'Microsoft Sans Serif', 'Palatino Linotype', 'System', 'Tahoma', 'Times New Roman', 'Trebuchet MS', 'Verdana');
$Options_DropDown['color_selector']  = array();
$Options_DropDown['color_selector'][] = 'Default';

$hex  = array();
$hex[] = '0';
$hex[] = '3';
$hex[] = '6';
$hex[] = '9';
$hex[] = 'C';
$hex[] = 'F';

for ($a = 0; $a < 6; $a++)
{
        for ($b = 0; $b < 6; $b++)
        {
                for ($c = 0; $c < 6; $c++)
                {
                        $Options_DropDown['color_selector'][] = '#' . $hex[$a].$hex[$a].$hex[$b].$hex[$b].$hex[$c].$hex[$c];
                }
        }
}

if (is_array($Options_DropDown))
{
        foreach ($Options_DropDown as $Menu => $Options)
        {
                $DropDowns[$Menu] = '';
                if (is_array($Options))
                {
                        foreach ($Options as $Selection)
                        {
                                if (preg_match("#^\#([a-z0-9]+)$#i", $Selection))
                                {
                                        $Extra = ' style="color:'.$Selection.';"';
                                }
                                else
                                {
                                        $Extra = '';
                                }

                                if ($Selection == 'Default')
                                {
                                        $Text = (($Menu == 'color_selector') ? 'Color' : 'Font Face') . ' [Default]';
                                }
                                else
                                {
                                        $Text = $Selection;
                                }

                                $DropDowns[$Menu] .= '<option value="'.$Selection.'"'.$Extra.'>'.$Text.'</option>' . "\n";
                        }
                }
        }
}

function isBanned($user)
{
        return (isBanned_Check($user['userid'], 'shout_banned_users') || isBanned_Check($user['usergroupid'], 'shout_banned_usergroups'));       
}

function isBanned_Check($bash, $against)
{
        global $vbulletin;
        return in_array($bash, iif($vbulletin->options[$against], explode(',', $vbulletin->options[$against]), array()));
}

if ($vbulletin->options['shout_banned_perms'] == 2 && isBanned($vbulletin->userinfo))
{
        $Shoutox = '';
}
else
{
        eval('$Shoutbox = "' . fetch_template('forumhome_vbshout') . '";');
}




if ($forumid ==1)
{
$vbulletin->templatecache['FORUMDISPLAY'] = str_replace('$navbar', '$navbar' . ' $Shoutbox', $vbulletin->templatecache['FORUMDISPLAY']);
}

I changed the forumid to 1 on my forums and it works well when i clicked on Main Forum - but it wont work if you dont change the hook location ... well done to lierduh for that edit !

It finally works for me :) THANKS !!!!!

Sir_Yaro 05-13-2006 05:26 PM

Could you be so kind and fix word wrap code as well?
https://vborg.vbsupport.ru/showpost....postcount=1762

DjTaz 05-13-2006 05:45 PM

Quote:

Originally Posted by Sir_Yaro
Could you be so kind and fix word wrap code as well?
https://vborg.vbsupport.ru/showpost....postcount=1762

This isnt my hack and im only helping a few people out if i can - to have both the parsed version and the wordwrap would take too much of my time to figure out as i would have to go through all the code , and since i dont need this for myself , i wont be doing that.

danb00 05-13-2006 09:30 PM

well the shoutbox wont display on my forums and i cant find perms in usergroup perms manager....

Spin Doctor 05-14-2006 10:45 AM

Quote:

Originally Posted by Spin Doctor
hey guys i need to make it so my moderators cant edit the shoutbox, how do i do this???

Id like it so only my Smods and myself can, however it seems my mods have the same priverlages


still need help on this, i cant use my shoutbox untill someone helps me :(

S`ke 05-14-2006 03:09 PM

I can not see icon? How to fix?

Iain M 05-14-2006 06:46 PM

Quote:

Originally Posted by Spin Doctor
still need help on this, i cant use my shoutbox untill someone helps me :(

edit template forumhome_vbshout_archive_shout

find:
Code:

                                <if condition="$bbuserinfo[userid] == $Shout[s_by] OR can_moderate()">
                                        <span style='float:right'>
                                                [<a href='#' onclick='return Shout.Edit({$Shout['sid']})'>Edit</a> | <a href='#' onclick='return Shout.Delete({$Shout['sid']})'>Delete</a>]
                                        </span>
                                </if>

Replace with:
Code:

                                <if condition="$bbuserinfo[usergroupid] == 5 OR $bbuserinfo[usergroupid] == 6">
                                        <span style='float:right'>
                                                [<a href='#' onclick='return Shout.Edit({$Shout['sid']})'>Edit</a> | <a href='#' onclick='return Shout.Delete({$Shout['sid']})'>Delete</a>]
                                        </span>
                                </if>

thats for Super Mods and Admins to edit shouts :)

Sir_Yaro 05-14-2006 08:31 PM

thanks to that, this:
Code:

dlluuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuugieeeeeeeeeeeeeeee zaaaaaaaaaaaaaaaaaaaaapissssssssssssssssyyyyyyyyyyyy http://packages.ubuntu.com/cgi-bin/search_contents.pl?word=libborqt&searchmode=searchfiles&case=insensitive&version=breezy&arch=i386 dffffffffffffffffffffffffffffffff hhhhhhhhhhhhhhhhhhhhhhhhhhh
will look like that:

DjTaz 05-14-2006 08:59 PM

Well done Sir Yaro - that was a lot more simple that i had expected - but does it work ok ? as in if u type http://www.test.com , what do you get ?

Sir_Yaro 05-14-2006 09:08 PM

you will get exactly this:
link

DjTaz 05-14-2006 09:22 PM

Excellent - thats exactly what you wanted so - congrats

Total666 05-15-2006 02:56 AM

I just get a link but not a working link in the shoutbox .. I attached my vbshout.php .. Total

louis_chypher 05-15-2006 11:46 AM

Quote:

Originally Posted by Davidspl
Admins, supermods and all mods can edit the shouts, is there anyway to make it admins only edit?

https://vborg.vbsupport.ru/showthrea...93097&page=111 <<< Just use the UserGroupID's you want to have access to the edit shouts functions.

Sir_Yaro 05-15-2006 03:38 PM

Quote:

Originally Posted by Total666
I just get a link but not a working link in the shoutbox .. I attached my vbshout.php .. Total

You did only second code modification but you forgot about first one - the most important...
:)
fix it :)

blacklancer 05-15-2006 04:10 PM

Quote:

Originally Posted by louis_chypher
A possible quick solution to limit access to the archive and archive functions by user group :

There is a template called forumhome_vbshout that has as part of its contents a line with the following info: <a href='vbshout.php?{$session['sessionurl_q']}do=archive'>Shoutbox</a>

Perhaps one could possibly change that line so that it reads:

<if condition="can_moderate()">
<a href='vbshout.php?{$session['sessionurl_q']}do=archive'>Shoutbox</a>
<else />
Shoutbox
</if>

While that will not prevent a user from manually typing in the name of the link. It will prevent those without the knowledge of the links parameters from going further.

If one is a bit more interested in digging deeper one could, possibly, open the vbshout.php file and find:

if ($_GET['do'] == 'archive')
{

located around line 356/357

Then one could, possibly, insert below the line with the "{" and above the line "$navbits = array("vbshout.php?" . $vbulletin->session->vars['sessionurl'] . "do=archive" => 'Archive');"

something like:

if (!in_array($bbuserinfo['usergroupid'], array(5,6,7,X1)))
{ print_no_permission();
exit();
}

Where 5=super moderators, 6=admin, 7=moderators, and (optional) X1= what ever other usergroup one wants to include (if one was not to use X1 then do remember to remove the "," as well).

Then it should be highly possible that one would, possibly, be able to highly limit the access to the Shoutbox, a most wonderful product!, archive functions.

Of course one would be on their in doing such things.:surprised:

i did this, but took it a step futher and only allowed 2 user id's access, one of whom was me. however, when i try to access it, it tells me that i dont have access.

RemiAlone 05-15-2006 05:31 PM

I like this! :)

DjTaz 05-15-2006 10:23 PM

Quote:

Originally Posted by blacklancer
i did this, but took it a step futher and only allowed 2 user id's access, one of whom was me. however, when i try to access it, it tells me that i dont have access.


Can we take a peek at the code you used so we can see if theres a bug in that ? Prob the easiest place to start. (and any other info we might need that you can supply like ur userid and error messages )

Spin Doctor 05-16-2006 02:50 AM

Quote:

Originally Posted by CP1
edit template forumhome_vbshout_archive_shout

find:
Code:

                                <if condition="$bbuserinfo[userid] == $Shout[s_by] OR can_moderate()">
                                        <span style='float:right'>
                                                [<a href='#' onclick='return Shout.Edit({$Shout['sid']})'>Edit</a> | <a href='#' onclick='return Shout.Delete({$Shout['sid']})'>Delete</a>]
                                        </span>
                                </if>

Replace with:
Code:

                                <if condition="$bbuserinfo[usergroupid] == 5 OR $bbuserinfo[usergroupid] == 6">
                                        <span style='float:right'>
                                                [<a href='#' onclick='return Shout.Edit({$Shout['sid']})'>Edit</a> | <a href='#' onclick='return Shout.Delete({$Shout['sid']})'>Delete</a>]
                                        </span>
                                </if>

thats for Super Mods and Admins to edit shouts :)

omg, thanks!

Total666 05-16-2006 03:18 AM

Quote:

Originally Posted by Sir_Yaro
You did only second code modification but you forgot about first one - the most important...
:)
fix it :)


Sorry but I do not understand , I did everything in post https://vborg.vbsupport.ru/showpost....postcount=1772

Did I miss something ?? Thanks .. A crayon answer is ok .. Total

maroceve 05-16-2006 09:20 AM

hey guys :) ..Everything works perfect but i can't get the smileys to work. ?

Sir_Yaro 05-16-2006 09:25 AM

Quote:

Originally Posted by Total666
Sorry but I do not understand , I did everything in post https://vborg.vbsupport.ru/showpost....postcount=1772

Did I miss something ?? Thanks .. A crayon answer is ok .. Total

There were mistakes in a code. For some reasons vB doesn't display my code correctly. Some parts were missing. I've fixed that. Correct code is in a attachment in this post:
https://vborg.vbsupport.ru/showpost....postcount=1772

H@K@N 05-16-2006 09:57 AM

Does anybody see the possibility to disallow external Image linking within the Shoutbox ?

So only images from same Host, will be allowed, as for smilies for ex.

Have still some kiddies, which posting external images, which are stored on a Server/Folder which have .htaccess with AUTH activated, so always the authentication Popup is coming up on my Forum. Some will Enter his Username and Password, i'm sure.

th@nks

Sir_Yaro 05-16-2006 10:59 AM

Quote:

Originally Posted by H@K@N
Does anybody see the possibility to disallow external Image linking within the Shoutbox ?

So only images from same Host, will be allowed, as for smilies for ex.

Have still some kiddies, which posting external images, which are stored on a Server/Folder which have .htaccess with AUTH activated, so always the authentication Popup is coming up on my Forum. Some will Enter his Username and Password, i'm sure.

th@nks

this should do:
Code:

//unallowed extensions
if (strpos($Shout['s_shout'],"gif")|strpos($Shout['s_shout'],"jpg")|strpos($Shout['s_shout'],"bmp"))
{
//allowed domain
$allow="http://forum.ubuntu.pl";

if (strpos($Shout['s_shout'],$allow)!=0)
    {
    $Shout['s_shout'] = str_replace("http://","", $Shout['s_shout']);
    $Shout['s_shout'] = str_replace("www.","", $Shout['s_shout']);
    }
}

please, don't ask "where?". I dont know :P Check my last posts about word wrap in this topic and add this code in a same place (and let us know where is it) :)

louis_chypher 05-16-2006 02:24 PM

Quote:

Originally Posted by blacklancer
i did this, but took it a step futher and only allowed 2 user id's access, one of whom was me. however, when i try to access it, it tells me that i dont have access.

After some looking into this I found that I also was not allowed access after a few times of clicking on the Shoutbox link.

I've placed My correction below with an addition:

//use for individual access
//if ($vbulletin->userinfo['userid'] != X)
//use for usergroup access
if (!(in_array($vbulletin->userinfo['usergroupid'], array(6,7))))
{ print_no_permission();
exit();
}

If you want to give access to only an individual then change
//if ($vbulletin->userinfo['userid'] != X)
to
if ($vbulletin->userinfo['userid'] != X)

and add change if (!(in_array($vbulletin->userinfo['usergroupid'], array(6,7))))
to
//if (!(in_array($vbulletin->userinfo['usergroupid'], array(6,7))))

Then replace the X with the userid of the person you are giving shoutbox edit access.

S`ke 05-17-2006 10:56 AM

My shoutbox can't show icon? How to fix? Who can help me?

blacklancer 05-17-2006 05:10 PM

Quote:

Originally Posted by louis_chypher
After some looking into this I found that I also was not allowed access after a few times of clicking on the Shoutbox link.

I've placed My correction below with an addition:

//use for individual access
//if ($vbulletin->userinfo['userid'] != X)
//use for usergroup access
if (!(in_array($vbulletin->userinfo['usergroupid'], array(6,7))))
{ print_no_permission();
exit();
}

If you want to give access to only an individual then change
//if ($vbulletin->userinfo['userid'] != X)
to
if ($vbulletin->userinfo['userid'] != X)

and add change if (!(in_array($vbulletin->userinfo['usergroupid'], array(6,7))))
to
//if (!(in_array($vbulletin->userinfo['usergroupid'], array(6,7))))

Then replace the X with the userid of the person you are giving shoutbox edit access.

awesome! thanks for your help.

if i want multiple user ids, do i seperate by comma??

Code:

if ($vbulletin->userinfo['userid'] != 1,2,3)

buzzel 05-18-2006 10:18 AM

i love it... thanks for sharing!

questions:

-who can i change the backgroundcolor of the input box?

-and how do you managed the shouts... never delete or delete at 1 week or so?

-change the smilies from random to the first in row (1-10)

thanks

aladinliverpool 05-18-2006 10:43 AM

yeah we could do with something like that. ive had to go into the database to delete the shouts every so often.

Dead End Society 05-18-2006 01:35 PM

I notice that in the shoutbox that any time members use standard quotes (") that it comes out funky. This is what it looks like when....

"test" test "test"

is typed in my shoutbox, check attachment. Any ideas of why it does this?

GuaRRand 05-18-2006 05:15 PM

The VBshoutbox is always a little wider then my forumframe....
it always "sticks out" :(

Can i set the width somewhere?

DjTaz 05-18-2006 07:35 PM

Quote:

Originally Posted by buzzel
i love it... thanks for sharing!

questions:

-who can i change the backgroundcolor of the input box?

-and how do you managed the shouts... never delete or delete at 1 week or so?

-change the smilies from random to the first in row (1-10)

thanks

1. go to AdminCP - Styles and templates - Style manager - all style options (click go) - search for CSS Selector: textarea, .bginput about 1/2 way down the page - and use the box for background to select the colour u want for the input boxes.

2. theres a php file and a cron job available to automate the deletion of posts,you will need to search this thread for CRON JOB

3. I disabled smiles as they seem to use a lot of the resources on the server so i wont be doing this one , sorry.

DjTaz 05-18-2006 07:38 PM

Quote:

Originally Posted by Dead End Society
I notice that in the shoutbox that any time members use standard quotes (") that it comes out funky. This is what it looks like when....

"test" test "test"

is typed in my shoutbox, check attachment. Any ideas of why it does this?


This has been discusses loads and loads of times on this thread and there are several answers there to this issue - i'd say read back some of the older posts and youll find it.

DjTaz 05-18-2006 07:44 PM

Quote:

Originally Posted by GuaRRand
The VBshoutbox is always a little wider then my forumframe....
it always "sticks out" :(

Can i set the width somewhere?

in your styles and templates - find forumhome_vbshout, its in the ForumHome list of templates

in that look for

Code:

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
                <thead>
                <tr>

and just change the width="100%" in that to 90% , or whatever seems to fit your forum best.

DjTaz 05-18-2006 07:48 PM

Quote:

Originally Posted by aladinliverpool
yeah we could do with something like that. ive had to go into the database to delete the shouts every so often.


try typing /PRUNE and itll save u having to go into the database

buzzel 05-19-2006 05:55 AM

Quote:

Originally Posted by DjTaz
1. go to AdminCP - Styles and templates - Style manager - all style options (click go) - search for CSS Selector: textarea, .bginput about 1/2 way down the page - and use the box for background to select the colour u want for the input boxes.

2. theres a php file and a cron job available to automate the deletion of posts,you will need to search this thread for CRON JOB

3. I disabled smiles as they seem to use a lot of the resources on the server so i wont be doing this one , sorry.

thanks...

do you disabled smilies only for shoutbox or for the whole forum?

Smilies only increase the traffic, or am i wrong?

ruminet 05-19-2006 01:39 PM

All;

Is there anyway to prune INDIVIDUAL pages from SB?
If I wished to edit out one of many pages over time as evidenced in the page history list, can this be accomplished?

Otherwise - what a great feature-our patrons love it!;
http://www.i-bmw.com/

Sir_Yaro 05-19-2006 02:59 PM

Quote:

Originally Posted by Dead End Society
I notice that in the shoutbox that any time members use standard quotes (") that it comes out funky. This is what it looks like when....

"test" test "test"

is typed in my shoutbox, check attachment. Any ideas of why it does this?

in vbshout.php find:
Code:

// ---------------------------------------------------
// Grab Latest X Shouts
// ---------------------------------------------------

if ($_GET['do'] == 'latest')
{
        $Output = array();
        $Shouts = $DB->query('
                        select s.*, u.username, u.usergroupid from '.TABLE_PREFIX.'shout s
                        left join '.TABLE_PREFIX.'user u on (u.userid = s.s_by)
                        order by s.sid desc limit ' . $vbulletin->options['shout_display']);

        while ($Shout = $DB->fetch_array($Shouts))
        {

AFTER that add:
Code:

$Shout['s_shout'] = str_replace('"',"''", $Shout['s_shout']);

louis_chypher 05-19-2006 03:45 PM

Quote:

Originally Posted by blacklancer
awesome! thanks for your help.

if i want multiple user ids, do i seperate by comma??

Code:

if ($vbulletin->userinfo['userid'] != 1,2,3)



Code:

//use for miltiple individuals access
if (($vbulletin->userinfo['userid'] != X1) and ($vbulletin->userinfo['userid'] != X2)) 
    {  print_no_permission();
      exit();
    }

the above allows you to add two users

if you wanted to add three users you would need to add another "and" + operand:

like:

Code:

if (($vbulletin->userinfo['userid'] != X1) and ($vbulletin->userinfo
['userid'] != X2) and ($vbulletin->userinfo['userid'] != X3))

if you were going to add more then three user ID's I would change the entire statement to:

Code:


if (!(in_array($vbulletin->userinfo['userid'], array(X,X1,X2,X3))))
    {  print_no_permission();
      exit();
    }

replace X, X1, X2, X3 with the id number of the users you wish to allow edit accces


All times are GMT. The time now is 03:47 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.04293 seconds
  • Memory Usage 1,940KB
  • 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
  • (16)bbcode_code_printable
  • (23)bbcode_quote_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
  • (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