View Full Version : [AJAX] vBShout v2 on your vBadvanced CMPS v2!
FleaBag
10-03-2005, 10:00 PM
This is not essentially my hack, it's a group effort originating in the vBadvanced (http://www.vbadvanced.com/forum/showthread.php?t=9818) forums.
The following instructions will allow you to add vBShout v2.0 (https://vborg.vbsupport.ru/showthread.php?t=93097) by Zero Tolerance (https://vborg.vbsupport.ru/member.php?u=48782) as a fully collapsible module to your vBadvanced CMPS (http://www.vbadvanced.com/products.php?do=productinfo&p=4) homepage v2.0.0, and remove it from your Forum Home [if you want]. Note, you must have both the vBShout product and CMPS installed with vBulletin 3.5.0 - it may work with Betas, but I really don't know.
This is a group effort from a few guys over at the vBadvanced forums, which includes Scotty2k (http://www.vbadvanced.com/forum/member.php?u=15640) and vbusers11 (http://www.vbadvanced.com/forum/member.php?u=8752) - I take no credit for this, I just spotted a problem with how the vBa forums was parsing postbits there. Plus the integration wasn't getting much attention over there and it would be a shame for users of vBShout and vBadvanced to miss out on this. :)
1) Create a new template based module called 'Shoutbox' in CMPS [ACP > vBa CMPS > Add Module > Template].
2) In 'Column', choose 'Center Column'.
3) Set 'Active' and 'Update All Pages' to Yes [assuming you want it to be active, and update all pages].
4 a) TO ADD AS A CENTRE MODULE - IF YOU DO THIS DO NOT FOLLOW STEPS B OR C!
In 'Template Content', paste the following code [this relies on you running your CMPS & vB in the same folder]. This will add a template to the selected Style called 'adv_portal_vbshout'.
<td class="alt1" align="left" width="100%">
<form action="vbshout.php?{$session['sessionurl']}" method="post" name="vbshoutform" onsubmit="return postShout(this)">
<input type='hidden' name='do' value='shout' />
<input type='hidden' name='color' />
<input type='hidden' name='fontFamily' />
<input type='hidden' name='fontWeight' />
<input type='hidden' name='textDecoration' />
<input type='hidden' name='fontStyle' />
<if condition="!$vboptions[shout_editor_position]">
<if condition="$bbuserinfo[userid] > 0">
<table width='100%' border='0' cellpadding='0' cellspacing='0'>
<tr>
<td width='100%'>
<input type="text" name="shout" style="width: 90%" class="bginput" />
</td>
<td style='white-space:nowrap' width='1%'>
<input type="submit" value="Shout" class="button" />
<if condition="$vboptions[shout_extra_options]">
<input type='button' class='button' value='Clear' onclick='sb_Clear()' />
</if>
</td>
</tr>
</table>
<div style="height: 2px"></div>
</if>
</if>
<div id="vbshout" style="overflow:auto;height:{$vboptions['shout_box_height']}px;width:100%;">
Loading...
</div>
<if condition="$vboptions[shout_editor_position]">
<if condition="$bbuserinfo[userid] > 0">
<div style="height: 2px"></div>
<table width='100%' border='0' cellpadding='0' cellspacing='0'>
<tr>
<td width='100%'>
<input type="text" name="shout" style="width: 90%" class="bginput" />
</td>
<td style='white-space:nowrap' width='1%'>
<input type="submit" value="Shout" class="button" />
<if condition="$vboptions[shout_extra_options]">
<input type='button' class='button' value='Clear' onclick='sb_Clear()' />
</if>
</td>
</tr>
</table>
</if>
</if>
</form>
</td>
<script type='text/javascript'>
<!--
postingShout = false
function requestShouts()
{
if (!postingShout)
{
ShoutRequest = new vB_AJAX_Handler(true)
ShoutRequest.onreadystatechange(showShouts)
ShoutRequest.send('vbshout.php', 'nocache=' + (5 * Math.random() * 1.33) )
}
}
function showShouts()
{
if (ShoutRequest)
{
if (ShoutRequest.handler.readyState == 4 && ShoutRequest.handler.status == 200 && ShoutRequest.handler.responseText)
{
Shouts = fetch_object('vbshout')
Shouts.innerHTML = '<table cellpadding="1" cellspacing="3" border="0" width="95%" align="left">' + ShoutRequest.handler.responseText + '</table>'
setTimeout('requestShouts()', 10000)
<if condition="$vboptions[shout_messages_order]">
document.getElementById('vbshout').scrollTop = 99999;
</if>
}
}
}
function sb_CollectHV(sbForm)
{
rString = ''
inputObjs = sbForm.getElementsByTagName('input')
for (i = 0; i < inputObjs.length; i++)
{
if (inputObjs[i].type == 'hidden' && inputObjs[i].value != '')
{
rString += '&' + inputObjs[i].name + '=' + PHP.urlencode(inputObjs[i].value)
}
}
return rString
}
function postShout(formObj)
{
doShout = new vB_AJAX_Handler(true)
doShout.onreadystatechange(postedShout)
if (postingShout)
{
alert('Posting in progress..')
return false
}
Shout = formObj.shout.value
if (Shout.replace(/ /g, '') == '')
{
alert('You must enter a shout!')
return false
}
doShout.send('vbshout.php', 'do=shout&shout=' + PHP.urlencode(Shout) + sb_CollectHV(document.forms['vbshoutform']))
sb_Clear()
postingShout = true
return false
}
function postedShout()
{
if (doShout.handler.readyState == 4 && doShout.handler.status == 200)
{
postingShout = false
requestShouts()
}
}
function sb_Input_SC(sProperty, setting)
{
eval('document.forms["vbshoutform"].shout.style.' + sProperty + ' = "' + setting + '"')
eval('document.forms["vbshoutform"].' + sProperty + '.value = "' + setting + '"')
}
function getSelectionValue(eSelector)
{
return eSelector.options[eSelector.options.selectedIndex].value == 'Default' ? '' : eSelector.options[eSelector.options.selectedIndex].value
}
function sb_PropChange(eSelector, sProperty)
{
sb_Input_SC(sProperty, getSelectionValue(eSelector))
}
function sb_PropChange_Button_Value(sProperty)
{
trueValue = ''
switch (sProperty)
{
case 'fontWeight':
falseValue = 'bold'
break;
case 'textDecoration':
falseValue = 'underline'
break;
case 'fontStyle':
falseValue = 'italic'
break;
}
return (eval('document.forms["vbshoutform"].' + sProperty + '.value'))? trueValue : falseValue
}
function sb_PropChange_Button(cButton, sProperty)
{
if (cButton.value.match(/\*/))
{
cButton.value = cButton.value.replace(/\s+\*/, '')
}
else
{
cButton.value = cButton.value + ' *'
}
sb_Input_SC(sProperty, sb_PropChange_Button_Value(sProperty))
}
function sb_Smilie(code)
{
document.forms["vbshoutform"].shout.value += ' ' + code
return false
}
function sb_Clear()
{
document.forms["vbshoutform"].shout.value = ''
return true;
}
function sb_Smilies(cButton)
{
if (cButton.value.match(/\*/))
{
cButton.value = cButton.value.replace(/\s+\*/, '')
}
else
{
cButton.value = cButton.value + ' *'
}
document.getElementById('shout_emo').style.display = (document.getElementById('shout_emo').style.displa y == 'none')? '' : 'none'
}
requestShouts()
-->
</script>
4 b) TO ADD AS A SIDE MODULE - ONLY FOLLOW THIS STEP IF YOU DID NOT PERFORM STEP A.
In 'Template Content', paste the following code [this relies on you running your CMPS & vB in the same folder]. This will add a template to the selected Style called 'adv_portal_vbshout'.
<td class="alt1" align="left">
<form action="vbshout.php?{$session['sessionurl']}" method="post" name="vbshoutform" onsubmit="return postShout(this)">
<input type='hidden' name='do' value='shout' />
<input type='hidden' name='color' />
<input type='hidden' name='fontFamily' />
<input type='hidden' name='fontWeight' />
<input type='hidden' name='textDecoration' />
<input type='hidden' name='fontStyle' />
<if condition="!$vboptions[shout_editor_position]">
<if condition="$bbuserinfo[userid] > 0">
<table border='0' cellpadding='0' cellspacing='0'>
<tr>
<td>
<input type="text" name="shout" style="width: 100%" class="bginput" />
</td>
<td style='white-space:nowrap' width='1%'>
<input type="submit" value="Shout" class="button" />
</td>
</tr>
</table>
<div style="height: 2px"></div>
</if>
</if>
<div id="vbshout">
Loading...
</div>
<if condition="$vboptions[shout_editor_position]">
<if condition="$bbuserinfo[userid] > 0">
<div style="height: 2px"></div>
<table border='0' cellpadding='0' cellspacing='0'>
<tr>
<td>
<input type="text" name="shout" style="width: 90%" class="bginput" />
</td>
<td style='white-space:nowrap' width='1%'>
<input type="submit" value="Shout" class="button" />
<if condition="$vboptions[shout_extra_options]">
<input type='button' class='button' value='Clear' onclick='sb_Clear()' />
</if>
</td>
</tr>
</table>
</if>
</if>
</form>
</td>
<script type='text/javascript'>
<!--
postingShout = false
function requestShouts()
{
if (!postingShout)
{
ShoutRequest = new vB_AJAX_Handler(true)
ShoutRequest.onreadystatechange(showShouts)
ShoutRequest.send('vbshout.php', 'nocache=' + (5 * Math.random() * 1.33) )
}
}
function showShouts()
{
if (ShoutRequest)
{
if (ShoutRequest.handler.readyState == 4 && ShoutRequest.handler.status == 200 && ShoutRequest.handler.responseText)
{
Shouts = fetch_object('vbshout')
Shouts.innerHTML = '<table cellpadding="1" cellspacing="3" border="0" width="95%" align="left">' + ShoutRequest.handler.responseText + '</table>'
setTimeout('requestShouts()', 10000)
<if condition="$vboptions[shout_messages_order]">
document.getElementById('vbshout').scrollTop = 99999;
</if>
}
}
}
function sb_CollectHV(sbForm)
{
rString = ''
inputObjs = sbForm.getElementsByTagName('input')
for (i = 0; i < inputObjs.length; i++)
{
if (inputObjs[i].type == 'hidden' && inputObjs[i].value != '')
{
rString += '&' + inputObjs[i].name + '=' + PHP.urlencode(inputObjs[i].value)
}
}
return rString
}
function postShout(formObj)
{
doShout = new vB_AJAX_Handler(true)
doShout.onreadystatechange(postedShout)
if (postingShout)
{
alert('Posting in progress..')
return false
}
Shout = formObj.shout.value
if (Shout.replace(/ /g, '') == '')
{
alert('You must enter a shout!')
return false
}
doShout.send('vbshout.php', 'do=shout&shout=' + PHP.urlencode(Shout) + sb_CollectHV(document.forms['vbshoutform']))
sb_Clear()
postingShout = true
return false
}
function postedShout()
{
if (doShout.handler.readyState == 4 && doShout.handler.status == 200)
{
postingShout = false
requestShouts()
}
}
function sb_Input_SC(sProperty, setting)
{
eval('document.forms["vbshoutform"].shout.style.' + sProperty + ' = "' + setting + '"')
eval('document.forms["vbshoutform"].' + sProperty + '.value = "' + setting + '"')
}
function getSelectionValue(eSelector)
{
return eSelector.options[eSelector.options.selectedIndex].value == 'Default' ? '' : eSelector.options[eSelector.options.selectedIndex].value
}
function sb_PropChange(eSelector, sProperty)
{
sb_Input_SC(sProperty, getSelectionValue(eSelector))
}
function sb_PropChange_Button_Value(sProperty)
{
trueValue = ''
switch (sProperty)
{
case 'fontWeight':
falseValue = 'bold'
break;
case 'textDecoration':
falseValue = 'underline'
break;
case 'fontStyle':
falseValue = 'italic'
break;
}
return (eval('document.forms["vbshoutform"].' + sProperty + '.value'))? trueValue : falseValue
}
function sb_PropChange_Button(cButton, sProperty)
{
if (cButton.value.match(/\*/))
{
cButton.value = cButton.value.replace(/\s+\*/, '')
}
else
{
cButton.value = cButton.value + ' *'
}
sb_Input_SC(sProperty, sb_PropChange_Button_Value(sProperty))
}
function sb_Smilie(code)
{
document.forms["vbshoutform"].shout.value += ' ' + code
return false
}
function sb_Clear()
{
document.forms["vbshoutform"].shout.value = ''
return true;
}
function sb_Smilies(cButton)
{
if (cButton.value.match(/\*/))
{
cButton.value = cButton.value.replace(/\s+\*/, '')
}
else
{
cButton.value = cButton.value + ' *'
}
document.getElementById('shout_emo').style.display = (document.getElementById('shout_emo').style.displa y == 'none')? '' : 'none'
}
requestShouts()
-->
</script>
4 c) ONLY PERFORM THIS STEP IF YOU DID NOT PERFORM STEP A!
Edit your 'forumhome_vbshout_shout' template [ACP > Styles & Templates > Style Manager > YOUR DEFAULT STYLE > forumhome_vbshout_shout], and replace it's contents with the following.
<tr>
<td align="left" valign="top">
<span class="smallfont">
<if condition="!$Shout[s_me]">
<if condition="$Shout[s_by]">
<a href='member.php?{$session['sessionurl_q']}u={$Shout['s_by']}'>
</if>{$Shout['username']}<if condition="$Shout[s_by]"></a></if>:
</if>
<if condition="!$Shout[s_me]">
{$Shout['s_shout']}
<else />
<span class='highlight'>
*{$Shout['username']} {$Shout['s_shout']}*
</span>
</if>
</span>
</td>
</tr>
5) In the 'Module Shell Template Options' section when adding a template, add the following URL in 'Module Link'.
http://www.mysite.com/vbshout.php?do=archive
The above, again assumes you have CMPS & vBa running in the same folder. Replace www.mysite.com with the address of your website.
If your CMPS & vB are not installed in the same folder, you will need to replace all instances of 'vbshout.php' in the template and in 'Module Link' with the path to where you have vBShout installed in relation to your CMPS. For example if you have CMPS installed in the root folder, and vBshout within a folder called 'forum' you would need to replace all instances of 'vbshout.php' with '/forum/vbshout.php'.
Removing vBShout from your Forum Home - IF YOU FOLLOWED STEP 4 b) YOU HAVE TO DO STEP 5 - YOUR VBSHOUT WILL NOT RENDER CORRECTLY ON YOUR FORUM HOME! IF YOU HAVE YOUR SHOUTBOX AS A CENTRE MODULE ON THE CMPS, AND WANT TO ALSO HAVE IT RUNNING ON THE FORUM HOME, DO NOT PERFORM THIS STEP!
6) In your ACP go to [ACP > Plugin System > Plugin Manager] - find on that page 'vBShout [Template Alteration]' and uncheck the box which will deactivate it.
That's all there is to it folks, a very simple fix to the problem.
Alien
10-04-2005, 12:30 AM
Works great, thanks SO MUCH for this!
http://www.wtf.com
FleaBag
10-04-2005, 12:32 AM
Don't thank me, I'm just the messenger. :)
BTW, awesome domain!
* FleaBag envies you...
How did you get hold of that?
Alien
10-04-2005, 12:44 AM
Why we abducted it, of course. :alien:
memorex
10-04-2005, 03:13 AM
thanks for relaying that here :D I'm loving the module!
skyace2004
10-04-2005, 03:42 AM
Wonderful!!! Thanks very very much
Brandon Sheley
10-04-2005, 04:18 AM
* Brandon Sheley install
worked great :)
my members where missing the shoutbox on the portal )
thank you a million times for letting us know about this
Wachtmeister
10-04-2005, 07:51 AM
Great. What, if i only have a "Loading" in my Shoutbox Content (www.webgurus.de (http://www.webgurus.de)) ? I think i have edited the path to vbshout.php everywhere (2 strings found) because i have vba and vb35 in different folders.
Thanks, Wachtmeister
//edit: i've missed 2 vbshout.php :)
NuclioN
10-04-2005, 08:03 AM
Very nice but i want the shoutbox streched out as large as the navbar above the rest. Is this possible? :)
Wachtmeister
10-04-2005, 08:40 AM
I also noticed, that the content does not refresh automatic. Is this a bug or just notpossible?
NuclioN
10-04-2005, 08:43 AM
Wachtmeister there are 3 vbshout references in the template maybe you've mist one :)
Wachtmeister
10-04-2005, 08:55 AM
Wachtmeister there are 3 vbshout references in the template maybe you've mist one :)
:) Yes, my edit was posted right before your reply ;) Thanks. Do you know, why shoutbox content does not refresh automatic on vbadvanced homepage? Best regards.
FleaBag
10-04-2005, 10:21 AM
I'm not sure about that one. To be honest in the excitement I never thought of checking to see if that was the case. I will take a look at this to see what I can do...
FleaBag
10-04-2005, 10:22 AM
Very nice but i want the shoutbox streched out as large as the navbar above the rest. Is this possible? :)
This would not be adding as a module, as you can only have a CMPS module in either the left, centre or right column.
FleaBag
10-04-2005, 11:24 AM
The refresh seems to work just fine for me. Is it working properly on your default installation of vBShout?
Wachtmeister
10-04-2005, 11:49 AM
The refresh seems to work just fine for me. Is it working properly on your default installation of vBShout?
Yes, it works on all other sites. Can i have done something wrong somewhere?
Regards, Wachtmeister
Romeos Tune
10-04-2005, 02:27 PM
Glad to have this..... I did remove the time of shouts from mine so it would look better and not cause users to have to scroll.
Prodimysterio
10-04-2005, 02:41 PM
Everything works fine with the exception of one problem. Within the shoutbox itself, if you click on someone's name, it tries to take you to:
/member.php
instead of (in my case)
/forums/member.php
Can someone assist in resolving this issue?
Romeos Tune
10-04-2005, 02:50 PM
Did you place vbshout.php in the /forums directory?
Prodimysterio
10-04-2005, 02:52 PM
Did you place vbshout.php in the /forums directory?
Yes.
Wachtmeister
10-04-2005, 02:54 PM
Everything works fine with the exception of one problem. Within the shoutbox itself, if you click on someone's name, it tries to take you to:
* Prodimysteriomber.php
instead of (in my case)
/forums/member.php
Can someone assist in resolving this issue?
Oups, same problem here. And yes, i have replaced all vbshout.php to /forum/vbshout.php. It just links to member.php instead of <path to forum>/member.php.
Regards
Prodimysterio
10-04-2005, 02:56 PM
Also, can someone post how to remove the time that is in front of the usernames from within the shoutbox module? It was posted in the other thread as to how to remove it from forumhome, but that code is not the same in the CMPS module.
Thanks!
Romeos Tune
10-04-2005, 02:58 PM
What do you have for your module link?
Prodimysterio
10-04-2005, 03:07 PM
What do you have for your module link?
http://www.myforums.com/forums/vbshout.php?do=archive
FleaBag
10-04-2005, 03:26 PM
I'll post how to remove the time [which I now intend to do myself] from it later tonight. I'll also amend any .php references that need to be updated to work correctly. Will try to sort out a side module too, although I'm not promising anything. ;)
Prodimysterio
10-04-2005, 03:28 PM
I'll post how to remove the time [which I now intend to do myself] from it later tonight. I'll also amend any .php references that need to be updated to work correctly. Will try to sort out a side module too, although I'm not promising anything. ;)
Thanks FleaBag, much appreciated.
:nervous:
michaelbenson
10-04-2005, 03:38 PM
Thanks, the perfect addon!
Prodimysterio
10-04-2005, 03:40 PM
Also, when my users are in the shoutbox, the following appears in "who's online"
Unknown Location /forums/vbshout.php/
Can that be resolved as well?
FleaBag
10-04-2005, 03:56 PM
Hmm the same problem is present with vBShout. I think that would need to be fixed as part of the hack itself; although I'll certainly take a look tonight.
JJR512
10-04-2005, 05:33 PM
I've installed it and in general it works fine. However, I am having one problem.
Actually it's the same problem I've had with the vBShout, which you can read about in that thread. In a nutshell, whenever someone was on my forums home page, if you looked at Who's Online it would say they were viewing the shoutbox. The link would be to the forums home page, though. I tested this myself, on myself, by going to the forums home page, refreshing, then going straight to Who's Online. Sure enough, there it says I'm viewing the shoutbox, with a link to the forums home page.
Now that I've installed this add-on, the problem has been expanded to my main cmps page, too. If I'm looking at that page, then jump to Who's Online, it says I'm looking at the shoutbox, with a link to my main cmps page.
I don't consider this to be a problem with this add-on, I think it's simply an effect of a problem/issue with the underlying vBShout hack. I've checked the hack's plugins to the Who's Online system, and compared to others, and both are fine. As far as I can tell, there's no problem with the plugins. I don't even know for sure that the problem is the hack itself; it could be something with vBulletin--I'm starting to think that if a page (like index.php) gets output from another page (like vbshout.php), then for some reason vBulletin considers vbshout.php to be the page the viewer is on.
Whatever the problem is, although I've documented and explained it, I have yet to get any help or suggestions. Maybe, FleaBag, you could have those people over at vBadvanced, who wrote this add-on, look into it, if they're familiar with the hack already? :)
FleaBag
10-04-2005, 08:33 PM
Basically I think you've hit it on the head... Here's how I see it. vB sessions obviously update every time a page is loaded. For instance I used to have a frame with a news.php file [custom code] pulling my news in a different format. This page was obviously loaded after the index.php, so Who's On-line picked up my location as news.php. Now obviously this is working slightly differently with vBShout, as it's pointing to index.php, but say's you're viewing vbshout.php. View your vbshout.php in your browser, looks like XML to me. The template on the CMPS, and Forum Home are including that XML file to get the shouts onto the page. As a result, the session makes vB think you're on vbshout.php [which is right, because it was the last vB page loaded] yet you are still in fact on index.php [the reason for it linking back to that page]. I think vB is the problem, at least when handling the way vBShout works, and the way sessions are generated needs to be updated.
JJR512
10-04-2005, 08:55 PM
I was mistaken, I just realized. It's not pointing to index.php even though it says viewing the shoutbox. It is, in fact, pointing to vbshout.php.
I wonder if there's a way to make index.php (or the main cmps PHP file) send new session info or update session info at the END of the script, in other words after vbshout.php has been called?
FleaBag
10-04-2005, 09:59 PM
This is a stab in the dark but I'm guessing a session is updated around the time global.php is called. So every time global.php is called you'll be recorded as viewing the .php file in which that reference runs. So as it stands, I don't see how it could be sorted. I'm not a coder though heh.
Brandon Sheley
10-05-2005, 04:51 AM
any news on removing the Time ?
thx
Lizard King
10-05-2005, 07:52 AM
Is there any way to move the shoutbox to right or left corner by removing the font and color selector ?
FleaBag
10-05-2005, 09:54 AM
The font and colour selector are not present in this version... With regard to moving the time, I didn't get a chance last night sorry.
Gizmo5h1t3
10-05-2005, 07:01 PM
one more thing...the hack works a treat...apart from thoe mentioned.
but....
smilies show up as red "x"`s.....and the member.php issue is still a problem..click on a members name, and i get a page cannot be displayed error
FleaBag
10-05-2005, 09:32 PM
Still not looked at removing the date - sorry.
Gizmo, where are your forums on your server, and where is your CMPS? Did you edit any of the template?
Scotty2k
10-05-2005, 09:52 PM
@FleaBag .. thx 4 publishing our modification here.. more user more ideas :-)
I tried to fix the member.php problem ... here is my result:
Find in the template forumhome_vbshout_shout:
<if condition="$Shout[s_by]">
<a href='member.php?{$session['sessionurl_q']}u={$Shout['s_by']}'>
</if>
{$Shout['username']}<if condition="$Shout[s_by]"></a>
</if>:</if>
and replace it with
(change YOUR-FORUM-PATH/ to your forumfolder!!!
example: forum/member.php?{$session...... )
<if condition="$Shout[s_by]">
<a href='YOUR-FORUM-PATH/member.php?{$session['sessionurl_q']}u={$Shout['s_by']}'>
</if>
{$Shout['username']}<if condition="$Shout[s_by]"></a>
</if>:</if>
If you want to use the vbshout on your forum pages and in vbadvanced the template must be changed to full path to your forum .. see it in next Code-BOX
<if condition="$Shout[s_by]">
<a href='http://www.YOURDOMAIN.com/YOUR-FORUM-PATH/member.php?{$session['sessionurl_q']}u={$Shout['s_by']}'>
</if>
{$Shout['username']}<if condition="$Shout[s_by]"></a>
</if>:</if>
I could not test it yet, but it should work .. please give us feedback, perhaps FleaBag can edit his first Thread with this changes.
rrokdoka
10-06-2005, 01:11 AM
It works great and i love the instructions you guys put up, but i dont see the Smilies link. Is there a way to add it?
Joe Gronlund
10-06-2005, 03:52 AM
Mine keep saying loading..... what am i doing wrong??
Path to Site,
http://www.microsoftforums.org/
yes vbshout.php is in the forums directory.
Thanks for any help on this..
I could not test it yet, but it should work .. please give us feedback, perhaps FleaBag can edit his first Thread with this changes.
your edit corrected the member link issue for me ... thanks.
Additional Question:
I don't see how to DELETE shoutouts ... is this possible?
Thanks
LTW
Additional Question:
I don't see how to DELETE shoutouts ... is this possible?
Thanks
LTW
never mind ... i found it (https://vborg.vbsupport.ru/showpost.php?p=761336&postcount=351) ... :)
LTW
Scotty2k
10-06-2005, 12:20 PM
It works great and i love the instructions you guys put up, but i dont see the Smilies link. Is there a way to add it?
At sunday night i want to upgrade our forum. I think i will try to add the smilie link too .. if i know how, i let you know !
Booth
10-07-2005, 03:00 PM
How could we make the text size '1' in the VBA cms hack? The text is so big it's pushing shouts to one side. I'd really appreciate if someone could find how to make the text size smaller :)
rb290
10-08-2005, 12:41 AM
man!
im confused on this part:
"In your cmps_index.php file:
Now open your cmps_index.php file in this folder and find:
chdir('/home/yoursite/public_html/forum');"
Am I supposed to open up the cmps_index.php file and change something cause that file has nothing in it its empty ... some help please.
FleaBag
10-08-2005, 06:17 PM
man!
im confused on this part:
"In your cmps_index.php file:
Now open your cmps_index.php file in this folder and find:
chdir('/home/yoursite/public_html/forum');"
Am I supposed to open up the cmps_index.php file and change something cause that file has nothing in it its empty ... some help please.
The file should have about 30 lines or so of code. Try re-downloading.
tuwebfacil
10-08-2005, 07:24 PM
any news on removing the Time ?
thx
I want to know also :)
Floob
10-09-2005, 11:26 AM
I get the following error:
Loading...
').style.display = (document.getElementById('shout_emo').style.displa y == 'none')? '' : 'none' } requestShouts() -->
Any ideas?
RaceJunkie
10-09-2005, 10:50 PM
Thanks
rb290
10-10-2005, 01:53 AM
someone tell me how to remove the underlines from our name in the shoutbox, thread titles, or anywhere, like completely remove underlines from threads, names, where ever else has it.
some help on that please.
PennylessZ28
10-10-2005, 03:21 AM
someone tell me how to remove the underlines from our name in the shoutbox, thread titles, or anywhere, like completely remove underlines from threads, names, where ever else has it.
some help on that please.
Wrong place to ask, but to answer your question, in each style you need to put "none" in the decoration field for text items.
rb290
10-10-2005, 03:30 AM
Wrong place to ask, but to answer your question, in each style you need to put "none" in the decoration field for text items.
decoration field ?
text items ?
wheres that
thanks if you can help
ozmazdaclub
10-10-2005, 04:17 AM
AdminCP > Styles > All Style Options
hotrod1
10-10-2005, 02:33 PM
Thanks!
Gandolfe
10-10-2005, 07:27 PM
I'm having a bit of a problem with the shoutbox on my site, it displays correctly, but no text will come up, like it's not refreshing. Contantly shows 'Loading...'
If I look at vBShout in forumhome the text I have entered from within vBAdvanced show's up.
My site is set out as such
www.flipsy.net -> vBAdvanced CMPS
forums.flipsy.net -> vB with vBShout in root folder.
Code has been changed in the template to direct to http://forums.flipsy.net/vbshout.php
Any ideas would be welcome.
rookiyong
10-14-2005, 02:30 AM
How could we make the text size '1' in the VBA cms hack? The text is so big it's pushing shouts to one side. I'd really appreciate if someone could find how to make the text size smaller :)
I am looking for something like this also, any luck? :)
The horizontal scroll bars are also taking up space, and ends up only showing 3 lines of shout.
rrokdoka
10-14-2005, 02:54 AM
Any luck putting the smilies up scotty2k??
Alexander-13
10-14-2005, 03:35 AM
Didn't know people were having problems with this, I had my vbShout on my CMPS for a long time, though it looks nothing like this :O
majorj0nny
10-14-2005, 06:39 AM
thanks - this is great ... i love ZT's original vbshout - a very versatile shoutbox, and now with your hack we can easily have this on our VBA homepages...
Ive altered things around a little - Ive moved the timestamp to the end of the shout rather than infront of the username and this seems to free up some much needed horizontal room...
how would I go about adding back the textcolour button and perhaps changing the default font size/colour of the timestamp ?
for the testcolour button - how would I make it a neater 'colour swatch' style thing rather than the current wide list of colour codes.... ?
thanks in advance
FleaBag
10-16-2005, 10:12 PM
OK so I now have a very basic version of this hack working as a side module.
See the first post for details. :)
Wordplay
10-17-2005, 07:13 AM
can you make a mod for this that would display minature versions of user's avatars instead of their username in the shoutbox? i've been looking around for that ever since v3.5 rc1 came out, but nobody (not vbshout nor chatbox lite) is willing to work or create that.
alot of people asked for this on the chatbox lite thread, but with no luck.
Neutral Singh
10-17-2005, 07:19 AM
Excellent!! Thanks
Can we define a certain size of the message window along with right scrollba, right now window goes on expanding infinitely.
tqvn2004
10-17-2005, 08:31 AM
Very useful hack!
BTW, when I choose the position of the vBShout editor to be "Below Messages" (in vBulletin options > vBShout options), the editor box disappear! I am using the shout box as a side module, and maybe the new template does not allow the change of editor's possition?
aloha
10-17-2005, 10:11 AM
Shouts on my website currently appear like this
tr> ****: test
tr> ****: test
tr> ****: test
How do I take the tr> off?
Wordplay
10-17-2005, 10:14 AM
you must've messed up in the template, check the template edit again, and see whether there is an outstanding tr> which isn't supposed to be there.
Prodimysterio
10-19-2005, 04:29 PM
Hi everyone,
Thanks for all of the updates thus far. I have the shoutbox set to the right column of my CMPS and it looks fantastic.
:)
My last question about the shoutbox on the CMPS...Is there anyway to fix the following problem when I view "who's online?"
Last Activity: 2 Minutes Ago 12:23 PM
Unknown Location /forums/vbshout.php - 2 Minutes Ago
Thanks for any help you can provide!
FleaBag
10-20-2005, 09:41 PM
can you make a mod for this that would display minature versions of user's avatars instead of their username in the shoutbox? i've been looking around for that ever since v3.5 rc1 came out, but nobody (not vbshout nor chatbox lite) is willing to work or create that.
alot of people asked for this on the chatbox lite thread, but with no luck.
I'll certainly give it a go when I get a chance.
FleaBag
10-20-2005, 09:45 PM
can you make a mod for this that would display minature versions of user's avatars instead of their username in the shoutbox? i've been looking around for that ever since v3.5 rc1 came out, but nobody (not vbshout nor chatbox lite) is willing to work or create that.
alot of people asked for this on the chatbox lite thread, but with no luck.
I'll certainly give it a go when I get a chance.
Excellent!! Thanks
Can we define a certain size of the message window along with right scrollba, right now window goes on expanding infinitely.
I'll explain how to when I update.
Hi everyone,
Thanks for all of the updates thus far. I have the shoutbox set to the right column of my CMPS and it looks fantastic.
:)
My last question about the shoutbox on the CMPS...Is there anyway to fix the following problem when I view "who's online?"
Thanks for any help you can provide!
This is an issue with the hack itself, not the add-on. I have a workaround running on my site where users are showing as on the homepage when on the homepage, but the downside is when people view the shoutbox archive they are also shown to be on the homepage. If you want to know how to do this, say so, and I'll include it with the next update.
divided_by_fear
10-29-2005, 02:11 AM
is there anyway to make the smileys box appear again? but love the hack thanks
Parture
10-30-2005, 09:34 PM
How do I decrease the text size and widths?
http://biblocality.com/forums/cmps_index.php
Prodimysterio
11-01-2005, 03:26 PM
This is an issue with the hack itself, not the add-on. I have a workaround running on my site where users are showing as on the homepage when on the homepage, but the downside is when people view the shoutbox archive they are also shown to be on the homepage. If you want to know how to do this, say so, and I'll include it with the next update.
Heya Flea. If you could provide instructions on how to do that, it would be most appreciative. I would rather have some sort of redirect versus the ugly "unknown location" message.
GamerJunk.net
11-03-2005, 03:39 AM
How could I port this over to Joomla? This would be very efficient, rather than having 2 shoutboxes
Ramsesx
11-03-2005, 07:59 AM
Please, is there anything new about the smilies?
Thanks
bspiller82
11-05-2005, 12:39 AM
Is there a way to have it only show 10 last shounts on the main page and still keep it 20 on the forums? Or have a scroll box so 20 shouts doesn't span my entire website heh.
lairnoc
11-11-2005, 09:29 PM
love this hack, but my members really want smilies and color back anyone an idea how to doe that?
Ramsesx
11-11-2005, 10:24 PM
please give us the smilies :rolleyes: , thank you
nexus851
11-13-2005, 11:17 AM
cant u just copy the code and paste it over in the template to give the smilies?
poprulz
11-13-2005, 10:58 PM
It indeed works great..nice mod and thanx again.
My vba runs in root and forum under forums/. the vbshoutbox is in forums/.
1. when the user types in a smily, it's not visible in the main page. the code checks for the root directory only. so i copied the image folder to root directory which contained the smilies(hope a better fix in code is available).
2.the same problem is the there for the user details too..as it looks for members.php?u=xx in the root directory.
Hope u can help me, or is the solution already available?
ninermac
11-14-2005, 05:19 AM
I'll certainly give it a go when I get a chance.
I'll explain how to when I update.
This is an issue with the hack itself, not the add-on. I have a workaround running on my site where users are showing as on the homepage when on the homepage, but the downside is when people view the shoutbox archive they are also shown to be on the homepage. If you want to know how to do this, say so, and I'll include it with the next update.
I believe I've got the problem with Who's Online fixed, take a look at my post in the original vbshout thread... (http://https://vborg.vbsupport.ru/showpost.php?p=820807&postcount=793)
rb290
11-14-2005, 08:26 AM
for the vBadvanced CMPS
my cmps_index.php file is empty, is their supposed to be anything in there ?
poprulz
11-18-2005, 01:29 PM
still facing the problem..
in the main cmps page when an user shouts, the user details are shown as --> domain.com/members.php?=xx . But in real the members.php? is under domain.com/forums/members.php
Please do help me to fix this..
thanx in advance.
Prodimysterio
11-18-2005, 03:06 PM
I believe I've got the problem with Who's Online fixed, take a look at my post in the original vbshout thread... (http://https://vborg.vbsupport.ru/showpost.php?p=820807&postcount=793)
Thank you so very much Niner. Your resolution is working just fine on my site!
Synth
11-21-2005, 05:44 PM
its working fine in my forums but sits at loading on the CMPS page. Did I miss something?
Synth
11-21-2005, 06:04 PM
fixed :rolleyes:
Harley77
12-06-2005, 07:33 PM
Since it didn't seem to get addressed,
To have a scroll bar on a left or right side shoutbox, (so it doesn't stretch for a mile down the page), the insanely simple fix.
In adv_portal_vbshout:
Find:
<div id="vbshout">
Loading...
</div>
Replace with:
<div id="vbshout" style="overflow:auto;height:350px;width:100%;">
Loading...
</div>
Replace the 350px with whatever size you want it to be. 350px worked well for my site.
NineToez
12-07-2005, 05:21 AM
Two questions :
1) When creating this new module, do you specify anything for 'Template to Include'?
2) I might be one of the few to use the original vB index.php page in addition to the cmps_index.php page for subscribers/mods... when you disable it for one, it enables it for the other. Any way to enable this for both pages at the same time?
Thanks in advance for any help.
beansbaxter
12-12-2005, 10:56 PM
I like this, works good.
How do I make it so there isnt so much info (date and time stamp) to the left of the username when they make their post in the shoutbox? it would make it nice for people with smaller monitors
djmini
12-13-2005, 12:39 AM
Why can I not see the code?????
djjeffa
12-13-2005, 01:06 AM
I had this working fine with 3.5.1 now I did an upgrade and its not showing up?
it in the acp but i dont see it on the home page, anyone ahve any ideals?
beansbaxter
12-13-2005, 03:09 AM
I had this working fine with 3.5.1 now I did an upgrade and its not showing up?
it in the acp but i dont see it on the home page, anyone ahve any ideals?
with all upgrades, uninstall cmps and reinstall it - i find that fixes it every time.
I have one small problem, when someone posts a shout from the portal page it loads the forum/vbshout.php? page (blank page) and you must press go back to view their shout...thanks for any help
djnth
12-20-2005, 08:56 AM
I'm missing the Smilies and Fonts buttons in the shoutbox only on my front page. Also Where do I go to edit shouts?
Thanks!!
Lea Verou
12-20-2005, 11:37 AM
Thanks! It's awsome and my members instantly fell in love with it!!! :D
FleaBag
12-20-2005, 12:16 PM
Hi all, apologies for the crapness of my non-updatingness... I will try my best to sorting out a revised first post.
tqvn2004
12-20-2005, 07:27 PM
@FleaBag .. thx 4 publishing our modification here.. more user more ideas :-)
I tried to fix the member.php problem ... here is my result:
Find in the template forumhome_vbshout_shout:
<if condition="$Shout[s_by]">
<a href='member.php?{$session['sessionurl_q']}u={$Shout['s_by']}'>
</if>
{$Shout['username']}<if condition="$Shout[s_by]"></a>
</if>:</if>
and replace it with
(change YOUR-FORUM-PATH/ to your forumfolder!!!
example: forum/member.php?{$session...... )
<if condition="$Shout[s_by]">
<a href='YOUR-FORUM-PATH/member.php?{$session['sessionurl_q']}u={$Shout['s_by']}'>
</if>
{$Shout['username']}<if condition="$Shout[s_by]"></a>
</if>:</if>
If you want to use the vbshout on your forum pages and in vbadvanced the template must be changed to full path to your forum .. see it in next Code-BOX
<if condition="$Shout[s_by]">
<a href='http://www.YOURDOMAIN.com/YOUR-FORUM-PATH/member.php?{$session['sessionurl_q']}u={$Shout['s_by']}'>
</if>
{$Shout['username']}<if condition="$Shout[s_by]"></a>
</if>:</if>
I could not test it yet, but it should work .. please give us feedback, perhaps FleaBag can edit his first Thread with this changes.
This does the fix! However, it is better to use Vbulletin variable for the forum path, $vbulletin->options[bburl], rather than using direct link:
<if condition="$Shout[s_by]">
<a href='{$vbulletin->options[bburl]}/member.php?{$session['sessionurl_q']}u={$Shout['s_by']}'>
</if>
{$Shout['username']}<if condition="$Shout[s_by]"></a>
</if>:</if>
I have tested this code, and it should work in both cases!
Trana
01-10-2006, 11:51 PM
How do I enable the smiley chooser and timestamps?
Club3G
01-11-2006, 02:14 AM
Mine keep saying loading..... what am i doing wrong??
Path to Site,
http://www.microsoftforums.org/
yes vbshout.php is in the forums directory.
Thanks for any help on this..
Assuming you figured this out, but for those searching, make sure that if VBA is in the root and your forums are in /forums/ that you edit the template (3 locations) to /forums/vbshout.php.
I, on the other hand am getting this:
https://vborg.vbsupport.ru/
Any insight would really be appreciated.
350Chevy
01-11-2006, 08:45 PM
I had this working fine with 3.5.1 now I did an upgrade and its not showing up?
it in the acp but i dont see it on the home page, anyone ahve any ideals?
You probably need to readd the template: adv_portal_vbshout
350Chevy
01-11-2006, 08:47 PM
Assuming you figured this out, but for those searching, make sure that if VBA is in the root and your forums are in /forums/ that you edit the template (3 locations) to /forums/vbshout.php.
I, on the other hand am getting this:
http://www.club3g.com/members/chris/shoutbox1.jpg
Any insight would really be appreciated.
Your answer is in the install notes. ;)
Edit your 'forumhome_vbshout_shout' template [ACP > Styles & Templates > Style Manager > YOUR DEFAULT STYLE > forumhome_vbshout_shout], and replace it's contents with the following.
<tr>
<td align="left" valign="top">
<span class="smallfont">
<if condition="!$Shout[s_me]">
<if condition="$Shout[s_by]">
<a href='member.php?{$session['sessionurl_q']}u={$Shout['s_by']}'>
</if>{$Shout['username']}<if condition="$Shout[s_by]"></a></if>:
</if>
<if condition="!$Shout[s_me]">
{$Shout['s_shout']}
<else />
<span class='highlight'>
*{$Shout['username']} {$Shout['s_shout']}*
</span>
</if>
</span>
</td>
</tr>
Club3G
01-12-2006, 08:13 PM
Actally, I followed the directions too well. :D I changed up Default Style, but not the style that's actually SET to the default. :)
Thank you very much!
RYoBiOS
01-15-2006, 04:05 PM
I don't succeed :(
Because I don't understand well English.
Are you able explains me in more clear way the passages?
I use vB 3.5.3 and vBadvanced 2
Excuse me,thank again :)
ChErAbOo
01-17-2006, 01:35 AM
Works perfect and fast better than any shoutbox I had before on other forums non VB nice work
*clicks Install
bglynn
01-20-2006, 01:18 PM
I have it installed and integrated, however have no edit, smiley or font controls showing. Any ideas?
Ramsesx
01-20-2006, 02:02 PM
I have it installed and integrated, however have no edit, smiley or font controls showing. Any ideas?
There is no by default, and sad it seems nobody is able to get the smilie thing integrated. :tired:
bglynn
01-20-2006, 02:03 PM
What about just the edit commands then - that's what is REALLY critical.
Guest0321
01-20-2006, 07:10 PM
My vBAdvanced is on a subdomain, home.tntu.net (/public_html/homepage/index.php)
My forums are on tntu.net (/public_html/forums/index.php)
I can't seem to get this to work with the subdomain, and vBadvanced in a separate directory (below and off the branch of the forums).
I tried replacing the vbshout.php locations with relative directory locations (such as ../forums/vbshout.php) and also has http requests.. (http://tntu.net/vbshout.php), but to no avail.
I might have to change the vbAdvanced directory (homepage) so that it appears in the forum directory possibly?
Hello,
I have a small problem with this plugin. When I post a message at the shoutbox on my portal and click "shout", I musst manually reload to see the message on the shoutbox. I will when I'm post a new message, the shoutbox should automatically reload, best per AJAX.
The browser with this bug is Safari 2.0.3
Who can help my?
Best reguards
d4d4
Sorry for this terrible english, but I'm a student...
My vBAdvanced is on a subdomain, home.tntu.net (/public_html/homepage/index.php)
My forums are on tntu.net (/public_html/forums/index.php)
I can't seem to get this to work with the subdomain, and vBadvanced in a separate directory (below and off the branch of the forums).
I tried replacing the vbshout.php locations with relative directory locations (such as ../forums/vbshout.php) and also has http requests.. (http://tntu.net/vbshout.php), but to no avail.
I might have to change the vbAdvanced directory (homepage) so that it appears in the forum directory possibly?
same problem here, any fix?
eNforce
01-29-2006, 08:05 AM
Does anyone know what might be causing this ?
-see attached-
Trana
01-29-2006, 10:53 PM
Has anyone figured out how to do this following:
Enable timestamps
Enable scrollable module window to view older shouts
Enable smiley chooser (seems like this hasn't happened yet)
Thanks!
The_Rayman
01-30-2006, 05:00 PM
same problem here, any fix?
It's in the install section:
If your CMPS & vB are not installed in the same folder, you will need to replace all instances of 'vbshout.php' in the template and in 'Module Link' with the path to where you have vBShout installed in relation to your CMPS. For example if you have CMPS installed in the root folder, and vBshout within a folder called 'forum' you would need to replace all instances of 'vbshout.php' with '/forum/vbshout.php'.
Trana
01-31-2006, 12:17 AM
I turned on the scroll bars but they look horrible. Does anyone know how to turn on ONLY the vertical scroll bar so people can scroll through older messages?
Also, I am trying to get the timestamps to work in the side panel module.
I can get the time in there with:
<span style='float:right'> {$Shout['time']} </span>
but the time is always formatted "Today at: xxxxxxx". Does anyone have a suggestion for how to format it to #:## AM/PM?
Thanks!
Chris Lang
01-31-2006, 03:47 PM
Does anyone know what might be causing this ?
-see attached-
Go into the Shoutbox setup and place the Edit box ABOVE the Shoutbox, not below. There may be another fix, but this is the easiest one I've found.
forumsoup.com
02-05-2006, 11:31 PM
I need to edit the code for the shout box on my vbadvanced but I cant get to the code! How do I?
The_Rayman
02-21-2006, 02:47 PM
Hiya Flea,
i set my shoutbox up on the vba portal as told, but problem is the whole forum slows down when the SB fills. After a prune of the lines all is fine.
Any ideas??
Trana
02-21-2006, 02:51 PM
Enable smiley chooser (seems like this hasn't happened yet)
Has anyone cracked this nut yet?
Trana
02-21-2006, 04:03 PM
Does anyone else see this message from time to time at the top of their shoutbox module:
HTTP/1.1 100 Continue
I was wondering if there is any fix for this or if it is just Ajax losing an update or something
djnth
02-22-2006, 07:18 AM
Has anyone cracked this nut yet?
I would love to see this happen too, but I think that there must be some major barrier or would have been done already. Though, I'm tempted to put a link in there to some sort of smiley list.
tubilo
03-05-2006, 06:26 PM
Nothing display. Event I can't delete or edit. Who can help me?? I'm use vbb 3.5.1
I think hv some things happend with line below:
<form action="vbshout.php?{$session['sessionurl']}" method="post" name="vbshoutform" onsubmit="return postShout(this)">
dartworth
03-05-2006, 06:54 PM
Working great...thanks
Ozymandyus
03-15-2006, 06:11 PM
Your instructions are far better and more complete than what I found on the VBA forums. Worked quite well, now I just have to figure out how to limit how far it can expand.
Ozymandyus
03-15-2006, 06:26 PM
Since it didn't seem to get addressed,
To have a scroll bar on a left or right side shoutbox, (so it doesn't stretch for a mile down the page), the insanely simple fix.
In adv_portal_vbshout:
Find:
<div id="vbshout">
Loading...
</div>
Replace with:
<div id="vbshout" style="overflow:auto;height:350px;width:100%;">
Loading...
</div>
Replace the 350px with whatever size you want it to be. 350px worked well for my site.
Wanted to thank Harley for this one. It's a simple fix and keeps things from overflowing too much.
NemoTech
03-18-2006, 10:41 PM
Thanks. Install done. Works nice.
|oR|Greg
03-21-2006, 09:59 PM
Center Display, just sits at loading...
Trana
03-26-2006, 01:15 AM
Existing install works fine. I copied my site to a new test site and am getting the following error message only in Firefox:
' setTimeout('requestShouts()', 10000) } } } function sb_CollectHV(sbForm) { rString = '' inputObjs = sbForm.getElementsByTagName('input') for (i = 0; i < inputObjs.length; i++) { if (inputObjs[i].type == 'hidden' && inputObjs[i].value != '') { rString += '&' + inputObjs[i].name + '=' + PHP.urlencode(inputObjs[i].value) } } return rString } function postShout(formObj) { doShout = new vB_AJAX_Handler(true) doShout.onreadystatechange(postedShout) if (postingShout) { alert('Posting in progress..') return false } Shout = formObj.shout.value if (Shout.replace(/ /g, '') == '') { alert('You must enter a shout!') return false } doShout.send('/forum/vbshout.php', 'do=shout&shout=' + PHP.urlencode(Shout) + sb_CollectHV(document.forms['vbshoutform'])) sb_Clear() postingShout = true return false } function postedShout() { if (doShout.handler.readyState == 4 && doShout.handler.status == 200) { postingShout = false requestShouts() } } function sb_Input_SC(sProperty, setting) { eval('document.forms["vbshoutform"].shout.style.' + sProperty + ' = "' + setting + '"') eval('document.forms["vbshoutform"].' + sProperty + '.value = "' + setting + '"') } function getSelectionValue(eSelector) { return eSelector.options[eSelector.options.selectedIndex].value == 'Default' ? '' : eSelector.options[eSelector.options.selectedIndex].value } function sb_PropChange(eSelector, sProperty) { sb_Input_SC(sProperty, getSelectionValue(eSelector)) } function sb_PropChange_Button_Value(sProperty) { trueValue = '' switch (sProperty) { case 'fontWeight': falseValue = 'bold' break; case 'textDecoration': falseValue = 'underline' break; case 'fontStyle': falseValue = 'italic' break; } return (eval('document.forms["vbshoutform"].' + sProperty + '.value'))? trueValue : falseValue } function sb_PropChange_Button(cButton, sProperty) { if (cButton.value.match(/\*/)) { cButton.value = cButton.value.replace(/\s+\*/, '') } else { cButton.value = cButton.value + ' *' } sb_Input_SC(sProperty, sb_PropChange_Button_Value(sProperty)) } function sb_Smilie(code) { document.forms["vbshoutform"].shout.value += ' ' + code return false } function sb_Clear() { document.forms["vbshoutform"].shout.value = '' return true; } function sb_Smilies(cButton) { if (cButton.value.match(/\*/)) { cButton.value = cButton.value.replace(/\s+\*/, '') } else { cButton.value = cButton.value + ' *' } document.getElementById('shout_emo').style.display = (document.getElementById('shout_emo').style.displa y == 'none')? '' : 'none' } requestShouts() -->
Hi - neat integration - but our Safari users are seeing a problem when the shoutbox is placed on a page along with the Recent Threads CMPS module. They cannot click on the thread entries in Recent Threads - they don't fire up windows correctly.
If I remove the shoutbox from the page, the Recent Threads start working again - I'm guessing there's a conflict in the javascript somewhere.
Any ideas?
B
Heldenverband
03-28-2006, 09:57 AM
Center Display, just sits at loading...
In forum display OK,, but on Portal only LOADING.
Snake
03-28-2006, 12:05 PM
Thanks dude!
Tyegurl
03-28-2006, 11:38 PM
okay i have read this entire thread and i don't understand lol....i can't get my vbshout off of my forum page and my vbadvance shout show loading.....so i unchecked the vbadvanced one until i can get someone to childly walk me through this please...........please.......cherries on top.....
oh and yes cmps is in my forum root and vb shout is in my forum root
camoman
04-02-2006, 02:59 AM
Since it didn't seem to get addressed,
To have a scroll bar on a left or right side shoutbox, (so it doesn't stretch for a mile down the page), the insanely simple fix.
In adv_portal_vbshout:
Find:
<div id="vbshout">
Loading...
</div>
Replace with:
<div id="vbshout" style="overflow:auto;height:350px;width:100%;">
Loading...
</div>
Replace the 350px with whatever size you want it to be. 350px worked well for my site.
I have done this , HOWEVER when someone post a word longer then the shout box like a Web link it stretches the wrod wrap to equal the lenght of the one word/weblink untill it leaves the screen?!?! is there a way for it to wrap web links as well?!!
ruizmaniega
04-03-2006, 11:33 PM
It indeed works great..nice mod and thanx again.
My vba runs in root and forum under forums/. the vbshoutbox is in forums/.
1. when the user types in a smily, it's not visible in the main page. the code checks for the root directory only. so i copied the image folder to root directory
I have the same problem. Any fix for this?
Thanks
Heldenverband
04-04-2006, 05:11 AM
In forum display OK,, but on Portal only LOADING.
No Idea ?
Heldenverband
04-05-2006, 07:01 AM
:(
....dumdidum..... waiting :)
Trana
04-05-2006, 09:31 PM
I turned off HTML for the input and it seems to have fixed this problem in MOST situations. Users still are able to post a wierdly formatted URL and get around the check, but most people just yell at the person who did this as it screws up the module like you described.
rareclownfish
04-08-2006, 12:15 PM
Does this work on VBportals?
Heldenverband
04-10-2006, 09:46 AM
In forum display OK,, but on Portal only LOADING.
Heeelp
Tyegurl
04-11-2006, 12:41 PM
i had to disable the vbadvance shout box on some pages because it didn't take vbshout off the page...i had 2 vbshout headers....
GoTTi
04-22-2006, 02:03 PM
what goes in: Template to Include
camoman
04-22-2006, 03:13 PM
I have done this , HOWEVER when someone post a word longer then the shout box like a Web link it stretches the wrod wrap to equal the lenght of the one word/weblink untill it leaves the screen?!?! is there a way for it to wrap web links as well?!!
Has anyone fixed this yet?
Tyegurl
04-25-2006, 03:09 AM
i would like to see the fix for that myself
Trana
04-25-2006, 03:32 AM
I think you can fix this by parsing for URLs in the input. It is generally the URLs that are screwing up the Ajax.
Tyegurl
04-25-2006, 03:33 AM
ty i will try that ;)
Trana
04-25-2006, 03:32 PM
Also, I think the recent update to vbshout resolves this issue.
Tyegurl
04-25-2006, 03:54 PM
i have that update installed too...
danbc
04-26-2006, 05:30 AM
Anyone has the same issue with placing the shout in left or right side of portal, that they´re loosing date/timestamp from the shoutbox?
shadow smith
04-27-2006, 12:40 PM
Using Firefox 1.5.0.2, I can see the shoutbox on the forum home page (normal version) but using my cmps_index file, I see "Loading" only.
I loaded IE and I see the shouts on the vBa page. Anyone seen anything like this? I checked for updates to the browser and didn't see any.
Hoagie
05-02-2006, 09:50 PM
Love it......works great
www.ersquad.com
Is there a way to format the shout window to display like this:
[Time shout posted] UserName
<shout---------(wraps)->
Hoagie
05-03-2006, 01:55 AM
is there a way to get this to expand all 3 colums on the VBA page? perhaps under the nav_bar???
NeoToxic
05-04-2006, 03:12 PM
Cool Addon its just
http://img380.imageshack.us/img380/6487/shout3bb.gif
How can i fix this shout button is it possible to change it for a image? also what would be a sweet addon is if you intergrated the legends color code hack into this so tht different user groups names show as different colors lol any ways hope u can help
Macindy
05-05-2006, 06:43 PM
Hi there!
Is there any workaround for Safari users? My Safari users doesn't get the shoutbox automatically reloaded after shouts.
GoTTi
05-08-2006, 01:37 AM
what goes in: Template to Include
coffee
05-08-2006, 07:03 PM
Thank you FleaBag.
Sir_Yaro
05-16-2006, 09:35 AM
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:
noreturn
05-19-2006, 03:36 PM
I am having this problem.
The shoutbox on the forum page shows more option buttons, (shout, clear, smiles, bold, underscore, italic, color, font face)
Now I also just placed it in the new center module however the only option buttons that appear are Shout and Clear.
I have lost the other buttons while the shotbox is on vbadvanced home page.
http://www.stargazerschat.com/testboard/index.php
Can ya help me out?
Thnx
TheAllusionist
05-20-2006, 05:59 PM
Yes, I updated to the latest vbShout and the smilies and text formatting options disappeared from the portal version, they still show up fine on the forum home. Anyone worked this out yet or are there only two of us this is affecting ;)
FleaBag
05-20-2006, 06:25 PM
Hello guys, unfortunately I have no idea how to fix the majority of your problems. I will though, try to compile the fixes listed in this thread. This hack is now marked as unsupported. Apologies to those who expetced support. I can confirm that it works as described in post#1 with both the latest vBShout 2.0 (vBShout fixed v3.zip) and vBulletin 3.5.4.
GoTTi
05-20-2006, 10:44 PM
what goes in: Template to Include
what goes in: Template to Include
what goes in: Template to Include
what goes in: Template to Include
what goes in: Template to Include
what goes in: Template to Include
what goes in: Template to Include
what goes in: Template to Include
what goes in: Template to Include
what goes in: Template to Include
what goes in: Template to Include
FleaBag
05-20-2006, 11:53 PM
Very funny. Nothing as far as I recall. If you followed the instructions it will work.
da420
05-23-2006, 05:18 AM
Just a blank "Loading" screen.
Hemanth
05-23-2006, 09:29 AM
Great. It's working fine. Just inastalled. :)
Reece^B
05-23-2006, 03:22 PM
Thanks for this, works great! =)
www.pitbikeclub.com
da420
05-23-2006, 04:59 PM
Just a blank "Loading" screen.
Okay, I missed something and fixed this. :D
But, now, I don't see all smillies... ? Most are just blank. Very few work.
vBFreak
05-24-2006, 11:45 PM
Users still can break that for example with lots of smileys... is there anything I can do against that? For example a limit for smileys or disabling them at all if no limit is possible?
I have this installed in the right column, but how do I make the box bigger. It is currently too small with a scrollbar.
GuaRRand
06-01-2006, 10:28 AM
in the main template i use this on it workes fin. but when i copy it to other templates (themes/skins...) it suddenly shows the date/time again.
How do i get rid of that? (see www.glcoti.com)
this came really handy, thanks for sharing....
kofoid
06-11-2006, 02:00 AM
for some reason the format bar isn't showing up on my site... can anyone help?
Trana
06-28-2006, 01:59 AM
Is there a way to use the full shoutbox on a dedicated shouting page but still use the module with the CMPS template? If I go directly to the vbshout.php file I only get the CMPS content.
VirusEJ
08-02-2006, 02:57 PM
FleaBag, are you still giving support on this top mod?
I am happily using the mod for my website, using a couple of different themes/skins & vbadvanced.
My question however is this. On my Homepage I have the shoutbox module showing on the left side. I have recently installed another mod that allows me to see the side panels from vbadvanced whilst I am in the forums etc.
The shoutbox module appears and works on all other pages I have in the CMPS but the "includes" page which is the one that loads the forums leaves the shoutbox showing Loading.
I have had a quick look around and I can't see why this might be happening, any thoughts?
Please feel free to PM / Email me for examples / screenshots / links.
Thanks
When i ban people or usergroups it comes up to them as Warning: Invalid argument supplied for foreach() in /vbshout.php on line 293
Blown Beauty
08-15-2006, 01:56 PM
Rock on! Works beautifully!! :) Thanks!
5IVEO
08-17-2006, 02:11 AM
So does this auto-refresh or not? Like is there a setting to make it refresh on its own everytime someone posts?
clicks install and thank you
camoman
08-20-2006, 06:46 PM
Has there been any update as to the amount of load this shout box puts on the server?
craiovaforum
08-23-2006, 09:54 AM
I tried to make the smileys work and the font colors with no success...
any news about how to do this?
transitbus
08-27-2006, 06:06 AM
The reason they do not work is because the plugin 'vBShout [Template Alteration]' was deactivated inorder for this to work. That plugin contains the arrays to populate the dropdowns and the smilies. Without that code none of the pulldowns will work.
BlueKnight
08-29-2006, 07:48 PM
Mine just says loading to. I went into vbshout.php. and changed the 2 instances in it to forums/vbshout.php . I have read here there is three but cannot cand them amongst the code or using find on wordpad
craiovaforum
09-03-2006, 11:38 AM
The reason they do not work is because the plugin 'vBShout [Template Alteration]' was deactivated inorder for this to work. That plugin contains the arrays to populate the dropdowns and the smilies. Without that code none of the pulldowns will work.
who said I deactivated that plugin?
I had it active while testing this one...
transitbus
09-05-2006, 03:03 PM
who said I deactivated that plugin?
I had it active while testing this one...
Says so in the instructions right here:
6) In your ACP go to [ACP > Plugin System > Plugin Manager] - find on that page 'vBShout [Template Alteration]' and uncheck the box which will deactivate it.
Hemanth
09-07-2006, 01:30 PM
Is it work for latest vb 3.6.0 & vbacmps?
EDIT: Installed in vB 3.6.0 and new cmps. Working well and thus confirmed.
Demo: http://www.techtalkz.com/
rberardo
09-11-2006, 02:14 AM
Hi all... can someone help me?
I installed this mod and it worked, but someone know how can i control the line broken? Because it is pushing the table and crashing the site layout.
Thx for help.
zephy
09-14-2006, 06:50 PM
Is there a way of making the box as a fixed size and scrollable, I could do it with DIV tags but I cant work out where to pt them!
zephy
09-14-2006, 08:27 PM
Got it
Change
<div id="vbshout">
Loading...
</div>
to
<div id="vbshout" style="overflow:auto;height:200px;width:100%;">
Loading...
</div>
In adv_portal_vbshout
Change 200px to whatever height you want the shoutbox to appear as. Hope this helps someone.
craiovaforum
09-20-2006, 04:32 PM
Says so in the instructions right here:
lol
it works without deactivating that one but the formatting and smileys don't work!
chuBaRo
09-20-2006, 11:11 PM
Did anyone try this vbShout with vbb 3.6.1 ? please share your experience. Thank you.
FleaBag
09-24-2006, 07:45 PM
Hi guys, sorry I never got around to that update. What can I say? I suck lol. :)
Just to confirm I have this working with the latest CMPS and vB 3.6.1.
oberheimhaven
09-27-2006, 01:47 AM
How would you put this in there profiles???
oberheimhaven
09-27-2006, 02:29 AM
Well I did everything it sticks on loading??
Griever_Reborn
09-30-2006, 07:40 PM
I have this problem:
On the forum index it works fine, but on my portal (CMPS) it has an error:
function sb_Smilie(code) { document.forms["vbshoutform"].shout.value += ' ' + code return false } function sb_Clear() { document.forms["vbshoutform"].shout.value = '' return true; } function sb_Smilies(cButton) { if (cButton.value.match(/\*/)) { cButton.value = cButton.value.replace(/\s+\*/, '') } else { cButton.value = cButton.value + ' *' } document.getElementById('shout_emo').style.display = (document.getElementById('shout_emo').style.displa y == 'none')? '' : 'none' } requestShouts() -->
What could be the problem?
Griever_Reborn
10-01-2006, 02:17 PM
Ok, got that fixed with just reinstalling the stuff.
Now, I don't have the text formation on my CMPS just like it is on the home page: (add smilies, font type and facem, bold, italic, ...).
How can I add them, so that they are also on the CMPS shoutbox?
Second problem is that it says now 'Viewing Shoutbox' indstead of the portal, how to fix that?
Thanks, G.
morrow
10-01-2006, 07:24 PM
Did anyone try this vbShout with vbb 3.6.1 ? please share your experience. Thank you.
Works fine for me.
no offense, but it took me a while to figure out the exact way to do this... your instructions are a tad unclear and disorderly.
thank you for a cool mod thou!
FleaBag
10-04-2006, 07:25 PM
No use editing the post, I saw the original reply in my email!
It works just fine if you follow the instructions to the letter; as you have clearly found.
Griever_Reborn
10-04-2006, 08:42 PM
The instructions are clear.
Now, Flea, could you please help me over this problem?
https://vborg.vbsupport.ru/showpost.php?p=1087535&postcount=192
redraider
10-05-2006, 05:15 AM
I just installed this hack with vb3.6.1 and CMPS. Works well on my laptop [I host my website on my laptop]. But when I try to access the page from some other computer on netwrok, the chat hangs on the screen "Loading ....." I tried running http://<myip>/forum/vbshout.php?=doarchive from the other computer and it comes up just fine.
I tried changing vbshout.php path as per previous posts, but that doesnt seem to work [or change anything]. Could someone please give a step by step solution to this? Or atleast tell me where exactly I need to make the changes.
Any help would be welcome.
Yeah - looking back, I admit my main confusion was my own fault - not noticing that I had not added "/forum/vbshout.php" because I use the CMPS in a different directory as the forum...
I guess i was also confused that under template module options, you have to input vbshout as the template to include. Your instructions only say it will add a template called this - it never specifies you should input this in that box.
It's obvious, but can be confusing if your troubleshooting and you follow every step "to the letter". Thanks!! :)
redraider
10-05-2006, 01:18 PM
I Figured it out! It was the problem with my forumhome. I had specified my forum home as "localhost" [AdminCP -> vBuleltin Options -> Sitename URL/Contact details], I just had to change it.
Works! but still has some problems
I have seen that after like 50 posts, it tends to hang saying "Posting ...." and just stays there. I have to login as admin and prune it to make it work. Can anyone help me with that?
So how do we impose limits - such as the removal of the ability of [img] tags - or even better, limit how big they can be?
hawork
10-15-2006, 03:34 PM
I'm testing it in v3.6.2 and it seems to work smoothly!
Thank you very much!
silks
10-17-2006, 09:12 PM
hi - i have had this installed 3.6.2 on one skin but installed a new one and now it stays minimised in that style - can any one tell me what to do please?
BaselineAce
10-19-2006, 01:41 PM
AJAX doesn't work in Safari. Also, I cannot get the box to display correctly (height is distorted).
anoojgeorge
10-19-2006, 04:09 PM
please helpppppppppppppppppppppppp it ++++edup my homepage i unstalled it and deleted the module and all the ++++ing files but it still on my page
Trana
10-19-2006, 09:56 PM
please helpppppppppppppppppppppppp it ++++edup my homepage i unstalled it and deleted the module and all the ++++ing files but it still on my page
Restore the site from your backup or post an error message here.
midirtrider
10-23-2006, 04:48 PM
Restore the site from your backup or post an error message here.
which hopefully you made a backup :D
... I have a quick question.. The shoutbox in my VBa is now missing the smilies tab, and the text colors tab.. is there a way to integrate these back in?
my members really liked using diffrent colors in shout and smilies as well..
by the way thanks for all your hard work.. love the shout box as a module!!
stonner
11-11-2006, 05:04 PM
hi,
ich habe vbshout im /forum und cmps im root-verzeichnis.
habe im template vbshout.php ersetzt durch forum/vbshout.php. das funktioniert. Jedoch, wenn man auf dem Portal auf einen benutzernamen klickt, ist der link noch immer falsch:
http://www.schuelerforum.net/member.php?u=684
statt
http://www.schuelerforum.net/forum/member.php?u=684
wo kann ich das korrigieren?
Vielen dank!
sduckie2k5
11-14-2006, 11:09 PM
hi,
ich habe vbshout im /forum und cmps im root-verzeichnis.
habe im template vbshout.php ersetzt durch forum/vbshout.php. das funktioniert. Jedoch, wenn man auf dem Portal auf einen benutzernamen klickt, ist der link noch immer falsch:
http://www.schuelerforum.net/member.php?u=684
statt
http://www.schuelerforum.net/forum/member.php?u=684
wo kann ich das korrigieren?
Vielen dank!
Dont speak the language but looks to me like he has the same problem I do, shoutbox works but the members links arent prefixed with the forum. How can I fix this as well? Thankyou in advance
Found my own answer. If anyone else wants to know, add the prefix in the forumhome_vbshout_shout template in front of /member.php at the beginning of the code.
Great Mod! A few questions:
a. How do you include special characters, like quotation marks. Currently, they show up as "
[edit] Fixed - just needed an upgraded v2.1 version of vbShout
b. Any way of limiting what is shown? Either remove or better yet, RESIZE images?
How about a way to trim URLs so that very long ones don't make the shoutbox resize so drastically.
c. Any chance of adding the "Who's shouting" mod to it, possibly underneath so as not to disrupt the sizing of the box?
https://vborg.vbsupport.ru/showthread.php?t=106049&highlight=vbshoutwol
buurman
11-30-2006, 08:19 AM
I searched a lot, because I only got LOADING on CMPS shoutbox, but found the solution.
I think it is posted before, but could not find it.
In your adv_portal_vbshout template, replace al the links to "vbshout.php" with /forum/vbshout.php or /forums/vbshout.php
Wroks like a charm, thx for the great plugin. *clicks install*
buurman, just a quick note - this is listed in the Official directions, under Step 5.
FleaBag - no planned updates, eh?
buurman
12-01-2006, 10:07 AM
buurman, just a quick note - this is listed in the Official directions, under Step 5.
FleaBag - no planned updates, eh?
I see, but clearly was "the template" not enough information, for noobs like me :)
Maybe a good idea to replace it with "the template adv_portal_vbshout" because I see a lot of questions about the "loading" thingie...
Just an idea...
Cynthdivide
12-12-2006, 01:24 PM
Well done FleaBag and Scotty2k. This is almost an essential for anyone running with the vba cmps.
buurman
12-14-2006, 02:34 PM
Its a much asked question, but cant seem to find the answer, sorry...
How can I enable a timestamp in the shoutbox?
Shazz
12-14-2006, 08:29 PM
Anyone confirm on 2.1 flatout?
Wordplay
01-06-2007, 09:58 PM
thank you, is there a way to get a character split? because people post words into my shoutbox that are too long, like links.
theczech
01-15-2007, 12:29 AM
I turned on the scroll bars but they look horrible. Does anyone know how to turn on ONLY the vertical scroll bar so people can scroll through older messages?
Also, I am trying to get the timestamps to work in the side panel module.
I can get the time in there with:
<span style='float:right'> {$Shout['time']} </span>
but the time is always formatted "Today at: xxxxxxx". Does anyone have a suggestion for how to format it to #:## AM/PM?
Thanks!
TO CHANGE THE TIME FORMAT:
- Open your vbshout.php
- Locate this code:
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;
- If you want to disable the "x minutes ago" part, then put // in front of the these lines like this:
// $Time = vbdate($vbulletin->options['dateformat'], $time, $vbulletin->options['yestoday']);
// $Time .= ' ';
- If you want to change the time format for the [xx:xx am] part of the timestamp, change this line:
$Time .= vbdate($vbulletin->options['timeformat'], $time, $vbulletin->options['yestoday']);
to something like this:
$Time .= vbdate('PUT_YOUR_DESIRED_FORMAT_HERE', $time, $vbulletin->options['yestoday']);
Replace 'PUT_YOUR_DESIRED_FORMAT_HERE following this simple guide (http://www.php.net/date).
Mine says
'g:ia' which makes a timestamp that looks for example like this: '6:55pm'.
AS ALWAYS, YOU SHOULD MAKE A COPY OF YOUR ORIGINAL FILES BEFORE ATTEMPTING ANY CHANGES TO YOUR WORKING CODE!!!
akulion
01-29-2007, 09:03 AM
thanks for this
even though for newbies like me u should mention that the template to include to put vbshout
lol i was totally confused for like 10 mins before i eventually got it
thanks
Pearl
02-04-2007, 03:23 PM
Thanks for this hack its really nice.
I edited the template to make the smiles, colours and options on mainpage work I hope you dont mind :)
View it here
Http://www.clanlife.eu
Rainingman
02-05-2007, 06:29 AM
Can you discribe how you changed the template for showing the smilies, colors and options? Thank you very much
Thanks for this hack its really nice.
I edited the template to make the smiles, colours and options on mainpage work I hope you dont mind :)
View it here
Http://www.clanlife.eu
Can we see the modified template please for adding smilies buttons?
thx :)
Pearl
02-06-2007, 03:39 PM
It says the code is to long to post?
Renada
02-06-2007, 04:06 PM
It says the code is to long to post?
Hi Pearl,
Try adding it as an attachment if the code is too long. :)
Regards & thanks,
Renada
Please can you post you template?
Pearl
02-08-2007, 04:48 PM
This will only work when your cmps and forum are not in the same location.
notes: After refresh format bar always goes back to default.
:The code below is the upper code of the entire code that means U only chnage the code until u hit <script type='text/javascript'>
<!--
Below that use the code orginally posted in this thread.
goodluck.
<td class="alt1" align="left" width="100%">
<form action="forums/vbshout.php?{$session['sessionurl']}" method="post" name="vbshoutform" onsubmit="return postShout(this)">
<input type='hidden' name='do' value='shout' />
<input type='hidden' name='color' />
<input type='hidden' name='fontFamily' />
<input type='hidden' name='fontWeight' />
<input type='hidden' name='textDecoration' />
<input type='hidden' name='fontStyle' />
<div id='shout_emo' style='display:none'>
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
<tr>
<td class="tcat" align="center">
Emoticons
</td>
</tr>
<tr>
<td class='alt2' width='100%' height='100%' align='center' valign='top'>
<a href="#" onclick="return sb_Smilie(':)')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_smile.gif" alt="Smile" border="0" /></a> <a href="#" onclick="return sb_Smilie(':whaaz')"><img src="http://www.clanlife.eu/forums/images/smilies/whatever.gif" alt="whatever" border="0" /></a> <a href="#" onclick="return sb_Smilie(':shuffle')"><img src="http://www.clanlife.eu/forums/images/smilies/shuffle.gif" alt="shuffle" border="0" /></a> <a href="#" onclick="return sb_Smilie(':twisted:')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_twisted.gif" alt="Twisted Evil" border="0" /></a> <a href="#" onclick="return sb_Smilie('nod')"><img src="http://www.clanlife.eu/forums/images/smilies/nod1.gif" alt=":nod" border="0" /></a> <a href="#" onclick="return sb_Smilie(':?:')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_question.gif" alt="Question" border="0" /></a> <a href="#" onclick="return sb_Smilie(':twisted:')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_twisted.gif" alt="Twisted Evil" border="0" /></a> <a href="#" onclick="return sb_Smilie(':p')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_bleh.gif" alt="Bleh" border="0" /></a>
</td>
</tr>
</table>
<br />
</div>
<if condition="!$vboptions[shout_editor_position]">
<if condition="$bbuserinfo[userid] > 0">
<table width='100%' border='0' cellpadding='0' cellspacing='0'>
<tr>
<td width='100%'>
<input type="text" name="shout" style="width: 90%" class="bginput" />
</td>
<td style='white-space:nowrap' width='1%'>
<input type="submit" value="Shout" class="button" />
<if condition="$vboptions[shout_extra_options]">
<input type='button' class='button' value='Clear' onclick='sb_Clear()' />
</if>
</td>
</tr>
</table>
<div style="height: 2px"></div>
</if>
</if>
<div id="vbshout" style="overflow:auto;height:{$vboptions['shout_box_height']}px;width:100%;">
Loading...
</div>
<if condition="$vboptions[shout_editor_position]">
<if condition="$bbuserinfo[userid] > 0">
<div style="height: 2px"></div>
<table width='100%' border='0' cellpadding='0' cellspacing='0'>
<tr>
<td width='100%'>
<input type="text" name="shout" style="width: 90%" class="bginput" />
</td>
<td style='white-space:nowrap' width='1%'>
<input type="submit" value="Shout" class="button" />
<input type='button' class='button' value='Clear' onclick='sb_Clear()' />
<input type='button' class='button' value='Smilies' onclick='sb_Smilies(this)' />
<input id='sb_mem_bold' type='button' class='button' style='font-weight:bold' value='B' onclick='sb_PropChange_Button(this, "fontWeight")' />
<input id='sb_mem_underline' type='button' class='button' style='text-decoration:underline' value='U' onclick='sb_PropChange_Button(this, "textDecoration")' />
<input id='sb_mem_italic' type='button' class='button' style='font-style:italic' value='I' onclick='sb_PropChange_Button(this, "fontStyle")' />
<select id='sb_color_mem' name='font_color' onchange='sb_PropChange(this, "color")'>
<option value="Default">Color [Default]</option>
<option value="#000000" style="color:#000000;">#000000</option>
<option value="#000033" style="color:#000033;">#000033</option>
<option value="#000066" style="color:#000066;">#000066</option>
<option value="#000099" style="color:#000099;">#000099</option>
<option value="#0000CC" style="color:#0000CC;">#0000CC</option>
<option value="#0000FF" style="color:#0000FF;">#0000FF</option>
<option value="#003300" style="color:#003300;">#003300</option>
<option value="#003333" style="color:#003333;">#003333</option>
<option value="#003366" style="color:#003366;">#003366</option>
<option value="#003399" style="color:#003399;">#003399</option>
<option value="#0033CC" style="color:#0033CC;">#0033CC</option>
<option value="#0033FF" style="color:#0033FF;">#0033FF</option>
<option value="#006600" style="color:#006600;">#006600</option>
<option value="#006633" style="color:#006633;">#006633</option>
<option value="#006666" style="color:#006666;">#006666</option>
<option value="#006699" style="color:#006699;">#006699</option>
<option value="#0066CC" style="color:#0066CC;">#0066CC</option>
<option value="#0066FF" style="color:#0066FF;">#0066FF</option>
<option value="#009900" style="color:#009900;">#009900</option>
<option value="#009933" style="color:#009933;">#009933</option>
<option value="#009966" style="color:#009966;">#009966</option>
<option value="#009999" style="color:#009999;">#009999</option>
<option value="#0099CC" style="color:#0099CC;">#0099CC</option>
<option value="#0099FF" style="color:#0099FF;">#0099FF</option>
<option value="#00CC00" style="color:#00CC00;">#00CC00</option>
<option value="#00CC33" style="color:#00CC33;">#00CC33</option>
<option value="#00CC66" style="color:#00CC66;">#00CC66</option>
<option value="#00CC99" style="color:#00CC99;">#00CC99</option>
<option value="#00CCCC" style="color:#00CCCC;">#00CCCC</option>
<option value="#00CCFF" style="color:#00CCFF;">#00CCFF</option>
<option value="#00FF00" style="color:#00FF00;">#00FF00</option>
<option value="#00FF33" style="color:#00FF33;">#00FF33</option>
<option value="#00FF66" style="color:#00FF66;">#00FF66</option>
<option value="#00FF99" style="color:#00FF99;">#00FF99</option>
<option value="#00FFCC" style="color:#00FFCC;">#00FFCC</option>
<option value="#00FFFF" style="color:#00FFFF;">#00FFFF</option>
<option value="#330000" style="color:#330000;">#330000</option>
<option value="#330033" style="color:#330033;">#330033</option>
<option value="#330066" style="color:#330066;">#330066</option>
<option value="#330099" style="color:#330099;">#330099</option>
<option value="#3300CC" style="color:#3300CC;">#3300CC</option>
<option value="#3300FF" style="color:#3300FF;">#3300FF</option>
<option value="#333300" style="color:#333300;">#333300</option>
<option value="#333333" style="color:#333333;">#333333</option>
<option value="#333366" style="color:#333366;">#333366</option>
<option value="#333399" style="color:#333399;">#333399</option>
<option value="#3333CC" style="color:#3333CC;">#3333CC</option>
<option value="#3333FF" style="color:#3333FF;">#3333FF</option>
<option value="#336600" style="color:#336600;">#336600</option>
<option value="#336633" style="color:#336633;">#336633</option>
<option value="#336666" style="color:#336666;">#336666</option>
<option value="#336699" style="color:#336699;">#336699</option>
<option value="#3366CC" style="color:#3366CC;">#3366CC</option>
<option value="#3366FF" style="color:#3366FF;">#3366FF</option>
<option value="#339900" style="color:#339900;">#339900</option>
<option value="#339933" style="color:#339933;">#339933</option>
<option value="#339966" style="color:#339966;">#339966</option>
<option value="#339999" style="color:#339999;">#339999</option>
<option value="#3399CC" style="color:#3399CC;">#3399CC</option>
<option value="#3399FF" style="color:#3399FF;">#3399FF</option>
<option value="#33CC00" style="color:#33CC00;">#33CC00</option>
<option value="#33CC33" style="color:#33CC33;">#33CC33</option>
<option value="#33CC66" style="color:#33CC66;">#33CC66</option>
<option value="#33CC99" style="color:#33CC99;">#33CC99</option>
<option value="#33CCCC" style="color:#33CCCC;">#33CCCC</option>
<option value="#33CCFF" style="color:#33CCFF;">#33CCFF</option>
<option value="#33FF00" style="color:#33FF00;">#33FF00</option>
<option value="#33FF33" style="color:#33FF33;">#33FF33</option>
<option value="#33FF66" style="color:#33FF66;">#33FF66</option>
<option value="#33FF99" style="color:#33FF99;">#33FF99</option>
<option value="#33FFCC" style="color:#33FFCC;">#33FFCC</option>
<option value="#33FFFF" style="color:#33FFFF;">#33FFFF</option>
<option value="#660000" style="color:#660000;">#660000</option>
<option value="#660033" style="color:#660033;">#660033</option>
<option value="#660066" style="color:#660066;">#660066</option>
<option value="#660099" style="color:#660099;">#660099</option>
<option value="#6600CC" style="color:#6600CC;">#6600CC</option>
<option value="#6600FF" style="color:#6600FF;">#6600FF</option>
<option value="#663300" style="color:#663300;">#663300</option>
<option value="#663333" style="color:#663333;">#663333</option>
<option value="#663366" style="color:#663366;">#663366</option>
<option value="#663399" style="color:#663399;">#663399</option>
<option value="#6633CC" style="color:#6633CC;">#6633CC</option>
<option value="#6633FF" style="color:#6633FF;">#6633FF</option>
<option value="#666600" style="color:#666600;">#666600</option>
<option value="#666633" style="color:#666633;">#666633</option>
<option value="#666666" style="color:#666666;">#666666</option>
<option value="#666699" style="color:#666699;">#666699</option>
<option value="#6666CC" style="color:#6666CC;">#6666CC</option>
<option value="#6666FF" style="color:#6666FF;">#6666FF</option>
<option value="#669900" style="color:#669900;">#669900</option>
<option value="#669933" style="color:#669933;">#669933</option>
<option value="#669966" style="color:#669966;">#669966</option>
<option value="#669999" style="color:#669999;">#669999</option>
<option value="#6699CC" style="color:#6699CC;">#6699CC</option>
<option value="#6699FF" style="color:#6699FF;">#6699FF</option>
<option value="#66CC00" style="color:#66CC00;">#66CC00</option>
<option value="#66CC33" style="color:#66CC33;">#66CC33</option>
<option value="#66CC66" style="color:#66CC66;">#66CC66</option>
<option value="#66CC99" style="color:#66CC99;">#66CC99</option>
<option value="#66CCCC" style="color:#66CCCC;">#66CCCC</option>
<option value="#66CCFF" style="color:#66CCFF;">#66CCFF</option>
<option value="#66FF00" style="color:#66FF00;">#66FF00</option>
<option value="#66FF33" style="color:#66FF33;">#66FF33</option>
<option value="#66FF66" style="color:#66FF66;">#66FF66</option>
<option value="#66FF99" style="color:#66FF99;">#66FF99</option>
<option value="#66FFCC" style="color:#66FFCC;">#66FFCC</option>
<option value="#66FFFF" style="color:#66FFFF;">#66FFFF</option>
<option value="#990000" style="color:#990000;">#990000</option>
<option value="#990033" style="color:#990033;">#990033</option>
<option value="#990066" style="color:#990066;">#990066</option>
<option value="#990099" style="color:#990099;">#990099</option>
<option value="#9900CC" style="color:#9900CC;">#9900CC</option>
<option value="#9900FF" style="color:#9900FF;">#9900FF</option>
<option value="#993300" style="color:#993300;">#993300</option>
<option value="#993333" style="color:#993333;">#993333</option>
<option value="#993366" style="color:#993366;">#993366</option>
<option value="#993399" style="color:#993399;">#993399</option>
<option value="#9933CC" style="color:#9933CC;">#9933CC</option>
<option value="#9933FF" style="color:#9933FF;">#9933FF</option>
<option value="#996600" style="color:#996600;">#996600</option>
<option value="#996633" style="color:#996633;">#996633</option>
<option value="#996666" style="color:#996666;">#996666</option>
<option value="#996699" style="color:#996699;">#996699</option>
<option value="#9966CC" style="color:#9966CC;">#9966CC</option>
<option value="#9966FF" style="color:#9966FF;">#9966FF</option>
<option value="#999900" style="color:#999900;">#999900</option>
<option value="#999933" style="color:#999933;">#999933</option>
<option value="#999966" style="color:#999966;">#999966</option>
<option value="#999999" style="color:#999999;">#999999</option>
<option value="#9999CC" style="color:#9999CC;">#9999CC</option>
<option value="#9999FF" style="color:#9999FF;">#9999FF</option>
<option value="#99CC00" style="color:#99CC00;">#99CC00</option>
<option value="#99CC33" style="color:#99CC33;">#99CC33</option>
<option value="#99CC66" style="color:#99CC66;">#99CC66</option>
<option value="#99CC99" style="color:#99CC99;">#99CC99</option>
<option value="#99CCCC" style="color:#99CCCC;">#99CCCC</option>
<option value="#99CCFF" style="color:#99CCFF;">#99CCFF</option>
<option value="#99FF00" style="color:#99FF00;">#99FF00</option>
<option value="#99FF33" style="color:#99FF33;">#99FF33</option>
<option value="#99FF66" style="color:#99FF66;">#99FF66</option>
<option value="#99FF99" style="color:#99FF99;">#99FF99</option>
<option value="#99FFCC" style="color:#99FFCC;">#99FFCC</option>
<option value="#99FFFF" style="color:#99FFFF;">#99FFFF</option>
<option value="#CC0000" style="color:#CC0000;">#CC0000</option>
<option value="#CC0033" style="color:#CC0033;">#CC0033</option>
<option value="#CC0066" style="color:#CC0066;">#CC0066</option>
<option value="#CC0099" style="color:#CC0099;">#CC0099</option>
<option value="#CC00CC" style="color:#CC00CC;">#CC00CC</option>
<option value="#CC00FF" style="color:#CC00FF;">#CC00FF</option>
<option value="#CC3300" style="color:#CC3300;">#CC3300</option>
<option value="#CC3333" style="color:#CC3333;">#CC3333</option>
<option value="#CC3366" style="color:#CC3366;">#CC3366</option>
<option value="#CC3399" style="color:#CC3399;">#CC3399</option>
<option value="#CC33CC" style="color:#CC33CC;">#CC33CC</option>
<option value="#CC33FF" style="color:#CC33FF;">#CC33FF</option>
<option value="#CC6600" style="color:#CC6600;">#CC6600</option>
<option value="#CC6633" style="color:#CC6633;">#CC6633</option>
<option value="#CC6666" style="color:#CC6666;">#CC6666</option>
<option value="#CC6699" style="color:#CC6699;">#CC6699</option>
<option value="#CC66CC" style="color:#CC66CC;">#CC66CC</option>
<option value="#CC66FF" style="color:#CC66FF;">#CC66FF</option>
<option value="#CC9900" style="color:#CC9900;">#CC9900</option>
<option value="#CC9933" style="color:#CC9933;">#CC9933</option>
<option value="#CC9966" style="color:#CC9966;">#CC9966</option>
<option value="#CC9999" style="color:#CC9999;">#CC9999</option>
<option value="#CC99CC" style="color:#CC99CC;">#CC99CC</option>
<option value="#CC99FF" style="color:#CC99FF;">#CC99FF</option>
<option value="#CCCC00" style="color:#CCCC00;">#CCCC00</option>
<option value="#CCCC33" style="color:#CCCC33;">#CCCC33</option>
<option value="#CCCC66" style="color:#CCCC66;">#CCCC66</option>
<option value="#CCCC99" style="color:#CCCC99;">#CCCC99</option>
<option value="#CCCCCC" style="color:#CCCCCC;">#CCCCCC</option>
<option value="#CCCCFF" style="color:#CCCCFF;">#CCCCFF</option>
<option value="#CCFF00" style="color:#CCFF00;">#CCFF00</option>
<option value="#CCFF33" style="color:#CCFF33;">#CCFF33</option>
<option value="#CCFF66" style="color:#CCFF66;">#CCFF66</option>
<option value="#CCFF99" style="color:#CCFF99;">#CCFF99</option>
<option value="#CCFFCC" style="color:#CCFFCC;">#CCFFCC</option>
<option value="#CCFFFF" style="color:#CCFFFF;">#CCFFFF</option>
<option value="#FF0000" style="color:#FF0000;">#FF0000</option>
<option value="#FF0033" style="color:#FF0033;">#FF0033</option>
<option value="#FF0066" style="color:#FF0066;">#FF0066</option>
<option value="#FF0099" style="color:#FF0099;">#FF0099</option>
<option value="#FF00CC" style="color:#FF00CC;">#FF00CC</option>
<option value="#FF00FF" style="color:#FF00FF;">#FF00FF</option>
<option value="#FF3300" style="color:#FF3300;">#FF3300</option>
<option value="#FF3333" style="color:#FF3333;">#FF3333</option>
<option value="#FF3366" style="color:#FF3366;">#FF3366</option>
<option value="#FF3399" style="color:#FF3399;">#FF3399</option>
<option value="#FF33CC" style="color:#FF33CC;">#FF33CC</option>
<option value="#FF33FF" style="color:#FF33FF;">#FF33FF</option>
<option value="#FF6600" style="color:#FF6600;">#FF6600</option>
<option value="#FF6633" style="color:#FF6633;">#FF6633</option>
<option value="#FF6666" style="color:#FF6666;">#FF6666</option>
<option value="#FF6699" style="color:#FF6699;">#FF6699</option>
<option value="#FF66CC" style="color:#FF66CC;">#FF66CC</option>
<option value="#FF66FF" style="color:#FF66FF;">#FF66FF</option>
<option value="#FF9900" style="color:#FF9900;">#FF9900</option>
<option value="#FF9933" style="color:#FF9933;">#FF9933</option>
<option value="#FF9966" style="color:#FF9966;">#FF9966</option>
<option value="#FF9999" style="color:#FF9999;">#FF9999</option>
<option value="#FF99CC" style="color:#FF99CC;">#FF99CC</option>
<option value="#FF99FF" style="color:#FF99FF;">#FF99FF</option>
<option value="#FFCC00" style="color:#FFCC00;">#FFCC00</option>
<option value="#FFCC33" style="color:#FFCC33;">#FFCC33</option>
<option value="#FFCC66" style="color:#FFCC66;">#FFCC66</option>
<option value="#FFCC99" style="color:#FFCC99;">#FFCC99</option>
<option value="#FFCCCC" style="color:#FFCCCC;">#FFCCCC</option>
<option value="#FFCCFF" style="color:#FFCCFF;">#FFCCFF</option>
<option value="#FFFF00" style="color:#FFFF00;">#FFFF00</option>
<option value="#FFFF33" style="color:#FFFF33;">#FFFF33</option>
<option value="#FFFF66" style="color:#FFFF66;">#FFFF66</option>
<option value="#FFFF99" style="color:#FFFF99;">#FFFF99</option>
<option value="#FFFFCC" style="color:#FFFFCC;">#FFFFCC</option>
<option value="#FFFFFF" style="color:#FFFFFF;">#FFFFFF</option>
</select>
<select id='sb_font_mem' name='font_selector' onchange='sb_PropChange(this, "fontFamily")'>
<option value="Default">Font Face [Default]</option>
<option value="Arial">Arial</option>
<option value="Arial Black">Arial Black</option>
<option value="Arial Narrow">Arial Narrow</option>
<option value="Book Antiqua">Book Antiqua</option>
<option value="Century Gothic">Century Gothic</option>
<option value="Comic Sans MS">Comic Sans MS</option>
<option value="Courier New">Courier New</option>
<option value="Fixedsys">Fixedsys</option>
<option value="Franklin Gothic Medium">Franklin Gothic Medium</option>
<option value="Garamond">Garamond</option>
<option value="Georgia">Georgia</option>
<option value="Impact">Impact</option>
<option value="Lucida Console">Lucida Console</option>
<option value="Lucida Sans Unicode">Lucida Sans Unicode</option>
<option value="Microsoft Sans Serif">Microsoft Sans Serif</option>
<option value="Palatino Linotype">Palatino Linotype</option>
<option value="System">System</option>
<option value="Tahoma">Tahoma</option>
<option value="Times New Roman">Times New Roman</option>
<option value="Trebuchet MS">Trebuchet MS</option>
<option value="Verdana">Verdana</option>
</if></if>
</select>
</td>
</tr>
</table>
</td>
</tr>
</tbody>
</form>
</td>
<script type='text/javascript'>
<!--
Renada
02-08-2007, 05:49 PM
This will only work when your cmps and forum are not in the same location.
notes: After refresh format bar always goes back to default.
:The code below is the upper code of the entire code that means U only chnage the code until u hit <script type='text/javascript'>
<!--
Below that use the code orginally posted in this thread.
goodluck.
<td class="alt1" align="left" width="100%">
<form action="forums/vbshout.php?{$session['sessionurl']}" method="post" name="vbshoutform" onsubmit="return postShout(this)">
<input type='hidden' name='do' value='shout' />
<input type='hidden' name='color' />
<input type='hidden' name='fontFamily' />
<input type='hidden' name='fontWeight' />
<input type='hidden' name='textDecoration' />
<input type='hidden' name='fontStyle' />
<div id='shout_emo' style='display:none'>
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
<tr>
<td class="tcat" align="center">
Emoticons
</td>
</tr>
<tr>
<td class='alt2' width='100%' height='100%' align='center' valign='top'>
<a href="#" onclick="return sb_Smilie(':)')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_smile.gif" alt="Smile" border="0" /></a> <a href="#" onclick="return sb_Smilie(':whaaz')"><img src="http://www.clanlife.eu/forums/images/smilies/whatever.gif" alt="whatever" border="0" /></a> <a href="#" onclick="return sb_Smilie(':shuffle')"><img src="http://www.clanlife.eu/forums/images/smilies/shuffle.gif" alt="shuffle" border="0" /></a> <a href="#" onclick="return sb_Smilie(':twisted:')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_twisted.gif" alt="Twisted Evil" border="0" /></a> <a href="#" onclick="return sb_Smilie('nod')"><img src="http://www.clanlife.eu/forums/images/smilies/nod1.gif" alt=":nod" border="0" /></a> <a href="#" onclick="return sb_Smilie(':?:')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_question.gif" alt="Question" border="0" /></a> <a href="#" onclick="return sb_Smilie(':twisted:')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_twisted.gif" alt="Twisted Evil" border="0" /></a> <a href="#" onclick="return sb_Smilie(':p')"><img src="http://www.clanlife.eu/forums/images/smilies/icon_bleh.gif" alt="Bleh" border="0" /></a>
</td>
</tr>
</table>
<br />
</div>
Hi Pearl,
Thank you very much for posting this. In the script you have all the smilies hard coded on your site - do we have to hard code every smilie to make them work? Right now they're all linked to you :)
Regards,
Renada
Thanks Pearl.
Sure if we could have 5 random smileys instead of 10 hardcoded ones it will be ok! :D
Pearl
02-10-2007, 09:15 AM
link then to your sites forum/smilies folder:p
mat.knott
02-23-2007, 03:47 PM
since installing vbshout, my site seems to crash and no link will work. i have to close IE and restart it for it to work again... what could cause this?
also on my vbadvanced home page it just says loading... how did you guys get round this as isee some have fixed it..
vbshout 2.01? where did you get this from
The Wall
02-28-2007, 04:18 AM
hey any word on this working with vB 3.6.4 and vBshout 2.1?
I have this (v2.1) working with vB 3.6.4 and vBadvanced CMPS.
However -
It works correctly on the home page and other pages that I've added to the Site Nav module but when you click a header link eg. 'Calendar' it just displays the shout input box, shout button and the word 'loading' under that. Shouts that are visible on the home page are no longer visible and when you try to add a shout nothing happens.
The CMPS file is in my root and the vB files are in another directory. I've found and changed the paths (3) in the template file as it says in the instructions.
Does anyone have any suggestions?
localhost
03-07-2007, 03:54 PM
i have vba index.php in the root of the site and the forum files in a directory called forum.
I got everything working accept the username links to http://www.mysite.co.uk/member.php and not http://www.mysite.co.uk/forum/member.php
what would i need to change to get this working thanks?
richard4339
03-08-2007, 12:45 AM
Okay, two questions, if there's anyone around to look.
1. I used the side module version on http://www.squarextreme.com. The input and submit fields are showing off to the side. How can I correct this?
2. I've noticed that this takes the timestamp away from the posts, which is obviously neccessary for the sidebar. Can it be kept for the forumhome version?
Edit: localhost, you probably have the link to your forums wrong. You might want to double-check your settings in both the vb options and vba options.
localhost
03-08-2007, 06:43 PM
all links are correct
Black Tiger
03-09-2007, 01:07 AM
I'm running VBA and VB 3.6.5, having the same problem as in message #64.
When I choose the editor position blow the messages it moves completely to the right side almost out of range.
When I choose above messages, all is fine.
I have it on a right side column.
How can I fix this?
richard4339
03-12-2007, 08:41 PM
I'm running VBA and VB 3.6.5, having the same problem as in message #64.
When I choose the editor position blow the messages it moves completely to the right side almost out of range.
When I choose above messages, all is fine.
I have it on a right side column.
How can I fix this?
Sounds like what was happening to me. I'm going to try moving the bar to the top to see if it fixes my problem.
Black Tiger
03-13-2007, 09:10 PM
And have another problem now. I set the height of the vbshout in the vbshout main settings to a height of 600 pixels like my adsense is too.
But it does not matter, even if I set it to 300, it just gets longer and longer. Does anybody know how to fix this?
ABeautifulBrown
03-16-2007, 05:12 AM
the vbshout on the regular homepage uses the color you used last. the cmps doesn't- how can I get this to work?
richard4339
03-16-2007, 06:05 AM
Causing me far too much uproar. Uninstalling.
Black Tiger
03-16-2007, 02:52 PM
It would be nice if the coder could give a "read" confirm so we know he will be working on the issue's.
eczantrik
03-16-2007, 11:01 PM
shoutbox working but
when a did it with module like you said
it stpos at loading
i only see loading at module
how can i correct that
i think i did what you said
thank you
Black Tiger
03-17-2007, 04:45 PM
Anyone giving support on this? It has several problems.
1.) When placing shout below messages, the layout is messed up.
2.) When changing the max. length of the shoutbox, it has no effekt, box keeps on growing.
Black Tiger
03-17-2007, 04:47 PM
it stpos at loading
Check if you did all steps, my guess is you forgot to disable the part in the original vbshout section under plugins.
Zachariah
03-18-2007, 02:47 PM
What no text attachment ?
:p
Black Tiger
03-18-2007, 03:24 PM
Well... I clicked "uninstall" due to lack of support.
Black Tiger
03-21-2007, 03:09 AM
Clicked install again thanks to the msg #86 of Harly 77.
However it's not 100%. Scrollbars are overlapping the text a little (which does not look nice), and the problem when putting the shout button below still exist.
So I still hope there will be some support about this. Can't you help please Fleabag? At least for the scrollbars not overlapping text then?
Or anybody else?
xtumen
03-27-2007, 10:40 PM
Steps 4 a) (not B) + 4 c) worked perfectly for me - vertical vbshout without any troubles.
Black Tiger
03-28-2007, 12:50 AM
You used 4 a.) instead of b? But it says 4a is for a centre module, strange.
xtumen
03-28-2007, 03:43 AM
You used 4 a.) instead of b? But it says 4a is for a centre module, strange.
Seems like the only difference is formmating of shouts, which is step c. Don't get what should be different in a and b actually - the shape is just a matter of table cell size.
Black Tiger
03-28-2007, 02:32 PM
Oke thanks for you help!
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.