View Full Version : [AJAX] vBShout v2.0
Pages :
1
2
3
4
5
6
7
[
8]
9
10
11
12
13
14
Zweeper
05-13-2006, 11:53 AM
still need a wordwrap function :(
DjTaz
05-13-2006, 12:16 PM
why do u need a wordwrap function ? doesnt it already wordwrap when it reaches the end of the table ?
Zweeper
05-13-2006, 12:36 PM
no, look @ attachment
Sir_Yaro
05-13-2006, 12:51 PM
I made a autoprune function for vBshout.
Just download the attached file and put in the /includes/cron directory.
Then make a new scheduled task (see attached jpg).
I run it every night at 3 o clock but offcourse your free to run it more often than that.
What is does: It will delete all shouts that are older than 24 hours.
This way you will allways have an archive that's holds no shouts that are older than two days.
You can alter the deletion time in the php by altering the "(TIMENOW - (60 * 60 * 24)" statement.
Enjoy :)
Replaced the php with the right one
thank you!!
Sir_Yaro
05-13-2006, 12:54 PM
still need a wordwrap function :(
YES! I need it too!!
Zweeper
05-13-2006, 01:02 PM
one more, look @ post # 1755
DjTaz
05-13-2006, 01:11 PM
lol ok - fair point - try this :
In Vbshout.php around line 260 (ish) find :
if ($Shout['data']['italic'])
{
$Shout['style'] .= 'font-style:'.$Shout['data']['italic'].';';
}
and under it add in the following :
/////////////////////////////
//// SHOUTBOX WORDWRAP /////
//// BY DJTAZ ///////////////
$wrapafter=25;
if ($Shout['s_shout'])
{
$Shout['s_shout'] = wordwrap($Shout['s_shout'], $wrapafter , "<br />" ,1);
}
// END SHOUTBOX WORDWRAP ////
/////////////////////////////
Change the 25 to have the max amount of characters that you want
Zweeper
05-13-2006, 01:14 PM
DjTaz, i love you :D
it works!!
THANKS!!!
DjTaz
05-13-2006, 01:26 PM
No probs , glad to help.
Sir_Yaro
05-13-2006, 01:29 PM
lol ok - fair point - try this :
In Vbshout.php around line 260 (ish) find :
if ($Shout['data']['italic'])
{
$Shout['style'] .= 'font-style:'.$Shout['data']['italic'].';';
}
and under it add in the following :
/////////////////////////////
//// SHOUTBOX WORDWRAP /////
//// BY DJTAZ ///////////////
$wrapafter=25;
if ($Shout['s_shout'])
{
$Shout['s_shout'] = wordwrap($Shout['s_shout'], $wrapafter , "<br />" ,1);
}
// END SHOUTBOX WORDWRAP ////
/////////////////////////////
Change the 25 to have the max amount of characters that you want
thank you.
its working almost good. unfortunatelly it's not parsing links corectly. They comes as pure tekst not as link. Same with smilies - they appear as text (link to the smile is shown not smile) in a shoutbox.
ohgenki
05-13-2006, 02:06 PM
Yup - https://vborg.vbsupport.ru/showthread.php?p=765399&highlight=navbar#post765399
i tried this, guess what happened? the shoutbox disappeared totally! :(
DjTaz
05-13-2006, 04:25 PM
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 :
$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
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 :
$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.php?p=973603&postcount=1762
DjTaz
05-13-2006, 05:45 PM
Could you be so kind and fix word wrap code as well?
https://vborg.vbsupport.ru/showpost.php?p=973603&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
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 :(
I can not see icon? How to fix?
Iain M
05-14-2006, 06:46 PM
still need help on this, i cant use my shoutbox untill someone helps me :(
edit template forumhome_vbshout_archive_shout
find:
<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:
<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:
dlluuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuuugieeeeeeee eeeeeeee zaaaaaaaaaaaaaaaaaaaaapissssssssssssssssyyyyyyyyyy yy 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 (http://www.test.com/)
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
Admins, supermods and all mods can edit the shouts, is there anyway to make it admins only edit?
https://vborg.vbsupport.ru/showthread.php?t=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
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
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
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
edit template forumhome_vbshout_archive_shout
find:
<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:
<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
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.php?p=974926&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
Sorry but I do not understand , I did everything in post https://vborg.vbsupport.ru/showpost.php?p=974926&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.php?p=974926&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
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:
//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
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.
My shoutbox can't show icon? How to fix? Who can help me?
blacklancer
05-17-2006, 05:10 PM
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??
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
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
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
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
<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
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
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
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:// ---------------------------------------------------
// 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:
$Shout['s_shout'] = str_replace('"',"''", $Shout['s_shout']);
louis_chypher
05-19-2006, 03:45 PM
awesome! thanks for your help.
if i want multiple user ids, do i seperate by comma??
if ($vbulletin->userinfo['userid'] != 1,2,3)
//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:
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:
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
RFViet
05-19-2006, 05:40 PM
Is there any way to build shoutbox with Flash other than Java script ??
hi,
one of our users has got a problem with the shoutbox. The field where you fill in your text is very small:
http://img502.imageshack.us/img502/8840/shoutbox2er.jpg
He is using Firefox 1.5.0.3 @ 800x600 pixel (WinXP)
Can someone help me?
Thanks
bigM
GoNz00
05-21-2006, 10:17 AM
small problem, when i try to use the "&" sign i get "& " instead ???
any reason for this ?
DjTaz
05-21-2006, 10:44 AM
Is there any way to build shoutbox with Flash other than Java script ??
google is your friend : http://www.greycobra.com/tutorial/Flash_Shout_Box/
salata
05-21-2006, 03:30 PM
small problem, when i try to use the "&" sign i get "& " instead ???
any reason for this ?
BUMP. having the same issue
hurleybird
05-22-2006, 01:19 AM
How do I have the vbshout shoutbox closed by default? I tried editing the .xml file, but to no avail...
Reece^B
05-22-2006, 05:30 PM
Has anyone got the problem of:
A user is viewing your index but it's named differently,
http://img178.imageshack.us/my.php?image=screen9kx.jpg
Reece
cclaerhout
05-22-2006, 11:20 PM
With new changes made by Brad, here is a new version of my french translation.
P.S : i'm quite surprised than an other translation have been created where as mine was available.
Information : the special caracters problem is still NOT solved when you edit a message ; for exemple when you edit "J'aime le beurre" it gives : "J".
GoNz00
05-23-2006, 12:23 PM
small problem, when i try to use the "&" sign i get "& " instead ???
any reason for this ?
bumpity bump.. :banana:
Rican
05-23-2006, 07:39 PM
in vbshout.php find:// ---------------------------------------------------
// 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:
$Shout['s_shout'] = str_replace('"',"''", $Shout['s_shout']);
Thanks man! this is exactly what i came here looking for! big ups!
lexx27
05-23-2006, 09:01 PM
bumpity bump.. :banana:
same here
hurleybird
05-23-2006, 10:37 PM
How do I have the vbshout shoutbox closed by default? I tried editing the .xml file, but to no avail...
No one knows this? Any help would be greatly appreciated.
Raptor
05-24-2006, 12:38 AM
Warning: Invalid argument supplied for foreach() in /vbshout.php on line 293
this is what banned usergroups see - works fine for none banned usergroups
any clue how to fix ? using latest version as of today
kaala
05-24-2006, 03:45 AM
Cool stuff...How do I access the archive section to show stats and delete shouts?
D.Ilyin
05-24-2006, 01:12 PM
61 pages, I tried to search but didn't find anything helpful...
My members cannnot edit their own shouts despite them having the button to do so and the ability to open their shout to edit it. When they try to save their edit, it simply does NOT save.
I'd like this enabled for my members, but don't see a way to do so. Can someone help?
Same problem.....
Members see "Edit" "Delete" buttons. The last works fine.
But "Edit" does not. Yes? they can push save button after edit but after refreshing message revert at the first appearence.
4 peoples report in this thread about that but solution not found :(.
Can someone help me?
Snake
05-24-2006, 05:13 PM
I have uninstalled this hack and have installed vBChat rather than using this sucker of my site. :)
vBFreak
05-24-2006, 11:48 PM
Is there anything around to prevent users from spamming the shoutbox?
imported_magjr
05-25-2006, 02:55 AM
Using 3.5.4 is there a way to archive the shouts? I'm using chatbox lite now and people prefer this one.
Posof
05-26-2006, 07:59 AM
Helloo everyone where can i find the BUTTON to delete all the shouts in one..
I need that...
I have now 30.000 shouts and can delete it only 1 by 1..
Is there no way to make a BUTTON to select all and delete this SHOUTS at ones..
Regards..
There is no button, but a command. You have to type "/prune".
Please use the search in the future. This has been asked several times. vB has a great search function. In your case "delete shouts" would have returned 50 posts and the 17th has the same question and even the answer.
Posof
05-26-2006, 10:30 AM
thx for the feedback
Stoebi
05-26-2006, 02:04 PM
Hi,
I've a problem if I change the number of random smilies to show on the shoutbox.
With the default settings (0) I've no problems, but if i change the value i get smilies twice if I hit the smiley button. In my example I've changed 0 to 8 and it will show 2 or 3 same smilies from 8.
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> ';
}
}
}
I think the problem is the random line -> $GetEmo = rand(0, $GetEmo);
Is there somebody which can help to improve this, please?
Regards, Stoebi
Edit:
Solved. Many thx to Boothby from vbhacks-germany.com
Sir_Yaro
05-28-2006, 10:19 AM
small problem, when i try to use the "&" sign i get "& " instead ???
any reason for this ?
try to use str_replace function as described in this post:
https://vborg.vbsupport.ru/showpost.php?p=981036&postcount=1801
just change " (quotation) to &
and '' (2 apostrophes) to whatever you want
D.Ilyin
05-29-2006, 03:19 PM
Sir_Yaro you are the "king" of this thread.... :)
May be you could say something about my post (https://vborg.vbsupport.ru/showpost.php?p=986905&postcount=1817)?
Sir_Yaro
05-29-2006, 03:32 PM
Sir_Yaro you are the "king" of this thread.... :)
May be you could say something about my post (https://vborg.vbsupport.ru/showpost.php?p=986905&postcount=1817)?
sorry, no chances... I've the same problem....
I know that something is wrong with permisions but I don't have a clue what and where...
putergirl
05-30-2006, 12:20 AM
Hello, this shoutbox looks really nice, and it installed like a breeze, but when I try to shout, it never loads the shout and I get the message: "Posting in progress"
What does that mean, and how can I fix it. I don't know a lot about code, so will need some detail. Thank you! :)
CrossBones
05-30-2006, 12:44 AM
I'm working on a Safari fix. Currently, I have it fixed but need to work out some bugs with the fix. I'll update tomorrow with the fix, probably.
/fixxy fixxy fixxy
EDIT:
Okay, I had some extra time on my hands and I have my board up and running with it fine (http://forums.advancedmn.com/index.php)
Here's how to fix it.
In your Admin panel
Styles & Templates -> Style Manager ->Click the drop down menu next to your style -> Select 'Main CSS" and click Go
At the very bottom, you'll see a box for "Additional CSS Definitions." Paste the following code in there:
/* *****Safari Fix****/
.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
/* End hide from IE-mac */
/****** End Safari Fix ****/
Now, go to your Style Manager and find the forumhome_vbshout template. Open it up, and find the line...
<div id="vbshout" style="overflow:auto;height:{$vboptions['shout_box_height']}px;width:100%;">
</div>
Just before that segment, place this...
<div class="clearfix">
and just after that segment, put...
</div>
Should work fine for Safari users now.Can somebody tell me what this fix is suppose to fix when using Safari?
I have been trying to use the Shout Box at another form and it won't work properly in Safari...i.e., once you click "shout" nothing shows up until you either refresh or leave the forum page and come back. Then the shout shows up.
Is this what this is suppose to fix?
imported_predatorkill
05-30-2006, 12:52 AM
i think that this fix will fix the bad shoutbox window size.For example,if you ve setted the shoutbox window to be 100px,in Safari it shows 300px or more.In all other browsers works perfect.
Is this fix confirmed that it works?
CrossBones
05-30-2006, 12:55 AM
i think that this fix will fix the bad shoutbox window size.For example,if you ve setted the shoutbox window to be 100px,in Safari it shows 300px or more.In all other browsers works perfect.
Is this fix confirmed that it works?So the Shout Box basically doesn't work in Safari? I mean it doesn't register your message unless you refresh the browser. In that case it wouldn't be usable.
imported_predatorkill
05-30-2006, 12:59 AM
I really dont know if it needs to be refreshed to show the shouts.
I wasnt talking about manual refresh to see the shout,i was talking about the bad window behavior in Safari.:D
CrossBones
05-30-2006, 01:21 AM
I really dont know if it needs to be refreshed to show the shouts.
I wasnt talking about manual refresh to see the shout,i was talking about the bad window behavior in Safari.:DI know. I was just asking whoever if they know if there is anything that makes this work correctly when viewed in Safari! Right now I think it is unusable.
Thank you.
how does one turn off the shout box?
putergirl
05-30-2006, 01:43 AM
Hello, this shoutbox looks really nice, and it installed like a breeze, but when I try to shout, it never loads the shout and I get the message: "Posting in progress"
What does that mean, and how can I fix it. I don't know a lot about code, so will need some detail. Thank you! :)
oops, turns out the php hadn't been uploaded.. I could swear I did that.. Love it!! Thanks. :D :banana:
CrossBones
05-30-2006, 02:18 AM
oops, turns out the php hadn't been uploaded.. I could swear I did that.. Love it!! Thanks. :D :banana:I'm gettng that "posting in progress" too. Clould thqat be my "safari" problem? So that means that the host php hasn't been updated? What should the current php version be?
Kiros72
05-30-2006, 01:19 PM
No, posting in progress means simply that. I've gotten this message before while using Avant Browser and the only thing was that I couldn't make another shout until that message went away. Of course, that's understandable though :)
However, I'm having a problem with permissions. How would I go about setting permissions for the shout box so normal registered members will not be able to access the archive and edit/delete shouts? I was not aware that a registered member could do this until one reported it to me :?
Zachariah
05-30-2006, 03:44 PM
I had someone yell @ me to make this work on vBgallery.
This might be something ZT should add to the main Build ?
Adding:
$vboptions[bburl]/vbshout.php vs. vbshout.php in references.
Reason:
All links would show up in the gallery sub-folder as: /gallery/vbshout.php vs. /forums/vbshout.php
- In the XML installer of vbshout
Search: vbshout.php
Replace: $vboptions[bburl]/vbshout.php
Result:
5/30/2006 9:03:41 AM
Search String: $vboptions[bburl]/vbshout.php
File Mask: vbshout.xml
Line 23 - <template name="forumhome_vbshout" templatetype="template" date="1124952989" username="Zero Tolerance" version="3.5.0 Release Candidate 2"><![CDATA[<form action="$vboptions[bburl]/vbshout.php?{$session['sessionurl']}" method="post" name="vbshoutform" onsubmit="return postShout(this)">
Line 51 - <a href='$vboptions[bburl]/vbshout.php?{$session['sessionurl_q']}do=archive'>Shoutbox</a>
Line 137 - ShoutRequest.send('$vboptions[bburl]/vbshout.php', 'nocache=' + (5 * Math.random() * 1.33) )
Line 191 - doShout.send('$vboptions[bburl]/vbshout.php', 'do=shout&shout=' + PHP.urlencode(Shout) + sb_CollectHV(document.forms['vbshoutform']))
Line 319 - doDel.send('$vboptions[bburl]/vbshout.php', 'do=deleteshout&id=' + this.shoutid)
Line 373 - doShout.send('$vboptions[bburl]/vbshout.php', 'do=editshout&id=' + this.shoutid + '&shout=' + PHP.urlencode(ShoutMsg))
Found 6 occurrences.
anyone know how to turn this off please????
Total666
05-31-2006, 02:54 AM
anyone know how to turn this off please????
In your admin panel . plug in's - manage products . - disable it in there .. Total
mano1.com
05-31-2006, 03:34 AM
how would I edit the interface a bit? remove the rich formatting options, etc..?
mano1.com
05-31-2006, 03:36 AM
nevermind.. got it! :)
GuaRRand
06-01-2006, 03:12 AM
Is there a way to turn of the timestamps?
(didnt see them in the options)
Sir_Yaro
06-01-2006, 03:30 PM
Is there a way to turn of the timestamps?
(didnt see them in the options)
in vbshout.php find:
$Time = vbdate($vbulletin->options['dateformat'], $time, $vbulletin->
options['yestoday']);
$Time .= ' ';
$Time .= vbdate($vbulletin->options['timeformat'], $time, $vbulletin->op
tions['yestoday']);
and change to:
// $Time = vbdate($vbulletin->options['dateformat'], $time, $vbulletin->
options['yestoday']);
// $Time .= ' ';
// $Time .= vbdate($vbulletin->options['timeformat'], $time, $vbulletin->op
tions['yestoday']);
GuaRRand
06-01-2006, 03:56 PM
Nope. It leaves [] brackets and leaves a big space between the username and the text
BENSTER
06-01-2006, 04:56 PM
Hello, this shoutbox looks really nice, and it installed like a breeze, but when I try to shout, it never loads the shout and I get the message: "Posting in progress"
What does that mean, and how can I fix it. I don't know a lot about code, so will need some detail. Thank you! :)
I've gotten this a lot on an old host with an overloaded server. with the new host, I only get it if i fire off a dozen shouts very quickly, and I end up refreshing the page to get back in sync.
Sir_Yaro
06-01-2006, 05:53 PM
Nope. It leaves [] brackets and leaves a big space between the username and the text
then find below place where variable $Time is used and comment-up this line...
Evil Chris
06-01-2006, 06:57 PM
is there no way to install this Shoutbox vertically rather than horizontally?
GuaRRand
06-01-2006, 09:09 PM
then find below place where variable $Time is used and comment-up this line...
you men put // infront of it?
i now have function buildTime($time = TIMENOW)
{
global $vbulletin;
//$Time = vbdate($vbulletin->options['dateformat'], $time, $vbulletin->options['yestoday']);
//$Time .= ' ';
//$Time .= vbdate($vbulletin->options['timeformat'], $time, $vbulletin->options['yestoday']);
//return $Time;
}
and it still shows [] ( see www.glcoti.com )
What else can i try??
Dj-BuZ
06-02-2006, 04:40 PM
small problem, when i try to use the "&" sign i get "& " instead ???
any reason for this ?
same thing here....bump
da420
06-02-2006, 05:54 PM
same thing here....bump
https://vborg.vbsupport.ru/showpost.php?p=958674&postcount=1624
:banana: :banana: :banana:
Neo_Angelo
06-02-2006, 07:39 PM
whenever myself or member put " < & or things like that the shoutbox changes them into " & or whatever the others are, how do i correct this so we can place " without it being changed to "?
its pretty annoying, but overall i absolutly LOVE this code.
whenever myself or member put " < & or things like that the shoutbox changes them into " & or whatever the others are, how do i correct this so we can place " without it being changed to "?
its pretty annoying, but overall i absolutly LOVE this code.
I second that
balkanf
06-03-2006, 02:35 PM
hi guys! sorry if what i'm about to ask has been asked before, this thread is just too long to sit and read all of it...
anyway, i want to remove the "clear" button and the "font face" drop down box. how do i do that? i didn't really find anything in vbshout.php
also how can i set the width/height of the vbshout box?
you might as well just tell me where to look and i'll find it myself
thanks!
balkanf
06-03-2006, 03:35 PM
ok i found how to remove those buttons
what is actually bothering me now is that i want to put a small adsense ad right on the left of the shoutbox. but it doesn't seem to work as i have to insert javascript code into the xml file, and im not sure how to do that
can someone tell me how to make the adsense code work inside xml?
thanks
B?-Y?u
06-04-2006, 01:44 AM
Is there a way to turn of the timestamps?
(didnt see them in the options)
Hi GuaRRand. I think I can help U :)
1- Now, turn on the debug mode simple by adding:
$config['Misc']['debug'] = true;
to your includes/config.php just before
/*================================================= =====================*\
|| ################################################## ##################
Read more here (https://vborg.vbsupport.ru/showthread.php?t=104933)
2- ACP -> vBulletin Options -> vBShout Options -> Add Setting:
Varname: shout_time_display
Setting Group: vBShout Options
Product: vBShout
Title: Display Time
Description: Display time on shout ?
Option Code: yesno
Data Validation Type: Boolean
Default: 1
Display Order: This is option 4 U :)
vBulletin Default: Yes
3- Open template forumhome_vbshout_shout, find
[{$Shout['time']}]
change to
<if condition="$vboptions[shout_time_display]">
[{$Shout['time']}]
</if>
Done. I hope U like it :)
mano1.com
06-04-2006, 03:36 PM
Hello,
Is there anyway I can enable censorship for the vBShout mod?
Thanks,
Justin.
I want to know this as well - please let me know!
Fantastic extension! I can't believe i didn't click install earlier :o
I want to know this as well - please let me know!
It should automatically use the censorship settings defined in vboptions :)
I am still getting an error when uploading product xml
any real replies to how to fix this
XML Error: unknown at Line 0
Evil Chris
06-08-2006, 03:37 PM
is there no way to install this Shoutbox vertically rather than horizontally?Bueller?
redlabour
06-08-2006, 03:45 PM
Will it work in the Feature with vBulletin 3.6 (http://www.vbulletin.com/forum/showthread.php?t=187654) ?
da420
06-08-2006, 04:17 PM
With the shoutbox enabled whenever I go and check to see if someone is online it always says thier location is the shout box. I had them go to other threads, try going to the gallery. The only thing it seems to be detecting them in is the Arcade other than the shout box. Disable it, and everything is fine. It is happening with all users.
Evil Chris
06-09-2006, 03:28 PM
It appears support for this hack is on holiday.
charlub
06-10-2006, 02:52 AM
I installed this without any trouble previously, however now that I am trying again I am running into diffiulty...
I have uploaded the php file to the root of the forum, and I have imported the xml file via admin cp - however when I click 'Shout' it comes up with page cannot be displayed with the url:
www.habbomedia.net/forum/vbshout.php?
any ideas?
vBB-vietnam
06-10-2006, 05:35 AM
I'm vietnamese and i don't shout vietnamese language. e.g: "Sao tôi không viết được tiếng việt", How to fix ?
Thank !
phalnax
06-11-2006, 06:18 AM
the shoutbox on my site just says loading...inside it and nothing ever loads.:surprised:
phalnax
06-11-2006, 07:14 AM
Anyone ?
phalnax
06-11-2006, 11:51 AM
Someone Please Help Me!
rogersnm
06-11-2006, 01:28 PM
I have vb 3.6 and i banned my self - don't ask - and now when i try to load the page it says Fatal error: Call to undefined function: isbanned() in /home/nick/public_html/global.php(360) : eval()'d code on line 113
rogersnm
06-11-2006, 01:30 PM
ok i deactivated the plugin so now i can access the homepage. Oh and i am no longer banned. And the shoutbox doesn't work.
Zachariah
06-11-2006, 05:18 PM
Effects: vBShout 2.0.1 - vBShout fixed v3.zip
There is a mistake in the main XML installer.
- Line 552
<hookname>fetch_userinfo</hookname>
Replace:
<hookname>cache_templates</hookname>
*** If installed already:
AdminCP => Plugin System => Plugin System
Hook Location : fetch_userinfo
Plugin: vBShout [Template Cache]
Edit Change:
Hook Location : cache_templates
Also in the vbshout.php file.
Add Bold:
// ---------------------------------------------------
// Start Define Important Constants
// ---------------------------------------------------
define('LOCATION_BYPASS', 1);
define('NO_REGISTER_GLOBALS', 1);
define('THIS_SCRIPT', 'vbshout');
REASON:
This will causes session.php to not update the field location in session table.
Every time the shoutbox does a refreash the session table location will change to the shotbox vs. the current page they are on.
putergirl
06-12-2006, 11:51 PM
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.
It worked thank you!!! :banana:
GuaRRand
06-16-2006, 07:30 AM
Still cant remove the date/time of the shouts :(
Tried a few solutions given here, but it wont work.
Can someone look at it for me???... i'm all out of ideas
www.glcoti.com
DjTaz
06-16-2006, 05:11 PM
Still cant remove the date/time of the shouts :(
Tried a few solutions given here, but it wont work.
Can someone look at it for me???... i'm all out of ideas
www.glcoti.com
in forumhome_vbshout_shout template
find
[{$Shout['time']}]
delete it - done.
Posof
06-17-2006, 09:12 AM
:confused:
Helloo guys i am looking now for a while here for my problem and dont find it and now i am gone ask it..
I have install this hack also in my forum and was looking for something to edite and dont now how..
Please take a look at the Attachment (Pictures) what i am looking for..
I saw this in some other forum and was wondering that i can find it here, i have read one by one all of this thread and saw nothing about to make this changes.. I there someone who can help me with this problem.
Thanks,
rogersnm
06-17-2006, 09:18 AM
Change the number of lines the the box isand turn off all the extra editor options in the admin cp and then just do a template edit and swap the buttons around.
Posof
06-17-2006, 09:30 AM
Thanks for the quick reply
But can you please help me with this..
Show me how i need to do it, where,what and how.
Thanks
charlub
06-17-2006, 10:07 AM
Hi there, I'm having a problem with my forum (www.habbomedia.net) when a user is clicked it says they're viewing the shoutbox instead of saying 'viewing homepage' is there a way I can change this?
Thanks!
rogersnm
06-17-2006, 10:29 AM
Can you give me vB options and template access? pm me.
rogersnm
06-17-2006, 10:30 AM
yes, you can edit a plugin, do you mean when they type in the shoutbox window?
Hi there, I'm having a problem with my forum (www.habbomedia.net (http://www.habbomedia.net)) when a user is clicked it says they're viewing the shoutbox instead of saying 'viewing homepage' is there a way I can change this?
Thanks!
Can anyone who has been using vbshout for a long time recommend a hosting company that wont make you remove the script for overloading their server!
Thanks
rogersnm
06-17-2006, 10:36 AM
srlnet.com, hostgator.com
i use srlnet.com and my mate uses hostgator.com
DjTaz
06-17-2006, 02:38 PM
Can anyone who has been using vbshout for a long time recommend a hosting company that wont make you remove the script for overloading their server!
Thanks
If you disable smiles for the shoutbox and turn on the autoprune hack (somewhere in this thread) it tends to reduce the server load quite a bit.
rogersnm
06-17-2006, 02:43 PM
It's all very well saying somewhere around here but with 126 pages and 1184 posts that may be a bit hard.
DjTaz
06-17-2006, 02:45 PM
It's all very well saying somewhere around here but with 126 pages and 1184 posts that may be a bit hard.
I think thats why theres a SEARCH THIS THREAD option just under the initial post - makes it easier to find what you want WITHIN a thread
rogersnm
06-17-2006, 02:47 PM
ok , i take NO credit for this:
Upload the attached file to includes/cron and then make a schedualed task to run at midnight once a day (0 0 * * *) with the file ./includes/cron/vbshout_prune.php and fill out the other fields with what ever you want. It will prune all shouts more than 24 hours old.
Snake
06-17-2006, 02:51 PM
Thanks for that! Really helpful!
rogersnm
06-17-2006, 02:51 PM
no probs
sinucello
06-17-2006, 03:30 PM
Hi,
very nice hack, thank you very much! I use it as a chat as my members are not very experienced with computers and the internet so they need something comfortable and easy. The drawback are the many SQL-Queries and requests for vbshout.php.
I think I`m going to change the hack so that the shoutbox will only appear when you click on a link on the startpage and then the startpage is called with an additional &showShoutbox=1 parameter.
Ciao,
Sacha
rogersnm
06-17-2006, 04:12 PM
i could make that for you :)
just add a plugin to forumhome and adjust the template alteration add another option in the admin cp and done. :)
sinucello
06-17-2006, 04:38 PM
Hi,
i could make that for you :)
nice, please send me your offer. But only if you agree that your modification will be made available for the public here in this thread.
all the best,
Sacha
rogersnm
06-17-2006, 04:44 PM
what, yeah sure. Or another thread linked as an addon to this.
Posof
06-17-2006, 04:50 PM
:confused:
Helloo guys i am looking now for a while here for my problem and dont find it and now i am gone ask it..
I have install this hack also in my forum and was looking for something to edite and dont now how..
Please take a look at the Attachment (Pictures) what i am looking for..
I saw this in some other forum and was wondering that i can find it here, i have read one by one all of this thread and saw nothing about to make this changes.. I there someone who can help me with this problem.
Thanks,
Please can someone help me with this... :confused: :confused:
https://vborg.vbsupport.ru/showthread.php?p=1009494#post1009494
rogersnm
06-17-2006, 04:51 PM
yes, i can. Can you give me full admin access and pm me the details.
Regards,
Nick.
ps. do the buttons have to be below the shoutbox or can they be above?
Posof
06-17-2006, 05:25 PM
yes, i can. Can you give me full admin access and pm me the details.
Regards,
Nick.
ps. do the buttons have to be below the shoutbox or can they be above?
Ok see your Pm..
charlub
06-17-2006, 06:14 PM
No, when someone is actually viewing the homepage, because the shoutbox is on the homepage when you click a users profile on the action it says they're viewing the shoutbox instead of the homepage, I really don't know how to fix this! lol
yes, you can edit a plugin, do you mean when they type in the shoutbox window?
rogersnm
06-17-2006, 06:45 PM
yes, so when they are typing in the shoutbox. Just edit the WOL plguin.
Snake
06-17-2006, 06:55 PM
No, when someone is actually viewing the homepage, because the shoutbox is on the homepage when you click a users profile on the action it says they're viewing the shoutbox instead of the homepage, I really don't know how to fix this! lol
Yes I am having the same problem. How do I fix this bug or at least is there a way to get rid of it or disable this function?
charlub
06-17-2006, 07:15 PM
but they're not typing in the shoutbox, it's just because it's on the homepage it says they're viewing shoutbox instead of homepage, they are not even touching the shoutbox. :(
yes, so when they are typing in the shoutbox. Just edit the WOL plguin.
rogersnm
06-17-2006, 07:16 PM
ok, so edit the plugin.
i'll work out where after i finish this paid request.
charlub
06-17-2006, 07:26 PM
ok, thanks rogersnm.
rogersnm
06-18-2006, 04:48 PM
try disabling the plugin "WOL Config [Part A]" that should work.
2fast4ya
06-19-2006, 05:47 AM
quick question, what's the commands for admins? i can't find them anywhere
GoNz00
06-19-2006, 10:07 AM
https://vborg.vbsupport.ru/showpost.php?p=958674&postcount=1624
:banana: :banana: :banana:
i missed that post, worked a treat thankyou very much :)
should stop the spamm0rs moaning for a few hours :)
rogersnm
06-19-2006, 03:09 PM
/prune is the only one i know.
charlub
06-19-2006, 04:35 PM
/prune to prune the full shoutbox
/prune WHOLESHOUTMESSAGE - deleted just the one you want
/prune username
/me
quick question, what's the commands for admins? i can't find them anywhere
rogersnm
06-19-2006, 04:43 PM
yeah, i know all of that.
Will it work in the Feature with vBulletin 3.6 (http://www.vbulletin.com/forum/showthread.php?t=187654) ?
It works on my test board running vb 3.6 beta 2, but using the image tags within it doesn't. It effectively ignores them, and just changes the location into a link. It's one of the only things holding me back from upgrading, but i'll live until there's a proper release of 3.6, methinks.
danb00
06-20-2006, 06:34 AM
dude are there any fixes for use safari users?
hassi
06-21-2006, 09:43 AM
i also have word wrap installed but it ends like this:
link]link[/url]
code replacement should be correct.
can someone help me?
you see, first bracket is missing before the link]. i understand this should be [url] instead of link]
my code lines are as follows (sir yaros replacement):
$Shout['s_shout'] = ereg_replace("[a-zA-Z]+://([-]*[.]?[a-zA-Z0-9_/-?&%])*", "link (\\0)", $Shout['s_shout']);
$Shout['s_shout'] = ereg_replace("(^| )(www([-]*[.]?[a-zA-Z0-9_/-?&%])*)", "\\1link (http://\\2)", $Shout['s_shout']);
inserted just before
$Shout['time'] = buildTime($Shout['s_time']);
second insert done is:
if ($Shout['s_shout'])
{
$Shout['s_shout'] = wordwrap($Shout['s_shout'], 80 , "\n" ,1);
}
just after:
if ($Shout['data']['italic'])
{
$Shout['style'] .= 'font-style:'.$Shout['data']['italic'].';';
}
i made both inserts in the vbshout.php in 2 places. once for the grabbing of latest shouts and as well as for the displayed archive.
where's the error ?
rogersnm
06-21-2006, 03:48 PM
The img errors can be fixed with a fwe tempalte eidts and seeing as zt is currently a bit busy with other things and was "Last Online: Jan 2006" Then i don't think that will be coming out any time soon.
cclaerhout
06-21-2006, 08:19 PM
Strange, this hack was working with vB 3.6 beta 2, but not with beta 3. Can you confirm ?
Edit : sorry, i've a mistake. This is working :D
onewaydom
06-23-2006, 06:00 PM
Hello,
how can i remove the date and everything in the brackets before the name. I understand that I have to take out some php code, but I am not sure which section.
Snake
06-23-2006, 06:33 PM
try disabling the plugin "WOL Config [Part A]" that should work.
OK I tried doing that but I'm getting this error.
Unknown Location
/shoutbox.php
Snake
06-23-2006, 06:46 PM
Also when I input " in the shoutbox, it gives me its broken code. Which is ".
Flumples
06-23-2006, 11:36 PM
When you type a < it comes out as <
Anyway to stop this from happening? x
Snake
06-24-2006, 01:44 PM
Nevermind fixed it myself.
Flumples, try and look at this post (https://vborg.vbsupport.ru/showpost.php?p=958674&postcount=1624) to get that issue of yours resovled! ;)
Snake
06-24-2006, 03:45 PM
OK I tried doing that but I'm getting this error.
https://vborg.vbsupport.ru/showpost.php?p=1014916&postcount=1915
Anyone? :)
Footy
06-24-2006, 03:47 PM
It's the best shoutbox that i ever seen.
Ive had installed to. But its a great weight on data, becuase its refreshing a lot. Is there a possibility to change some coding so the shoutbox not refreshing so match anymore?
rogersnm
06-24-2006, 07:23 PM
Part A: if ($userinfo['activity'] == 'vbshout')
{
$handled = true;
$userinfo['action'] = 'Viewing Index';
$userinfo['where'] = "<a href=\"index.php?{$vbulletin->session->vars['sessionurl_q']}\">$vboptions[bbtitle] Forum</a>";
}
rogersnm
06-24-2006, 07:45 PM
Part B: if ($filename == 'vbshout.php')
{
$userinfo['activity'] = '$vboptions[bbtitle] Forum';
}
winpro19
06-25-2006, 08:49 PM
Hello
I installed this hack but am having a few problems.
Everyone someone puts a quote ("), it says " "". Also, there are certain other symbols that mess up the shoutbox. Any idea why? The thing is that when I disable vBcode/Similes, it works fine. But i want to use similes and also allow the quotes/different symbols. Thanks and would appreciate any help
da420
06-25-2006, 09:21 PM
Also when I input " in the shoutbox, it gives me its broken code. Which is ".
When you type a < it comes out as <
Anyway to stop this from happening? x
Hello
I installed this hack but am having a few problems.
Everyone someone puts a quote ("), it says " "". Also, there are certain other symbols that mess up the shoutbox. Any idea why? The thing is that when I disable vBcode/Similes, it works fine. But i want to use similes and also allow the quotes/different symbols. Thanks and would appreciate any help
https://vborg.vbsupport.ru/showpost.php?p=958674&postcount=1624
:banana: :banana: :banana: :banana: :banana: :banana: :banana: :banana: :banana: :banana:
(There's also a search this thread feature that can be used to find this answer)
winpro19
06-25-2006, 10:37 PM
Thanks a lot...and sorry didn't know how to use the "Search This Thread feature" (still don't know :P)
Thanks though.
Ohiosweetheart
06-26-2006, 02:13 AM
will you be upgrading the sb to 3.6 ?
ubblite
06-28-2006, 12:29 AM
Hello
I installed this hack but am having a few problems.
Everyone someone puts a quote ("), it says " "". Also, there are certain other symbols that mess up the shoutbox. Any idea why? The thing is that when I disable vBcode/Similes, it works fine. But i want to use similes and also allow the quotes/different symbols. Thanks and would appreciate any help
The weird thing is, everything was fine until I upgraded to vb3.6 Beta and then I had the same problem you mentioned, but this fixed it:
https://vborg.vbsupport.ru/showpost.php?p=958674&postcount=1624
will you be upgrading the sb to 3.6 ?
It's working great under vb3.6 beta 3 for me - with the fix mentioned above.
SiriusBlack22
06-28-2006, 03:09 AM
How do I put it in ONE forum?
mrcrx
06-28-2006, 11:06 PM
Is there a limit on how many numbers/letters can be posted. today someone shouted just about 1000 ban me and it locked the shoutbox up and froze my site till I shut the box off. It was very hard for me to get it to load and start working again. Anyone have any ideas. Im running 3.5.3.
grains
06-29-2006, 02:05 PM
Did someone post a fix for this yet?
"Warning: Invalid argument supplied for foreach() in /vbshout.php on line 293"
rogersnm
06-29-2006, 03:03 PM
Yeah you get that when you ban someone of vb3.6 :'(
mrcrx
06-29-2006, 08:51 PM
can someone tell me where I can find the file vbshout.xml. someone is helping me with my problem but Icant find the folder and there mailbox is full. thanks guys.
Shazz
06-30-2006, 04:21 AM
shoutbox always seems so sloow.
________
BMW S85 (http://www.bmw-tech.org/wiki/BMW_S85)
Gary King
06-30-2006, 12:21 PM
Is there a way to limit the number of characters a person can post in the shout box?I'd like to know how to do this as well.
Thanks!
Londonladadz
07-04-2006, 02:12 PM
hey i have installed the shoutbox but all it does is say Loading, can anyone help?
rogersnm
07-04-2006, 03:03 PM
have you thought about waiting for it to load? :p..
It sounds like theres to much server load or something like that..
try reinstalling..
what version of vb do you have?
Oo Drizzle oO
07-04-2006, 03:11 PM
Ok, I installed this, But its not working for me. Someone please help me. This is what it is doing. I uploaded the everything right, (I Hope). Then I went over to the Admin CP, and I imported it. But The Shoutbox comes up, But it doesnt load. All It does is say Loading... But it never loads. Can someone please tell me whats wrong and how to fix it. And also, In this . Is there a option so I would be able to disable redirections. Because On my friends site, It happened a lot. So please, Someone Help. :) Thx in advance.
EDIT: I also waited for it to load for 3 hours, NOthing happened. I try installing it over and over, Still nothing.
Londonladadz
07-04-2006, 03:11 PM
have you thought about waiting for it to load? :p..
It sounds like theres to much server load or something like that..
try reinstalling..
what version of vb do you have?
I have waited for ages :P
I have uninstalled and reistall numorus times
I have version 3.5.4
No one has ever posted on my VBshout as all it does is load :)
Anyone have any ideas?
And it looks like Oo Drizzle oO is having the same problem as me ;o
Londonladadz
07-05-2006, 06:26 AM
I have waited for ages :P
I have uninstalled and reistall numorus times
I have version 3.5.4
No one has ever posted on my VBshout as all it does is load :)
Anyone have any ideas?
And it looks like Oo Drizzle oO is having the same problem as me ;o
Sorry i have to bump this anyone have any ideas :(
DjTaz
07-05-2006, 07:48 AM
<a href="https://vborg.vbsupport.ru/showthread.php?p=878892&highlight=Loading#post878892" target="_blank">https://vborg.vbsupport.ru/showt...ing#post878892</a>
Maybe check that out for the loading issue - make sure the php file in the correct directory.
Londonladadz
07-05-2006, 08:21 AM
https://vborg.vbsupport.ru/showthread.php?p=878892&highlight=Loading#post878892
Maybe check that out for the loading issue - make sure the php file in the correct directory.
VbShout.php has always been in my forum root directory ;o
/forum Directory
rogersnm
07-05-2006, 03:02 PM
Then it should work fine. I would say it's your host..
eViL_sTiGmA
07-06-2006, 03:39 PM
Hi... i was wondering... is there a way to disable the /me command???
Great Add-on =D
doggy1
07-06-2006, 05:59 PM
How does one delete shouts?
Thanks.
One of the screenshots shows the shoutbox with the messages being timestamped. However, in mine there are no timestamps next to the messages
How do I add this?
rogersnm
07-06-2006, 06:01 PM
just download the latest version
it has this included...
/prune - deletes all shouts
/prune [username] - deletes all [username]'s shouts
and there is another /prune but i never got the hang of that..
4nmedia
07-06-2006, 07:52 PM
How do you delete a specific shout by someone?
da420
07-06-2006, 07:54 PM
How do you delete a specific shout by someone?
Go to the shout archive and you can delete it from there by simply clicking delete.
One of the screenshots shows the shoutbox with the messages being timestamped. However, in mine there are no timestamps next to the messages
How do I add this?
Anyone know the answer to this?
4nmedia
07-06-2006, 07:58 PM
Thanks da420. This mod is great but its only missing one thing, the swear filter. Is there any way to incorporate the censorship system into the shouts?
doggy1
07-06-2006, 08:00 PM
Go to the shout archive and you can delete it from there by simply clicking delete.
Where do I find the shout archive?
If you are referring to actual shoutbox I do not see a delete button.
4nmedia
07-06-2006, 08:02 PM
Click the word "SHOUTBOX", its a link to the archive
flushingcomic
07-08-2006, 12:39 AM
cool. it works with 3.6.0 B4 with no problems.
Thanks alot
4nmedia
07-08-2006, 03:23 AM
Is there anyway to incorporate the censor system into the shout box?
One of the screenshots shows the shoutbox with the messages being timestamped. However, in mine there are no timestamps next to the messages
How do I add this?
Would someone please mind answering this question if possible. Thanks.
Iain M
07-09-2006, 12:56 PM
Is there anyway to incorporate the censor system into the shout box?
it should already censor words that have been placed on the censored words list... it censors words on my forum in the shoutbox...
Would someone please mind answering this question if possible. Thanks.
it should be timestamed by defualt ... no additional editing should have to be done... it's timestamed on my forum, i didn't have to edit it...
4nmedia
07-09-2006, 08:10 PM
I have the censor system active and it doesnt filter out my words.
it should be timestamed by defualt ... no additional editing should have to be done... it's timestamed on my forum, i didn't have to edit it...
Well mine isn't and I haven't edited anything so there is something amiss. This is a default installation but there is no timestamp on the messages.
For some reason my vbShout options page is different as well. It doesn't have the edit and delete links like in the screenshot.
Ronin Storm
07-10-2006, 11:47 AM
This post previously gave details of an apostrophe bug fix.
I have discovered a bug in the fix. Details of the old post plus the new bug fix can be found at:
https://vborg.vbsupport.ru/showthread.php?p=1036512#post1036512
Iain M
07-10-2006, 12:02 PM
I have the censor system active and it doesnt filter out my words.
try reimporting the product and uploading the files again
Well mine isn't and I haven't edited anything so there is something amiss. This is a default installation but there is no timestamp on the messages.
For some reason my vbShout options page is different as well. It doesn't have the edit and delete links like in the screenshot.
try reimporting the product and uploading the files again for the first problem...
for the second problem, http://www.yourdomain.com/vbshout.php?do=archive is where you should see the delete and edit...
Rio Grande
07-10-2006, 06:42 PM
I searched in the tread but I found nothing to limit de number of Shouts in the historic.
Must I delete them manually or somebody make à hack for this ?
(excuse me for my bad english)
Iain M
07-10-2006, 09:31 PM
you can't set a limit, but you can prune all the shouts by using the /prune command...
Ronin Storm
07-10-2006, 10:10 PM
I searched in the tread but I found nothing to limit de number of Shouts in the historic.
Must I delete them manually or somebody make ? hack for this ?
No limits, certainly, but if you're needing a constant pruning of your shoutbox then this post (earlier in this thread) will give you a link to a simple PHP file that you can run through vB's cron system to prune on a schedule.
Hornstar
07-11-2006, 12:00 AM
It would be good if we could set what commands the mods and smods and admins are allowed to use.
lightwave
07-11-2006, 02:47 AM
i've been warned that thing system uses a lot of resources. my shoutbox gets about 1,500 shouts a day...how big of a server issue is that? in terms of bandwidth and resources.
Shazz
07-11-2006, 03:15 AM
Clear the shouts every night ^ ;)
________
Toyota Hiace (http://www.toyota-wiki.com/wiki/Toyota_Hiace)
try reimporting the product and uploading the files again
try reimporting the product and uploading the files again for the first problem...
for the second problem, http://www.yourdomain.com/vbshout.php?do=archive is where you should see the delete and edit...
Tried reimporting and still have the same problem - no timestamps on the shouts.
Also, you have misunderstood my second problem. On the first screenshot in this thread it shows the vbShout options in the adminCP. By the side of some of those options are edit and delete links. I don't have those links. I am not referring to the ones in the shoutbox archive.
malady
07-11-2006, 09:17 AM
ok not sure if this is covered anywhere. I tried searching to no avail. I use VB 3.5 Black style and the default text is black over a black background. I cant find anywhere in the css to change the default text to white. Any ideas?
peterska2
07-11-2006, 10:57 AM
Also, you have misunderstood my second problem. On the first screenshot in this thread it shows the vbShout options in the adminCP. By the side of some of those options are edit and delete links. I don't have those links. I am not referring to the ones in the shoutbox archive.
Thats not a problem, the screenshot was taken in the development (debug) mode where additional developer options are available. As the majority of admins have no need for these options (and it's not a good idea to have it on on your live board anyway) they are hidden by default.
Thats not a problem, the screenshot was taken in the development (debug) mode where additional developer options are available. As the majority of admins have no need for these options (and it's not a good idea to have it on on your live board anyway) they are hidden by default.
Oh ok.
Still doesn't explain why my default install of vbShout doesn't have any timstamps in the shoutbox unlike the 3rd screenshot at the top.
Rio Grande
07-11-2006, 04:18 PM
No limits, certainly, but if you're needing a constant pruning of your shoutbox then this post (earlier in this thread) will give you a link to a simple PHP file that you can run through vB's cron system to prune on a schedule.
very nice thanks for de answer, I have just to set the time I want it's perfect ! A shout limit is better but it's better then nothing.
I have jute one question left, if I run the file, the total of the shout for the users remain the same ?
Ohiosweetheart
07-11-2006, 07:57 PM
Is anyone running this on 3.6 yet?
Gary King
07-12-2006, 06:47 AM
No one knows this? Any help would be greatly appreciated.
I'd like to also know how to close the shoutbox by default.
Ronin Storm
07-12-2006, 08:54 AM
I have jute one question left, if I run the file, the total of the shout for the users remain the same ?
No. The shoutbox totals are calculated live on archive page view, so if a user only has made 20 shouts since the last cron-prune then that's all they will have listed.
However, that works really well for my boards because the users use post count as a measure of "board contribution" and shoutbox counts as a measure of "how much free time did you have in the past week" (I prune older than 7 days). I use the shoutbox to catch all the drivel that might otherwise have made it onto the boards proper.
Alien
07-12-2006, 09:44 PM
Is anyone running this on 3.6 yet?
Works fine on 3.6.
foopy
07-13-2006, 12:35 AM
Is anyone running this on 3.6 yet?
I have it on 3.6 b4. Running fine. No problems whatsoever.
Citizen E
07-13-2006, 02:05 AM
I received an error when changing some of the options, but it works well with the default settings. Although it doesn't render quotation marks.
haris_led
07-13-2006, 09:40 PM
Hello, can someone tell me how may I make vbshout to log all the shouts in a file, or page?
I do not mean the archive page, but something more simple, do you have something in mind?
Thank you :)
ashley53680
07-13-2006, 10:07 PM
I have installed vbshout on our forum. It's working except that I banned certian usergroups from viewing the posts. When I am not logged in, as a guest, I keep getting an error in that section.
Warning: array_reverse(): The argument should be an array in /vbshout.php on line 287
Warning: Invalid argument supplied for foreach() in /vbshout.php on line 293
Anyone know what could be wrong? Thanks!
Ashley
hohleweg
07-14-2006, 08:46 PM
Hello If I click on "Shoutbox" happened nihts, I come not into the menu that can lie? www.buggy125.de
thanks
greeting jo
Gewow
07-14-2006, 11:18 PM
i didnt search through these 130+ pages, but when you type > or < in the shoutbox, the actual html code for that character shows up...i.e. > and <
any way to fix that?
haris_led
07-14-2006, 11:35 PM
i didnt search through these 130+ pages, but when you type > or < in the shoutbox, the actual html code for that character shows up...i.e. > and <
any way to fix that?
https://vborg.vbsupport.ru/showthread.php?p=958674#post958674;) :cool:
hohleweg
07-16-2006, 08:22 PM
... look at post 1980 i need help
when i klick to "shotbox" nothing happend! why??
thanks
jo
thisgeek
07-18-2006, 05:33 AM
Awesome - the vBShout_V3 fix that was posted quite awhile back works fine. Have no entity issues.
Also, Ronin Storm's Apostrophe fix works like a charm. Thanks!
Watched
07-18-2006, 07:40 AM
i have a glitch to report.. and hopefully find a resolution to.. when i set vbshout to include the not logged in/unreg'd members to the banned usergoups list.. i see this error when i load my forum..
Warning: Invalid argument supplied for foreach() in /vbshout.php on line 293
.. yet when i log in.. it works fine.. any way to replace that error with either a blank box.. as i had set in the options.. ?
Trana
07-19-2006, 04:09 AM
Has anyone tried to create multiple shoutboxes for the same forum? For example, I'd like the ability to have a private shoutbox in the admin forum.
Any idea how to do this?
Thanks!
TheBlackPoet
07-19-2006, 05:03 AM
i love the shoutbox... it works perfectly... but is there a way to delete the old content in bulk vs. individually??
devilrulez
07-19-2006, 05:39 AM
How can i allow my Super moderators to ban users from shoutbox?
Ohiosweetheart
07-19-2006, 12:02 PM
i love the shoutbox... it works perfectly... but is there a way to delete the old content in bulk vs. individually??
sure is. In the line where you type your messages, just type /prune and hit shout or your enter key.
louis_chypher
07-19-2006, 02:59 PM
sure is. In the line where you type your messages, just type /prune and hit shout or your enter key.
or you can use auto prune (https://vborg.vbsupport.ru/showthread.php?p=885260&highlight=cron#post885260)
Watched
07-19-2006, 09:03 PM
no help on the bug i posted above?
i have a glitch to report.. and hopefully find a resolution to.. when i set vbshout to include the not logged in/unreg'd members to the banned usergoups list.. i see this error when i load my forum..
Warning: Invalid argument supplied for foreach() in /vbshout.php on line 293
.. yet when i log in.. it works fine.. any way to replace that error with either a blank box.. as i had set in the options.. ?
Ronin Storm
07-20-2006, 08:27 PM
Also, Ronin Storm's Apostrophe fix works like a charm. Thanks!
You're welcome. Glad someone else has had chance to make use of it and see it working okay for them. :)
gameslover
07-21-2006, 10:00 AM
I have a little problem, it seems that the symbol "€" don't want to appear in the shoutbox, have you the same problem too ? Is there a way to fix that ?
Thanks :)
haris_led
07-21-2006, 10:17 AM
Hello, my members suggested me to put somewhere a link to the smilies.
So, i think there is somethink that we do not use, the word "emotions" when smlies button is clicked. :)
http://img85.imageshack.us/my.php?image=picture4ag0.png
You can edit the template forumhome_vbshout and find the word Emoticons, it is in the 13th line in the default template:)
You can replace that with:
<a href='http://www.MYSITE.com/forum/misc.php?do=showsmilies'>Emoticons</a>
Enjoy! :D:D
Rickie3
07-23-2006, 12:25 AM
version 5.0 of shout?
leestrong7
07-23-2006, 06:26 AM
Great modification!
ed2k_2
07-23-2006, 03:59 PM
Hi guys,
It's seem that I intalled it perfectly except that the smiles don't appear on the shoutbox panel. What maybe the cause why smilies don't appear?
Thanks
Ambie
07-24-2006, 08:48 AM
My host made me take this out because they said the server load was to high. Now we are all depressed.:( Anyone know of any good host that will let me run this?
Ronin Storm
07-24-2006, 12:13 PM
My host made me take this out because they said the server load was to high.
The server load for this is shockingly high. Unless you own your own server then you can probably kiss this mod goodbye.
Ambie
07-24-2006, 12:19 PM
The server load for this is shockingly high. Unless you own your own server then you can probably kiss this mod goodbye.
Yeah, after checking with several other hosts this morning. I realize this. No one seems to want this or any other real time chat applications. Oh well.:( Reluctantly clicking uninstall. :cry:
Ronin Storm
07-24-2006, 12:22 PM
This post replaces my previous post on this subject, which I have (or will very shortly) edit to include a pointer direct to this post. Please see the bottom of this post for a bug fix to the original post.
BEGIN PREVIOUS POST:
Not seen this fix mentioned in the past 30 or so pages, nor does it come up on a thread search, so hopefully this is useful to some of you.
The Apostrophe Bug
The problem is that when you type a shout with one or more apostrophes in it when you go to edit that shout only the text up to but not including the first apostrophe appears. This is because, behind the scenes, the shouts are held in blocks delimited by apostrophes... so an apostrophe in the text truncates the result returned.
I've been running this hack-fix for around a week on a live board that receives 1000 or so shouts per week and I've not had any trouble.
In vbshout.php, on approx line 223, find:
$Shout['s_shout'] = bbcodeparser($Shout['s_shout']);
... replace with:
$Shout['s_shout'] = bbcodeparser(str_replace("'", "'", $Shout['s_shout']));
On approx line 338, find:
$vbulletin->GPC['shout'] = convert_urlencoded_unicode($vbulletin->GPC['shout']);
... replace with:
$vbulletin->GPC['shout'] = convert_urlencoded_unicode(str_replace("'", "'", $vbulletin->GPC['shout']));
On approx line 409, find:
$Shout['s_shout'] = bbcodeparser($Shout['s_shout']);
... replace with:
$Shout['s_shout'] = bbcodeparser(str_replace("'", "'", $Shout['s_shout']));
In essence, this replaces instances of apostrophes with the entity reference ' for storage and then converts the entity references back to apostrophes just in time to be displayed.
Please note that I've used the various fixes (and fixes of those fixes) to remove the injection issues highlighted by staffers here. If you're getting " instead of " in your shoutbox then you've probably not applied the fixes described in this thread on the posted "fixed" vbShout code and you probably should not use this hack-fix until you have.
Please let me know if you have any problems with this fix.
(ZT seems to be on indefinite leave so I've bypassed the bug reporting / waiting for response cycle so that people can try this out. I hope I don't offend anyone by this!)
END PREVIOUS POST.
BUG FIX (24 July 2006)
I discovered that there is an issue. Roughly, the issue occurs when you post a shout that has apostrophes, then go to edit it, submit that edit (which also has apostrophes in it) and then edit it again. The second edit retains the original apostrophe bug. This is because the AJAX edit was not also protected in the same way as the original shout.
The changes below should resolve this issue.
In vbshout.php, on approx line 518. find:
$vbulletin->GPC['shout'] = convert_urlencoded_unicode($vbulletin->GPC['shout']);
Replace with:
$vbulletin->GPC['shout'] = convert_urlencoded_unicode(str_replace("'", "'", $vbulletin->GPC['shout']));
On approx line 524, find:
$Shout['s_shout'] = bbcodeparser($Shout['s_shout']);
Replace with:
$Shout['s_shout'] = bbcodeparser(str_replace("'", "'", $Shout['s_shout']));
And that should be okay now. I believe. :)
Let me know if you have any issues with it!
thisgeek
07-24-2006, 12:54 PM
Thanks for the bugfix.
The only thing I've done differently is to change the ' symbol to " &_#39;" (added an underscore cuz the post converts it to an apostrophe) because I read somewhere that ' may not work in IE.
I've also come across an issue (not related to the Apostrophe fix) where normal users can't edit or delete their own shouts. It appears to work, but nothing happens. If this is happening to you, here's the fix:
Edit vbshout.php:
In the function:
// ---------------------------------------------------
// AJAX Edit Shout
// ---------------------------------------------------
Find this line:
if ($Shout['sid'] != $vbulletin->userinfo['userid'] && !can_moderate())
and change it to:
if ($Shout['s_by'] != $vbulletin->userinfo['userid'] && !can_moderate())
In the function:
// ---------------------------------------------------
// AJAX Delete Shout
// ---------------------------------------------------
Find the line:
if ($Shout['sid'] != $vbulletin->userinfo['userid'] && !can_moderate())
and change it to:
if ($Shout['s_by'] != $vbulletin->userinfo['userid'] && !can_moderate())
Hope this helps.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.