PDA

View Full Version : [AJAX] vBShout v2.0


Pages : 1 2 3 4 5 6 7 8 [9] 10 11 12 13 14

rogersnm
07-24-2006, 02:32 PM
I'll just say that i have an average of 8% server load and i have the shoutbox running my host doesn't have a problem ;)

And yes there is version 2.0 of vbshout at vbh :D:D:D:D

TygerTyger
07-24-2006, 09:47 PM
The server load for this is shockingly high. Unless you own your own server then you can probably kiss this mod goodbye.

Well that's not really true. But people will so insist on using ever-cheaper hosts, thus you get what you pay for.

I'm on shared, it's not cheap, I can run the Shoutbox fine and it gets more than 1000 shouts a week.

Rickie3
07-24-2006, 10:42 PM
I dont have a problem with my host either,i'm on shared and I pay $100 USD annually for my hosting package,and I dont find the shout to be server intensive,It is the most used feature on my board and my forum would be naked without it,with over a 1000+ shouts a week,so at the end of the day its all down to what hosting package you bought

Watched
07-25-2006, 04:53 AM
I would just like to point out version 5.0 is out out http://gzevolution.net/ The site is currently down but once it's up enjoy the new hack..


erm.. inferno shout v5.0 is for websites, not for forums. current vbshout (shoutbox for forums) is still only 2.0

Ronin Storm
07-25-2006, 06:20 AM
I'll just say that i have an average of 8% server load and i have the shoutbox running my host doesn't havea porblem

Have you checked the overall bandwidth usage of the shoutbox versus, say, anything else on vbulletin? I have a memory that it's something like two magnitudes difference. My site has recently changed hardware (I run on a dedicated server) and with the change I no longer have access to my webstats... when I have them again I'll post what I see.

The only thing I've done differently is to change the ' symbol to " &_#39;" (added an underscore cuz the post converts it to an apostrophe)

It shouldn't matter what the translation is. I use the entity reference because they are effectively equivalent. However I could just as easily used "a89fysfh" or some other random collection of characters as long as I'm pretty sure they're a unique string. The changes I've made convert to the entity on storage but convert it back to an apostrophe for display.

because I read somewhere that ' may not work in IE.

I have never had issues with ' as an entity reference. It's one of the more basic ones. XHTML, under some circumstances, appears to have trouble with certain entity references it doesn't recognise ( ) but then I just use the unicode for those ones ( );

Edit: Realised I'd not responded to everyone I wanted to.

rogersnm
07-25-2006, 09:51 AM
not any noticable difference, guess it depends on your host :p

I get 1000+ shouts a day

ps: read the sig

Rio Grande
07-25-2006, 07:20 PM
...

BUG FIX (24 July 2006)

I discovered that there is an issue. Roughly, the issue occurs when you post a shout that has apostrophes, then go to edit it, submit that edit (which also has apostrophes in it) and then edit it again. The second edit retains the original apostrophe bug. This is because the AJAX edit was not also protected in the same way as the original shout.

The changes below should resolve this issue.

In vbshout.php, on approx line 518. find:

$vbulletin->GPC['shout'] = convert_urlencoded_unicode($vbulletin->GPC['shout']);

Replace with:

$vbulletin->GPC['shout'] = convert_urlencoded_unicode(str_replace("'", "'", $vbulletin->GPC['shout']));

On approx line 524, find:

$Shout['s_shout'] = bbcodeparser($Shout['s_shout']);

Replace with:

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

And that should be okay now. I believe. :)

Let me know if you have any issues with it!

I use this fix for the "Apostrophe Bug"
https://vborg.vbsupport.ru/showpost.php?p=958674&postcount=1624

and I have the same problem with the edit field. But when I apply your Fix it doesn't work :-/

>> thisgeek : thanks works great ;)

rogersnm
07-25-2006, 07:34 PM
you can get the new version which has no bugs and lower server intensity over at vBH read my sig :)

Renmiri
07-25-2006, 10:42 PM
How come the RPG Inferno (lite) battles don't use AJAX ? Does the full Inferno have it ?

In an active forum this turn based system is soooo slow! Real battles are not turn based..

rb290
07-26-2006, 01:38 AM
i seen on some forums that shoutbox doesnt appear until you register,
can anyone tell me how this could be done ?

JimmyN
07-26-2006, 07:25 AM
goto admincp and lookup shoutbox settings, then tell it to show to guests or not etc

Thanks

Ronin Storm
07-26-2006, 08:30 AM
I use this fix for the "Apostrophe Bug"
https://vborg.vbsupport.ru/showp...postcount=1624

and I have the same problem with the edit field. But when I apply your Fix it doesn't work :-/

The fix you've highlighted there is unrelated to the issue I'm working on resolving. Brad's fix to his code was to stop entity references appearing after he patched the injection vulnerability. I'm assuming that you've already applied Brad's essential fixes and I build on his work.

Mine is not about fixing the appearance of " or whatever in your shoutbox. Mine is about being about to edit shouts that have the apostrophe character...

'

... in them. If you attempt to edit a shout, prior to my fix, with an apostrophe in it then the text displayed to you will be truncated to the first apostrophe. Not exactly what you need... :)

Make sense?

you can get the new version which has no bugs and lower server intensity over at vBH

Ah! Thanks rogersnm. I hadn't realised that ZT was back, just elsewhere. I'll check that out.

thisgeek
07-26-2006, 09:22 AM
Quite a few pages back, Brad (I think) posted an alternate to the vBShout_fixed_v3.zip that is attached up top. The alternated solved my " problems.

blacklancer
07-26-2006, 02:38 PM
maybe this has been discussed, but i dont feel like reading through 135 pages while i'm at work. anyways....

is there a way to get a report generated, that lists all the shouts made in the shoutbox? i know there's the archive, but i was wondering if i could set it up to send me a pm, od post them in a designated forum.

i have some users that like to start trouble, and i would like to review the shoutbox. please let me know if anyone can help. thanks!

Shazz
07-26-2006, 03:39 PM
Shoutbox version for the 3.6.0 , and this one, aren't they like the same?
if so why would it be codded different.
________
Mercedes-Benz SLC-Class specifications (http://www.mercedes-wiki.com/wiki/Mercedes-Benz_SLC-Class)

rogersnm
07-26-2006, 03:41 PM
maybe this has been discussed, but i dont feel like reading through 135 pages while i'm at work. anyways....

is there a way to get a report generated, that lists all the shouts made in the shoutbox? i know there's the archive, but i was wondering if i could set it up to send me a pm, od post them in a designated forum.

i have some users that like to start trouble, and i would like to review the shoutbox. please let me know if anyone can help. thanks!

if you read the sig and download the new version which uses flatfile - saves to a file and a database - then it will be quite easy to generate a report, easier than this...

blacklancer
07-26-2006, 03:56 PM
thank you. any advice on how to get the report. i'm a newb when it comes to this

Shazz
07-26-2006, 04:04 PM
thank you. any advice on how to get the report. i'm a newb when it comes to this
You mean like Moderate Shout.
Like if they say something bad, ?
________
hot box vaporizers (http://hotboxvaporizers.com)

blacklancer
07-26-2006, 04:08 PM
no, i have a few guys who act like they're 5 sometimes and i need to babysit them :lol:

i just want to be able to read shouts (like in the archive), but more on a page, and in the proper reading order.

Shazz
07-26-2006, 04:14 PM
no, i have a few guys who act like they're 5 sometimes and i need to babysit them :lol:

i just want to be able to read shouts (like in the archive), but more on a page, and in the proper reading order.
Sometiems i go crazy in a shoutbox too...
I ususally just censor out words , you shouldn't need to babysit them really, i mean its a shoutbox ... not like a thread or anything personal like freeposting
________
buy herbalaire (http://www.vaporshop.com/herbalaire-vaporizer.html)

rogersnm
07-26-2006, 04:44 PM
thank you. any advice on how to get the report. i'm a newb when it comes to this

well you could make a second flatfile which clears every week/day and pm's you with the link :)

CrossBones
07-27-2006, 02:39 AM
I know I read about problems with the shout box in Safari but can't locate the fix(s).

Buddy of mine just installed the shout Box and when I view in Safari I get this huge shout box.

The other problem is that the shouts don't register unless I refresh or it takes a minute or more. I mean it's AJAX right? Shouldn't that work fine in Safari or is there a setting or something that has to be clicked on?

I tried it in FF and it works fine on his site.

Isn't there a fix for the large shout box AND what's the deal with the slowness. I really need this hack but it has to work in Safari for me.

Any help or direction would be appreciated.

khad
07-27-2006, 02:49 AM
Is there any way to disable the AJAX part of this mod? I loved "Shoutbox Hack 1.04b". I'm guessing the only alternative is to use Chatbox Lite but I'm afraid what will happen if you can't moderate it.

Chicago_VLNU_4s
07-27-2006, 03:26 AM
nice... easy to use and installed with tha quickness!

Chicago_VLNU_4s
07-27-2006, 03:32 AM
can anyone tell me how to make it bigger in height?

TTG
07-27-2006, 04:37 AM
can anyone tell me how to make it bigger in height?

vbshout options in your admincp >> Shoutbox Height
Change the height of the 'shouts' display element in pixels

Chicago_VLNU_4s
07-27-2006, 06:19 AM
vbshout options in your admincp >> Shoutbox Height
Change the height of the 'shouts' display element in pixels


can u explain more specifically? im new to this. would this be under

PLUGIN SYSTEM > MANAGE PRODUCTS > vBShout> EDIT/GO ?

if so, then what, cuz i dont see anything to what you said in there

Chicago_VLNU_4s
07-27-2006, 06:23 AM
are you talkin about this

Install:

$Query = "CREATE TABLE `".TABLE_PREFIX."shout` (
`sid` int(15) NOT NULL auto_increment,
`s_by` int(15) NOT NULL default '0',
`s_time` int(15) NOT NULL default '0',
`s_shout` text NOT NULL,
`s_data` text NOT NULL,
`s_me` tinyint(2) NOT NULL default '0',
PRIMARY KEY (`sid`)
) TYPE=MyISAM;";

$vbulletin->db->query($Query);

?

Rickie3
07-27-2006, 06:25 AM
its under vbulletin Options in your adminCP scroll down till you find vbshout then edit from there

Chicago_VLNU_4s
07-27-2006, 06:25 AM
ok nevermind i found it in GENERAL OPTIONS lol thanks anyways

CrossBones
07-27-2006, 12:55 PM
I know I read about problems with the shout box in Safari but can't locate the fix(s).

Buddy of mine just installed the shout Box and when I view in Safari I get this huge shout box.

The other problem is that the shouts don't register unless I refresh or it takes a minute or more. I mean it's AJAX right? Shouldn't that work fine in Safari or is there a setting or something that has to be clicked on?

I tried it in FF and it works fine on his site.

Isn't there a fix for the large shout box AND what's the deal with the slowness. I really need this hack but it has to work in Safari for me.

Any help or direction would be appreciated.Any help on this guys? :cross-eyed:

rogersnm
07-27-2006, 01:01 PM
I believe safari has problems with ajax and javascript actually.

rogersnm
07-27-2006, 01:02 PM
Is there any way to disable the AJAX part of this mod? I loved "Shoutbox Hack 1.04b". I'm guessing the only alternative is to use Chatbox Lite but I'm afraid what will happen if you can't moderate it.

Ajax is bit pretty well into it so in short you'd be coding a completely different mod if you were to do that. Don't get me wrong it would be possible but i would need ZT's permission...

smirnoff
07-27-2006, 03:27 PM
hi, just wanna know whats append to my shoutbox

when i try to send some special caracters like " or & or > or < or / \ etc [ french forum] it senf me the ascii caracter
like &quot; &amp; smth like that
anyone can help me?

CrossBones
07-27-2006, 11:07 PM
I believe safari has problems with ajax and javascript actually.That doesn't sound right...

Most of vB is built around AJAX -- all the inline posting, editing, modding etc is AJAX -- right? It all works fine in Safari.

But this hack doesn't. And then there is the issue of the huge shout box that expands to about 10 inces... :eek:

Isn't there a fix for the slowness and the large box (thought I read about it somewhere).

I really like it but it has to be functional in Safari.

da420
07-27-2006, 11:14 PM
hi, just wanna know whats append to my shoutbox

when i try to send some special caracters like " or & or > or < or / \ etc [ french forum] it senf me the ascii caracter
like &quot; &amp; smth like that
anyone can help me?

This seems to get asked every 10 posts. It's not a big deal, but it gets kind of redundant having to post it over and over again. I find that the search thread feature works very nicely.

https://vborg.vbsupport.ru/showpost.php?p=958674&postcount=1624

smirnoff
07-27-2006, 11:18 PM
thanks but on witch keyword do u search that?

thanks again its work

Trana
07-28-2006, 12:50 AM
That doesn't sound right...

Most of vB is built around AJAX -- all the inline posting, editing, modding etc is AJAX -- right? It all works fine in Safari.

But this hack doesn't. And then there is the issue of the huge shout box that expands to about 10 inces... :eek:

Isn't there a fix for the slowness and the large box (thought I read about it somewhere).

I really like it but it has to be functional in Safari.

Safari ABSOLUTELY has problems with AJAX, its a known issue. Try looking at the same page with IE or Firefox, if it looks perfect then it is how Safari is handling the jscript.

The slowness has nothing to do with AJAX and really cannot be fixed, it is a network speed/utilization issue, not an AJAX coding problem.

Trana
07-28-2006, 12:55 AM
Any help on this guys? :cross-eyed:

I don't think you understand how AJAX works (and to be honest, this mod is not a very good choice to demonstrate what AJAX is supposed to be used for).

The shouts only refresh every few seconds because that is the refresh interval defined in the code. If you lessen it you will see the shouts faster but you will dramatically increase load and network utilization. If you are running this on a shared server then your service provider will probably shut you down. If you are on a dedicated server, the ISP may complain to you about the bandwidth utilization or try and charge you for the usage.

Again, this really isn't a very good demonstration of what AJAX is for, it has dynamic content and must be fully refreshed by all browsers every interval, so the fact that the whole page doesn't reload is nice but could be accomplished with iframes or something else.

If you understand RSS, this is the equivalent of turning your RSS reader up to check a news source every 5 seconds. There isn't much you can do to optimize this if 100 people are sitting on your homepage watching the shouts go by.

Chicago_VLNU_4s
07-28-2006, 01:57 AM
This seems to get asked every 10 posts. It's not a big deal, but it gets kind of redundant having to post it over and over again. I find that the search thread feature works very nicely.

https://vborg.vbsupport.ru/showpost.php?p=958674&postcount=1624

thank you! i had this problem too!

CrossBones
07-28-2006, 02:10 AM
Safari ABSOLUTELY has problems with AJAX, its a known issue. Try looking at the same page with IE or Firefox, if it looks perfect then it is how Safari is handling the jscript.Thanks man...I guess I don't fully understand the issues involved. But I do now understand that this hack will not work properly with Safari. At least I can stop trying to put a square peg in a round hole.

The slowness has nothing to do with AJAX and really cannot be fixed, it is a network speed/utilization issue, not an AJAX coding problem.But if that is the case why does it work so quickly in FireFox and not Safari (on the save network/server)? Safari just wil not process the information (shouts) without refreshing. Firefox displays the shouts almost instantly. Again I suppose it's an issue with Safari and I guess I'll just have to accept that.

Thanks again for the input.

rogersnm
07-28-2006, 07:48 AM
You can speed up various things and lower your server load by getting the new shoutbox.

let me explain: lower sever load becuase it uses the flatfile to retrieve the shouts rather than the db and it speeds up the archive edit. Plus fixes all this bug: " < and >.

just as a not you could set it to refresh every 0.1 second......

if you want your server to blow up.

rogersnm
07-28-2006, 07:52 AM
I don't think you understand how AJAX works (and to be honest, this mod is not a very good choice to demonstrate what AJAX is supposed to be used for).

I think it's quite a good mod to demostrate, it strings together a number of function: Edit, Delete, Update and Retrieve. Which ends up in it being a very good example of the power of ajax and a good demo. Even if some of the code is a bit dodgy.

i my self am working on an ajax mod right now which has 2 of those functions: http://forums.perfectforce.com/ajaxsig.php and http://forums.perfectforce.com/ajaxedit.php <-- that one still has issues with a query or 2

GoTTi
07-28-2006, 09:44 AM
i had to remove this earlier today because it was lagging the server quite bad, and what i did was disable it first, then i uninstalled it, and the server locked up for like 3 minutes, then the processes were shooting up to 75%.

i had to force the server restart, and manually make services start.

i went to put the shoutbox back on, and now i get this error when its importing the plugin:


Database error in vBulletin 3.5.4:

Invalid SQL:

REPLACE INTO phrase
(languageid, phrasetypeid, varname, text, product)
VALUES
(-1, 5000, 'setting_shout_banned_perms_desc', 'Choose access permissions for banned users, by default they will not be able to post shouts.', '_vbshout'),(-1, 5000, 'setting_shout_banned_perms_title', 'Banned Permissions', '_vbshout'),(-1, 5000, 'setting_shout_banned_usergroups_desc', 'Enter banned usergroups here, split each UsergroupID with a comma, like so: 1,2,3', '_vbshout'),(-1, 5000, 'setting_shout_banned_usergroups_title', 'Banned Usergroups', '_vbshout'),(-1, 5000, 'setting_shout_banned_users_desc', 'Enter banned users here, split each UserID with a comma, like so: 1,2,3', '_vbshout'),(-1, 5000, 'setting_shout_banned_users_title', 'Banned Users', '_vbshout'),(-1, 5000, 'setting_shout_bbcode_desc', 'Allow users to use vBCode/Smilies within their shouts', '_vbshout'),(-1, 5000, 'setting_shout_bbcode_title', 'Allow vBCode/Smilies', '_vbshout'),(-1, 5000, 'setting_shout_box_height_desc', 'Change the height of the \'shouts\' display element in pixels', '_vbshout'),(-1, 5000, 'setting_shout_box_height_title', 'Shoutbox Height', '_vbshout'),(-1, 5000, 'setting_shout_can_commnd_desc', 'Can admins/super moderators use special commands in the chat?<br />\r\n(Please refer to the thread on vBulletin.org for reference to the commands for now)', '_vbshout'),(-1, 5000, 'setting_shout_can_commnd_title', 'Command Activation', '_vbshout'),(-1, 5000, 'setting_shout_display_desc', 'Number of shouts to be displayed', '_vbshout'),(-1, 5000, 'setting_shout_display_title', 'Shouts To Display', '_vbshout'),(-1, 5000, 'setting_shout_editor_position_desc', 'Choose the position of the vBShout editor', '_vbshout'),(-1, 5000, 'setting_shout_editor_position_title', 'Editor Position', '_vbshout'),(-1, 5000, 'setting_shout_extra_options_desc', 'Display the shout format options?', '_vbshout'),(-1, 5000, 'setting_shout_extra_options_title', 'Display Format Options', '_vbshout'),(-1, 5000, 'setting_shout_messages_order_desc', 'Change the order of the messages display', '_vbshout'),(-1, 5000, 'setting_shout_messages_order_title', 'Shout Messages Order', '_vbshout'),(-1, 5000, 'setting_shout_position_desc', 'Where the shoutbox will be positioned on your forums index.\r\nNote that \'Above Forums\' may be the same position as \'Below Navigation Bar\', this option is for users who have other things between the navigation and forums.', '_vbshout'),(-1, 5000, 'setting_shout_position_title', 'vBShout Position', '_vbshout'),(-1, 5000, 'setting_shout_smilies_show_desc', 'Number of random smilies to show on the shoutbox. Enter 0 to show them all.', '_vbshout'),(-1, 5000, 'setting_shout_smilies_show_title', 'Smilies To Show', '_vbshout'),(-1, 5000, 'settinggroup_vbshout_options', 'vBShout Options', '_vbshout');

MySQL Error : Duplicate entry 'setting_shout_banned_perms_desc--1-5000' for key 2
Error Number : 1062
Date : Friday, July 28th 2006 @ 05:36:14 AM
Script : http://www.site.com/forum/admincp/plugin.php
Referrer : http://www.site.com/forum/admincp/plugin.php?do=productadd
IP Address : XXXXXX
Username : GoTTi
Classname : vb_database


any ideas?

Renmiri
07-28-2006, 03:32 PM
Go to MySQL admin and remove the dupe

You will probably get several of those errors as it is likely that a botched reinstall would have more than one dupe.. Just delete each one.

GoNz00
07-28-2006, 03:46 PM
well i rolled back to the "&" fix as the &=amp problem returned..

any chance of the updated file being fixed to reflect the & bug ?

ronoxQ
07-28-2006, 05:26 PM
Hmm... I had this installed before, but now it isn't showing up. I added vBShout.php to my root, I imported the product. Anything else I'm forgetting to do?

brownbabe
07-28-2006, 09:32 PM
I installed this but my shout box is only showing "Loading..." and when i enter text then press shout it says "posting in progess"

Please help, did I need to upload something else as well? I am using Yahoo as my website provider could that be the issue?

My link so that you can see for yourself
www.womenmotorcyclistsunited.com/forum/index.php

GoTTi
07-29-2006, 12:29 AM
Go to MySQL admin and remove the dupe

You will probably get several of those errors as it is likely that a botched reinstall would have more than one dupe.. Just delete each one.

what table would i look in to remove the dupe?

and whats the name of the dupe im looking for?

cuz i did a search and couldnt find it.

GoTTi
07-29-2006, 12:39 AM
i did a searc for %shout% and am not coming up with anything in the phrase table that has to do with what that error says

ronoxQ
07-29-2006, 12:39 AM
Oh, link for my shoutbox:

http://oasisforums.omegaseye.com

rogersnm
07-29-2006, 07:15 AM
I installed this but my shout box is only showing "Loading..." and when i enter text then press shout it says "posting in progess"

Please help, did I need to upload something else as well? I am using Yahoo as my website provider could that be the issue?

My link so that you can see for yourself
www.womenmotorcyclistsunited.com/forum/index.php (http://www.womenmotorcyclistsunited.com/forum/index.php)

Have you uploaded vbshout.php to your forum root? By the looks of things you havn't, The way ajax works is the cell inside the shoutbox basically loads a different php file, the php file that retrieves the shouts is a chunk of code inisde vbshout. Thats why it doesn't work. You can see you have no archive either. www.womenmotorcyclistsunited.com/forum/vbshout.php?archive (http://www.womenmotorcyclistsunited.com/forum/index.php)

GoTTi
07-29-2006, 09:19 AM
i ran the maintenance tool and repaired the phrase table and its working now.

Renmiri
07-29-2006, 06:39 PM
Glad to hear it!

Avoid going into MySQL, it is a last resource tool

brownbabe
07-29-2006, 11:11 PM
Have you uploaded vbshout.php to your forum root? By the looks of things you havn't, The way ajax works is the cell inside the shoutbox basically loads a different php file, the php file that retrieves the shouts is a chunk of code inisde vbshout. Thats why it doesn't work. You can see you have no archive either. www.womenmotorcyclistsunited.com/forum/vbshout.php?archive (http://www.womenmotorcyclistsunited.com/forum/index.php)


Ok rogersnm, I will try what u suggested.

brownbabe
07-29-2006, 11:14 PM
Woohoo! it works...Big hugs to you rogersnm!!!!!:banana:

clicking install

Digital2
07-30-2006, 07:24 PM
How does one make quotes display properly in the shoutblock rather than this &quot; nonsense? A lot of people use quotes and I am suprised this hasn't been corrected ages ago.

youthBYTES
07-30-2006, 10:03 PM
When people try to use quotation marks in the shoutbox, it comes up as &quot;. Any idea how to fix this?

haris_led
07-30-2006, 10:13 PM
How does one make quotes display properly in the shoutblock rather than this &quot; nonsense? A lot of people use quotes and I am suprised this hasn't been corrected ages ago.
You could just search this thread ;)
https://vborg.vbsupport.ru/showpost.php?p=958674&postcount=1624

dirtycrow
07-31-2006, 04:37 AM
all of a sudden my vbshout stopped working. the server started to get a lot of 500 Internal Server Errors

rebooted the server, and now the shout box shows up, but when users go to post a shout it never happens. I upgraded to the newest version, same thing.

thoughts?

GoNz00
07-31-2006, 07:10 AM
You could just search this thread ;)
https://vborg.vbsupport.ru/showpost.php?p=958674&postcount=1624
only trouble is thats not using the new security fix ?

GoTTi
07-31-2006, 12:44 PM
is it possible to load this on a seperate window?

fosman
07-31-2006, 01:40 PM
Hi there

I like to have a break between the textbox and the submit buttons like Shout, Clear, Smilies etc. I want the textbox at the top and the rest a line or a break lower?

Thx
fosman

wEbAddEr
07-31-2006, 11:02 PM
Love this shoutbox, running on vb 3.6rc3

I have only 1 question, will there ever a way to post the shouts automaticly at the forum ? (like d21 shoutbox for ipb)

Damien2005
08-01-2006, 05:42 PM
Hi guys,

How to include the shoutbox in an non vbulletin page, Some who can help?

noreturn
08-01-2006, 09:16 PM
Hi - can some tell me what to remove or add to make the smilie button not even appear there?

Digital2
08-01-2006, 09:22 PM
Hi - can some tell me what to remove or add to make the smilie button not even appear there?

Replace the code in the template forumhome -> vbshout with this code:


<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' />

<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<thead>
<tr>
<td class="tcat" align="center">
<a style="float:$stylevar[right]" href="#top" onclick="return toggle_collapse('forumhome_vbshout')"><img id="collapseimg_forumhome_vbshout" src="$stylevar[imgdir_button]/collapse_tcat$vbcollapse[collapseimg_vbshout].gif" alt="" border="0" /></a>
<a href='vbshout.php?{$session['sessionurl_q']}do=archive'>Online-Equines Shoutbox</a>
</td>
</tr>
</thead>
<tbody id="collapseobj_forumhome_vbshout" style="$vbcollapse[collapseobj_forumhome_vbshout]">
<tr>
<td class="alt1" align="left" width="100%">
<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()' />
<input type='button' class='button' style='font-weight:bold' value='B' onclick='sb_PropChange_Button(this, "fontWeight")' />
<input type='button' class='button' style='text-decoration:underline' value='U' onclick='sb_PropChange_Button(this, "textDecoration")' />
<input type='button' class='button' style='font-style:italic' value='I' onclick='sb_PropChange_Button(this, "fontStyle")' />
<select name='font_color' onchange='sb_PropChange(this, "color")'>
{$DropDowns['color_selector']}
</select>
<select name='font_selector' onchange='sb_PropChange(this, "fontFamily")'>
{$DropDowns['font_selector']}
</select>
</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()' />

<input type='button' class='button' style='font-weight:bold' value='B' onclick='sb_PropChange_Button(this, "fontWeight")' />
<input type='button' class='button' style='text-decoration:underline' value='U' onclick='sb_PropChange_Button(this, "textDecoration")' />
<input type='button' class='button' style='font-style:italic' value='I' onclick='sb_PropChange_Button(this, "fontStyle")' />
<select name='font_color' onchange='sb_PropChange(this, "color")'>
{$DropDowns['color_selector']}
</select>
<select name='font_selector' onchange='sb_PropChange(this, "fontFamily")'>
{$DropDowns['font_selector']}
</select>
</if>
</td>
</tr>
</table>
</if>
</if>
</td>
</tr>
</tbody>
</table>


</form>
<br />

<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>

noreturn
08-01-2006, 09:31 PM
Man two thumbs up to you for that fast reply THAT WORKS.

We have a little kids site and the smilie spammers are killing the database calls

Digital2
08-01-2006, 09:53 PM
No problem. Glad it helped.

Neo_obs
08-03-2006, 05:18 AM
is there any easy way to have 2 shoutboxs? 1 for certain members another for other members?

Renmiri
08-04-2006, 01:55 PM
I put a shoutbox on most of my pages, at the bottom of the page. Users complained it was hard to see if there were any new shouts so I hacked up this lil' plugin to display it
https://vborg.vbsupport.ru/showthread.php?t=123023

PS: This was done here (http://sinsdawn.ffproject.net/index.php) with the latest vBShout for flatfile, but it should work with the regular vBShout.

Also:

I like to have a break between the textbox and the submit buttons like Shout, Clear, Smilies etc. I want the textbox at the top and the rest a line or a break lower?
Edit the forumhome_vbshout template:
Find
<input type="submit" value="Shout" class="button" />
Add BEFORE
<br />

And
is it possible to load this on a seperate window?

Yep, I did this for my fussy users:

1 - Add Shoutbox to the forumhome_vbshout_archive
Find
<table class="tborder" cellpadding="$stylevar[cellpadding]" cellspacing="$stylevar[cellspacing]" border="0" width="100%" align="center">
<tr>
<td class="tcat" align="center">
Shouts
</td>
Right after the table statement add:
<tr>$Shoutbox</tr>

2-Add a link to the Shoutbox + Shout Archive page to your menu template (navbar ?) with target="_blank"
<a href='vbshout.php?{$session['sessionurl_q']}do=archive' target="_blank">Shoutbox</a>

Now users can keep a window open just with shout info, while the nice "shoutless" forum is on another. And you can even let forum users see the "last shout" to see if they want to join the convo :D

PS: You might want to edit the forumhome_vbshout_archive_shout template because the current one is too garish ;)

Sonic Earth
08-04-2006, 04:19 PM
Will this mod work on v3.6?

Shazz
08-04-2006, 04:24 PM
Will this mod work on v3.6?
No one has spoken about it.
Im guessing yes.
________
vapormatic (http://www.vaporshop.com/vapormatic-vaporizer.html)

Rocol
08-04-2006, 08:27 PM
In ' Who Is Online ' it shows all members ( viewing the Index Page ) as ' Viewing the Shoutbox ' even though they are not .. I think a fix for this was posted somewhere in this thread, but I have looked through all posts and cannot find it ... does anyone know where it is or what needs to be done to sort it, please.

Thanks ;)

rogersnm
08-04-2006, 08:28 PM
just disable the WOL plugins in the shoutbox hack.

rasp187
08-04-2006, 11:01 PM
Will this mod work on v3.6?

This works perfectly fine on 3.6.0.

C-Los 21
08-05-2006, 12:53 AM
How would I add more commands?

Shazz
08-05-2006, 12:58 AM
How would I add more commands?
Commands as in? ><>"
That sort?
________
buy magic flight launch box (http://www.vaporshop.com/mflb-vaporizer.html)

C-Los 21
08-05-2006, 03:07 AM
Commands as in? ><>"
That sort?

No commands as in /prune I want to add a Notice with would look like this Notice: MESSAGE HERE but the text should be red.

Sn!per101
08-05-2006, 03:12 AM
For people that are having the whos online problem. Where it says everyone is "viewing the shoutbox" There is a fix for this and it works. It was posted way back.

https://vborg.vbsupport.ru/showpost.php?p=1005050&postcount=1872

twitch
08-05-2006, 03:29 AM
with 3.6.0 my forum loads very slow now. I removed vbshout and loads very fast.

Shazz
08-05-2006, 03:45 AM
No commands as in /prune I want to add a Notice with would look like this Notice: MESSAGE HERE but the text should be red.
You would have to create a whole new command.
Just find how /prune worked , and make what you want and what you want it to do.
________
Mazda RX-2 (http://www.ford-wiki.com/wiki/Mazda_RX-2)

Rocol
08-05-2006, 08:39 AM
just disable the WOL plugins in the shoutbox hack.

Cheers M8, much obliged :cool:

rogersnm
08-05-2006, 08:42 AM
no probs :)

rogersnm
08-05-2006, 08:42 AM
You would have to create a whole new command.
Just find how /prune worked , and make what you want and what you want it to do.

that would be in vbshout.php it just deletes the post but it would be easy to change it to update.

The_Big_K
08-05-2006, 11:21 AM
ZT, when are you going to update this little wonder for VB 3.6 ? :)

rogersnm
08-05-2006, 11:36 AM
he already has on vbh

C-Los 21
08-05-2006, 12:29 PM
that would be in vbshout.php it just deletes the post but it would be easy to change it to update.


meaning what?

rogersnm
08-05-2006, 12:39 PM
meaning look in the file. You can see where it works out what /prune does.

da420
08-05-2006, 03:25 PM
he already has on vbh

Where has he released this?

Thanks.

twitch
08-05-2006, 04:12 PM
vbh? whats that?

C-Los 21
08-05-2006, 04:32 PM
meaning look in the file. You can see where it works out what /prune does.

All I see is how to delete shouts nothing about colors or anything that I would need.

Neo_obs
08-05-2006, 05:28 PM
look at the /me command that would probably be easier to modify

bairy
08-05-2006, 05:36 PM
vBH is vbhackers.com, specifically this thread (http://www.vbhackers.com/forum/showthread.php?t=4536)

Renmiri
08-05-2006, 10:46 PM
No commands as in /prune I want to add a Notice with would look like this Notice: MESSAGE HERE but the text should be red.
it's there already:

put /me before your shout and it puts it red, bold and with a larger font.
Check it out
http://sinsdawn.ffproject.net/showthread.php?p=214#shout

CoreIssue
08-06-2006, 02:54 PM
I installed this one 3.6.0 Gold.

Was running fine yesterday. But today the editor is gone.

Shouts are there, but no way to post a new shout.

I only installed the newest version here. No add-ons to it.

I uninstalled and reinstalled, include uploading a new php file.

Any ideas?

Here (http://www.christiantalkzone.net/forum/index.php) is a link. Looks the same as when logged in.

CoreIssue
08-06-2006, 04:06 PM
:cross-eyed: I am totally scrathing my head now.

I played with a bunch of stuff. No fix.

I added vbdebug and it gave no error in admin.

I set it to forum, as well, and there was no error, but the Shout Box was now fully working. :cross-eyed:

Renmiri
08-06-2006, 04:24 PM
:cross-eyed: I am totally scrathing my head now.

On 3.5.4 the submit button is on the template forumhome_vbshout. did you check if it converted it allright to 3.6 templates ?

Also, have you tried the flat file version that is at vbhackers.com ? Supposedly it is 3.6 compatible...

CoreIssue
08-06-2006, 05:15 PM
On 3.5.4 the submit button is on the template forumhome_vbshout. did you check if it converted it allright to 3.6 templates ?

Also, have you tried the flat file version that is at vbhackers.com ? Supposedly it is 3.6 compatible...
Thank you a ton!

2.1 is way better than 2.0. Much smoother and faster.

Went to a file instead of DB storage, so the load is greately reduced. And did several bug fixes from his old version.

Zero Tolerance is not please with what they changed here. He says a ton of bugs and other issues were introduced.

Thanks again! :cool:

mrcrx
08-07-2006, 04:40 PM
Can I control who can shout by user post count. Say nobody with under 100 posts can shout?

Trana
08-07-2006, 06:45 PM
Thank you a ton!

2.1 is way better than 2.0. Much smoother and faster.

Went to a file instead of DB storage, so the load is greately reduced. And did several bug fixes from his old version.

Zero Tolerance is not please with what they changed here. He says a ton of bugs and other issues were introduced.

Thanks again! :cool:

Does the flat file version have timestamps yet?

CoreIssue
08-07-2006, 08:58 PM
Does the flat file version have timestamps yet?
This was posted and some say it works.

Originally Posted by sexo
TimeStamp Fix:

1: Go to forum_vbshout_shout
2: Find this line: <if condition="!$Shout[s_me]">
3: Add before: [{$Shout['time']}]

You are done http://www.vbhackers.com/forum/images/smilies/wink.gif now shout and see the difference.


It most assuredly is faster loading. I can even see it with DSL.

Brandon Sheley
08-07-2006, 09:45 PM
thats forumhome_shout_vbshout btw ;)

Thug
08-07-2006, 10:00 PM
wicked stuff mate

Brandon Sheley
08-07-2006, 10:03 PM
yup, works pretty good.. "quotes" work too :D

GoNz00
08-07-2006, 10:04 PM
Can I control who can shout by user post count. Say nobody with under 100 posts can shout?

i use usergroup promotions to control that, default user group is banned from VBshoutand they get promoted to the next usergroup so long as they have been a member 1 month and posted 30 times or more, i allow the 2nd usergroup to use the arcade and shoutbox.
so you can set that up easy enough to promote from the default group they join the forums with to a clone of with the added vbshout permissions.

under usergroups > promotions

CoreIssue
08-08-2006, 12:02 AM
thats forumhome_shout_vbshout btw ;)
I had just copied it from the post.

Yes, the post was wrong, but what you posted is also wrong. It is
forumhome_vbshout_shout

So it should read

1: Go to forumhome_vbshout_shout
2: Find this line: <if condition="!$Shout[s_me]">
3: Add before: [{$Shout['time']}]

And I went ahead and tested it. It works.

Hope that clears up all the confusion. :knockedout:

Capt. GannA
08-08-2006, 06:41 AM
Does this work with vb 3.6?

Shadow_NL
08-08-2006, 07:22 AM
When visitors are not logged in and view the shoutbox, they receive this error: Warning: Invalid argument supplied for foreach() in /vbshout.php on line 288

What can I do to fix this? Thanks.

xlegends
08-08-2006, 07:42 AM
Does this work with vb 3.6?


yep,,,,,,,

CoreIssue
08-08-2006, 11:26 AM
Does this work with vb 3.6?
I installed it and it worked, then the editor disappeared. Then the editor reappeared.

I switched to version 2.1 from vbhackers. It loads faster with no issues.

2.1 is also by Zero Tolerance, but is a complete rework designed for 3.6.0 and, I believe, works for 3.5.4.

So, you have a choice.

CBR900RR
08-08-2006, 10:25 PM
You can edit the banning options for the shoutbox.
Just select "Can not view shoutbox" and you'll have no problem no more ;)
where ARE the banning options?

CBR900RR
08-09-2006, 12:53 AM
nevermind, i found them lol!!

Inaam
08-09-2006, 01:25 PM
where do i edit the code to move the shoutbox to a different location on the forum homepage.

The problem is i got a new extremepixel skin called cobalt and the shoutbox doersnt show on that skin but it shows on the others. Any solutions?

Total666
08-09-2006, 03:05 PM
I made a autoprune function for vBshout.
Just download the attached file and put in the /includes/cron directory.
Then make a new scheduled task (see attached jpg).
I run it every night at 3 o clock but offcourse your free to run it more often than that.

What is does: It will delete all shouts that are older than 24 hours.
This way you will allways have an archive that's holds no shouts that are older than two days.
You can alter the deletion time in the php by altering the "(TIMENOW - (60 * 60 * 24)" statement.

Enjoy :)

Replaced the php with the right one



can this work with 3.6 ?? Thanks

Renmiri
08-09-2006, 07:54 PM
where do i edit the code to move the shoutbox to a different location on the forum homepage.

The problem is i got a new extremepixel skin called cobalt and the shoutbox doersnt show on that skin but it shows on the others. Any solutions?
Yep!

Do this mod first:
https://vborg.vbsupport.ru/showthread.php?t=96158

Then, put $Shout on each template (and spot) you want vBShout to post...
I put it right before footer on Forumhome, forumdisplay, search and inferno
http://sinsdawn.ffproject.net/forumdisplay.php?f=6#bottom

Watched
08-11-2006, 12:53 AM
anyone have any idea when a version of this hack will be released that has the apostrophy bug fixed.. and .. it fixed to where quote's show up correctly in firefox? ... instead of &quot or &quote .. ?

Total666
08-11-2006, 04:36 AM
I made a autoprune function for vBshout.
Just download the attached file and put in the /includes/cron directory.
Then make a new scheduled task (see attached jpg).
I run it every night at 3 o clock but offcourse your free to run it more often than that.

What is does: It will delete all shouts that are older than 24 hours.
This way you will allways have an archive that's holds no shouts that are older than two days.
You can alter the deletion time in the php by altering the "(TIMENOW - (60 * 60 * 24)" statement.

Enjoy :)

Replaced the php with the right one


Has anyone figured out how to get this to work with 3.6 ( the auto-prune ?? ) .. Total

Neo_obs
08-11-2006, 05:05 AM
anyone have any idea when a version of this hack will be released that has the apostrophy bug fixed.. and .. it fixed to where quote's show up correctly in firefox? ... instead of &quot or &quote .. ?

already out you just have to do the edits manually

Thug
08-12-2006, 04:42 PM
When i ban people or usergroups it comes up to them as Warning: Invalid argument supplied for foreach() in /vbshout.php on line 293

Leila
08-13-2006, 05:35 AM
Could someone tell me why the shout board control panel would not show up but everything else is working?

mrmike
08-13-2006, 07:00 PM
Hi, first of all, thanx for a great hack!

Since I installed shoutbox and my members are in index.php (startpage) the wol (who's online) is updating activity continuously even if they not do anything. Now I've installed a total time spent on board hack and the inactivity time is set for 45min before members autologout but in this case the onlinetime just go on and on as long they stay on (startpage)...

Does anyone know a solution?

btw, sorry for my bad english

/Mike

webspider
08-13-2006, 07:24 PM
Shout 2.1 does work with vb 3.6.0 but there is a problem with Internet Explorer users the shout always says Loading... and when you try to post a shout IE opens a blank page.

rareclownfish
08-13-2006, 10:03 PM
Hello bud, is there away to add an admin section where you can delete all the shouts at once?

webspider
08-13-2006, 10:21 PM
/prune "enter" in the shout field

Thug
08-15-2006, 09:32 PM
https://vborg.vbsupport.ru/showthread.php?p=1053081


Vbshout - I dont want peeps to edit/prune the shoutbox
Hi what do i do so i can change who can edit the shoutbox


eg when they click on 'shoutbox' at the top it takes them too

http://www.mysite.com/vbshout.php?do=archive


How do i change it so nobody (or only selected users) can click on edit or delete shouts on there

i have got some admin/supermods that are pruning and also randomly deleting shouts

louis_chypher
08-16-2006, 01:30 AM
https://vborg.vbsupport.ru/showthread.php?p=1053081


Vbshout - I dont want peeps to edit/prune the shoutbox
Hi what do i do so i can change who can edit the shoutbox


eg when they click on 'shoutbox' at the top it takes them too

http://www.mysite.com/vbshout.php?do=archive


How do i change it so nobody (or only selected users) can click on edit or delete shouts on there

i have got some admin/supermods that are pruning and also randomly deleting shouts


trying to search this thread on "admin" would lead you to this post https://vborg.vbsupport.ru/showthread.php?p=961363&highlight=admin#post961363 or perhaps not.

Thug
08-16-2006, 08:13 AM
A possible quick solution to limit access to the archive and archive functions by user group :

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

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

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

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

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

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

located around line 356/357

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

something like:

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

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

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

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


Thanks..

if say someone wanted to edit it so more than one person had acess

they could put this instead..



if ($vbulletin->userinfo['userid'] != 1)
if ($vbulletin->userinfo['userid'] != 2)
if ($vbulletin->userinfo['userid'] != 5)
{ print_no_permission();
exit();
}


giving acess to users 1,2 and 5

:D

Thug
08-16-2006, 05:25 PM
How would i make it so that if a user has 30 posts or less it shows a essage on the shoutbox saying

Sorry but you need 30 posts or more to view the shoutbox

Thug

GoNz00
08-16-2006, 05:27 PM
just hide the shoubox and use usergroup promotions to make it appear at 30 :)

ZGeek
08-17-2006, 03:47 AM
Howdy all, I planing to use the shout box on the front page of my site.. currently in development at http://dev.zgeek.com (if you can't see it, its been built into the monitor on the top right)

I usually have around 100 to 150 people on the site, around 60 -70 who are logged in. I've also shortened the max characters people can post in a message to around 30.

I'm worried about this slowing the site. I have my own dedicated server and a large amount of bandwidth so traffic isn't a worry. But is this going to kill my server processing the shouts?

Replicators
08-17-2006, 03:52 AM
I'd recommend you guys go to vbhackers.com, they have a update of this that is much better as it is much less strain on the server.

ZGeek
08-17-2006, 04:37 AM
Thanks mate. I did so and updated to the latest version. Cheers.

Renmiri
08-17-2006, 04:02 PM
I'd recommend you guys go to vbhackers.com, they have a update of this that is much better as it is much less strain on the server.

Another solution for the excessive load on the server is to use an "outsourced" shoutbox: Sayit (http://saybox2.co.uk/index.php?ref=renmiri) hosts free shoutboxes for you. I have just started using it at one of my forums (non vb) and it has been working very well

Luke Brown256
08-18-2006, 07:35 AM
hey just a question but will this mod work on 3.6?

Antyrael
08-18-2006, 08:27 AM
I tried to alter my vbShout so that it would show a button/link next to every shout, that would delete the shout when I click it, but I am unsuccesful so far.
My understanding of AJAX is non-existent so I really have no idea how to to this.

Is there anyone who can help me achieve this? I hate going into the archive to delete certain shouts everytime. (it's a slow process for me)

Also, when I try /prune username, it doesn't prune anything, I can't figure out why.

transitbus
08-22-2006, 03:12 AM
Edit:

I love finding out how to do things myself ;)

Keyser520
08-23-2006, 11:59 AM
Does this work on 3.6 ?

Zero... are you going to make a vbchat for 3.6 ?

Ragnarok
08-23-2006, 02:04 PM
Does this work on 3.6 ?
I've had no problems with it since upgrading to 3.6, give it a try ;)

cyberguyz
08-23-2006, 08:58 PM
It works fine on my 3.6 site

Shazz
08-23-2006, 09:01 PM
No errors , Clean on 3.6 :)

Digitalus
08-24-2006, 03:11 PM
Hi,

I've a problem if I change the number of random smilies to show on the shoutbox.

With the default settings (0) I've no problems, but if i change the value i get smilies twice if I hit the smiley button. In my example I've changed 0 to 8 and it will show 2 or 3 same smilies from 8.


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

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

I think the problem is the random line -> $GetEmo = rand(0, $GetEmo);


Is there somebody which can help to improve this, please?


Regards, Stoebi


Edit:
Solved. Many thx to Boothby from vbhacks-germany.com


Hi @all

I have the same problem..
So how can we solve the problem?

greetz

Masiello
08-24-2006, 09:00 PM
Anybody Know if that vbshout installation waste the XHTML and CSS validation for the original vB installation that use the default template in vBulletin 3.6.0 Gold?

hotwheels
08-26-2006, 04:21 AM
works on the official release of 3.6

Total666
08-26-2006, 05:12 AM
Has anyone figured out how to get the auto-prune to work with 3.6 ??? The auto-prune worked great with 3.54 .. Ideas ?? Total

hotwheels
08-26-2006, 06:32 AM
Did anyone ever figure out why this (this) is happening? I just reinstalled this mod on my site, was able to post 2 time's, then everything disappeared accept for the wording i posted......

Masiello
08-26-2006, 06:47 PM
Big problem with characters like <> " ' , eccc

I think this is another Bug, when for example I ban e specific user Group that is Unregistered/ Not Loged Users, these users see anyway a vbshout window and see this message
"Warning: Invalid argument supplied for foreach() in /vbshout.php on line 293"

Forget, I'm using vB 3.6.0

Rickie3
08-26-2006, 10:59 PM
hope someone can help me here,some members are abusing the BB code in the shoutbox,I want to allow smilies still,but how can i disable the BB codes in the shoutbox please!!!

Keyser S?ze
08-27-2006, 08:48 AM
this is prolly known but i just thought id say, that when u quote something it messes up, for example

"backup"

turns into this

&quot;backup&quot;

YoungComposers
08-27-2006, 05:18 PM
For the people above who are experiencing the " -> &quot; bug, try commenting out line 120 which reads:

$text = htmlspecialchars_uni(trim($text));

I think this will still result in all characters like < being cleaned etc., but it misses out ", which should be OK in most circumstances.

Anyway, I need help with something. I'm trying to add badword filter functionality to the shoutbox with the following code placed above line 343:

$badwords = array('badword1' => 'replacement1', 'badword2' => 'replacement2', 'badword3' => 'replacement3');
$vbulletin->GPC['shout'] = str_ireplace(array_keys($badwords), array_values($badwords), $vbulletin->GPC['shout']);

Obviously I've replaced the actual badwords to avoid antagonizing staff around here... Anyway, this code should work fine, but when it's added in, the shoutbox just plain refuses to insert it into the database. It's the same no matter what you set $vbulletin->GPC['shout'] to. Even if you add some code to set it to "hello" just before it's inserted, it doesn't get inserted. Any help?

Digitalus
08-28-2006, 10:41 AM
Hi @all

I have the same problem..
So how can we solve the problem?

greetz


Hello!!!!!!!!

Anyone?????

GoNz00
08-28-2006, 11:01 AM
its been answered at least 3 times that i have seen. try using the search thread button in furure !!!

anyway. https://vborg.vbsupport.ru/showpost.php?p=958674&postcount=1624

Digitalus
08-28-2006, 05:55 PM
LOL.. this does not fix the smilie problem

GoNz00
08-28-2006, 09:18 PM
sorry that was aimed at https://vborg.vbsupport.ru/showpost.php?p=1061720&postcount=2151 Keyser

Shazz
08-28-2006, 09:34 PM
LOL.. this does not fix the smilie problem
Is your smile problem when you upgraded it?

osso12
08-29-2006, 01:28 AM
I know this is asking a lot..but is there a way to take the shoutbox one step further and add windows sounds ect. when someone uses the shout box and sends a shout to alert others someone is shouting?
And a way for users to toggle it on or off possibly? :laugh:

hotwheels
08-29-2006, 04:02 AM
I actually had to go back to the original vb2.0.........all the newer one's just don't seem to function correctly....

Viol8or
08-29-2006, 02:03 PM
Is there a possibility to set a maximum on characters in one sentence? They can spam books now :)

Digitalus
08-29-2006, 03:48 PM
Is your smile problem when you upgraded it?

Hi

No.. but its fixed now, found a update for it on a other forum :D

da420
08-29-2006, 05:42 PM
Hi

No.. but its fixed now, found a update for it on a other forum :D

Downloaded the 2.1 vBShout version?

I find that one works awesome. 10X better than 2.0, and about 1/5+++ server intensive. :)

haris_led
08-29-2006, 10:12 PM
Downloaded the 2.1 vBShout version?

I find that one works awesome. 10X better than 2.0, and about 1/5+++ server intensive. :)
BUT without support for greek characters :/ :mad: :mad: :mad:

da420
08-29-2006, 10:46 PM
BUT without support for greek characters :/ :mad: :mad: :mad:

Good thing I don't need support for greek characters. :)

Shazz
08-29-2006, 10:47 PM
commands like /me and others don't work for the 3.6 =\

RC Attacker
09-01-2006, 12:55 PM
This is a sweet shoutbox! All my friends forums have it. But I have one question, I'm new to vBulletin so how do I


Upload 'vbshout.php' to your 'FORUMS ROOT DIRECTORY' (ie: forums/ or forum/)

RC Attacker
09-01-2006, 01:19 PM
Nevermind I got it up!! www.rcattacker.com ! Sick shoutbox, I love it.

RC Attacker
09-01-2006, 03:41 PM
Ahh sorry, I have one question. How do I make the shoutbox bigger/get get the shoutbox admin options. I don't see anything in my admincp about the shoutbox. (Example of making it bigger: make mine www.rcattacker.com look more like this one www.hpisavageforum.com/forums/index.php)

da420
09-01-2006, 03:45 PM
vBulletin Options > Shout box settings or something like that. In there is a setting to resize it.

RC Attacker
09-01-2006, 03:56 PM
Oh thanks! I was just about to look in vBulletin options.

RC Attacker
09-01-2006, 04:03 PM
Sweet I got it. Do you know why when I write "whatever" it says &quot;whatever&quot;

da420
09-01-2006, 04:24 PM
Try this.

https://vborg.vbsupport.ru/showpost.php?p=958674&postcount=1624

voteforbird
09-02-2006, 05:13 PM
Bug: "&" shows up as "&amp;"

da420
09-02-2006, 05:25 PM
Bug: "&" shows up as "&amp;"

This has been reported for about the 1000th time, this fix is even in the post above yours.

https://vborg.vbsupport.ru/showpost.php?p=958674&postcount=1624

Use that php file instead if you are having this issue.

Rickie3
09-03-2006, 06:16 AM
hope someone can help me here,some members are abusing the BB code in the shoutbox,I want to allow smilies still,but how can i disable the BB codes in the shoutbox please!!!
Bump anyone please help!!!!

da420
09-03-2006, 06:42 AM
Highly doubt it's possible without file edits.

Rickie3
09-03-2006, 09:00 AM
Highly doubt it's possible without file edits.thats what i want to do, file edits are not a problem

boing
09-03-2006, 10:35 PM
Downloaded the 2.1 vBShout version?

I find that one works awesome. 10X better than 2.0, and about 1/5+++ server intensive. :)

I realy don't get it 2.1 is there such version or it is just me don't realy get the idea of the version 2.0.1

Shazz
09-03-2006, 10:40 PM
I realy don't get it 2.1 is there such version or it is just me don't realy get the idea of the version 2.0.1
They were past products that are from this one.

voteforbird
09-04-2006, 05:52 PM
You know what would be an amazing addition to/option for vBShout? Have the table automatically collapse unless there is a new post. I could really use that.

Also, why hasn't this been recategorized under 3.6?

principino1984
09-04-2006, 11:05 PM
ATTENTION!!!

I've just been hacked from

DANGER!!! FreeZe & Fast_Vagrant Was Here! // Turkish Hacker

please make this hack safer!!!

Marco

GoTTi
09-05-2006, 01:37 AM
is there a way to make this where only admins and mods and site mods can use the bbcodes in the shoutbox??

Neo_obs
09-05-2006, 01:45 AM
ATTENTION!!!

I've just been hacked from


DANGER!!! FreeZe & Fast_Vagrant Was Here! // Turkish Hacker


please make this hack safer!!!

Marco

it is safer you need to update your version

da420
09-05-2006, 06:24 AM
I realy don't get it 2.1 is there such version or it is just me don't realy get the idea of the version 2.0.1

It's a new version released on a different site.

Shazz
09-05-2006, 11:24 AM
A 2.1 and this version?

GoTTi
09-05-2006, 04:37 PM
ATTENTION!!!

I've just been hacked from


DANGER!!! FreeZe & Fast_Vagrant Was Here! // Turkish Hacker


please make this hack safer!!!

Marco

how do u know the shoutbox is what hacked your forum?

C_P
09-05-2006, 04:39 PM
how do u know the shoutbox is what hacked your forum?Agree, There have been lots of Joomla attacks as of late. Running Joomla by chance?

da420
09-05-2006, 06:22 PM
A 2.1 and this version?

Not sure what you're asking.

But, the 2.1 version is released by the same author as this one on a different site. It uses a flatfile to access the shouts displayed rather than the database making it alot less server intensive.

o0Hubba0o
09-06-2006, 12:18 AM
how do u know the shoutbox is what hacked your forum?
Because the same person just did my site, went into ftp and changed the name of the shoutbox.php file. Had to ctrl/alt/del to close browser (because clicking cancel on the pop up wouldn't close it) and then restart it and the site worked fine.

VTXCafe.com
09-06-2006, 08:54 AM
You guys that got hacked by chance have Flash Chat?

Holidazed
09-06-2006, 02:42 PM
Is this compatible with 3.60 yet?

RKO21
09-06-2006, 02:46 PM
not work :(

da420
09-06-2006, 03:19 PM
Is this compatible with 3.60 yet?

It works on most 3.6 boards.

Neo_obs
09-06-2006, 03:46 PM
Because the same person just did my site, went into ftp and changed the name of the shoutbox.php file. Had to ctrl/alt/del to close browser (because clicking cancel on the pop up wouldn't close it) and then restart it and the site worked fine.

sounds like frontpage or flash chat security holes.

Shoutbox cant do that it only allowed homepage redirects or what ever page shoutbox is on.

o0Hubba0o
09-06-2006, 06:37 PM
sounds like frontpage or flash chat security holes.

Shoutbox cant do that it only allowed homepage redirects or what ever page shoutbox is on.
Well, unless it's possible to have those security holes without installing those. Like I said, I renamed the shoubox's php file and it was fine. I went through and banned him and his ip, renamed the php file and went back to the site the pop up came up one more time, I was able to close it this time. Pruned the shoutbox and no more problems.

Shazz
09-06-2006, 09:00 PM
Prune the shoutbox and you have no more problems???

o0Hubba0o
09-07-2006, 02:13 AM
Prune the shoutbox and you have no more problems???
* o0Hubba0o sighs

renamed the file, banned him, pruned the shoutbox all that stuff, not just purned the shoutbox. The shoutbox is the only thing I worked with to get rid of the problem, I don't have flash chat or front page or whatever the other member said. I re-downloaded the files yesterday to double check and the php file has the same version as the one I have installed.

Shazz
09-07-2006, 02:56 AM
* o0Hubba0o sighs


renamed the file, banned him, pruned the shoutbox all that stuff, not just purned the shoutbox. The shoutbox is the only thing I worked with to get rid of the problem, I don't have flash chat or front page or whatever the other member said. I re-downloaded the files yesterday to double check and the php file has the same version as the one I have installed.
ohhhh i see , thank you for making more sense :)

syrus.xl
09-07-2006, 10:33 PM
My site was hacked through vbShout this evening. A new member joined and posted code numerous times, which caused a directory popup box to appear, asking for username and password.

I managed to squeeze in a /prune to override it, and ban the user. I've now closed my site off to new registrations.

Another mod I need to uninstall...shame I liked this as well.:(

Shazz
09-07-2006, 10:45 PM
My site was hacked through vbShout this evening. A new member joined and posted code numerous times, which caused a directory popup box to appear, asking for username and password.

I managed to squeeze in a /prune to override it, and ban the user. I've now closed my site off to new registrations.

Another mod I need to uninstall...shame I liked this as well.:(
What kinds of things did he post?
How do you stop it or watch, instead of just disabling..

syrus.xl
09-07-2006, 10:55 PM
The code I would have thought was some type of re-write code, because it looked like I had placed a passworded directory on my entire site. There was an image, with a red x but nothing showed up, but no text was showing - just the username. I won't post the whole contents on here, because its a public board, but I did a search on Google and it showed up in a number of places.

This is the second attempt within a few days, but the other person tried posting re-direct HTML in in a thread, luckily it failed.

I used to have FlashChat installed, but that now just leaves your site open to attack. Going to see if I can tighten my coding to prevent this happening again.

GoTTi
09-08-2006, 04:26 AM
so the shoutbox is now being used as an exploit tool...thats great.

/me uninstalls

Guest190829
09-08-2006, 06:13 PM
The code I would have thought was some type of re-write code, because it looked like I had placed a passworded directory on my entire site. There was an image, with a red x but nothing showed up, but no text was showing - just the username. I won't post the whole contents on here, because its a public board, but I did a search on Google and it showed up in a number of places.

This is the second attempt within a few days, but the other person tried posting re-direct HTML in in a thread, luckily it failed.

I used to have FlashChat installed, but that now just leaves your site open to attack. Going to see if I can tighten my coding to prevent this happening again.

Please report all Security Vunerabilities to staff via the "Report This Modification" link under Mod Options. The staff will then evaluate your report and the modification, and proceed from there.

Please describe as best you can what happened and the code used...etc...etc..

Regards,
Danny

Silver740
09-08-2006, 11:34 PM
If you add a " in my shoutbox, it shows up as &quot; in the box. Any fix to this? I've updated it w/ the latest file available for download as of today.

da420
09-08-2006, 11:50 PM
Page 109 of this thread Brad released a .php file that works. Try that.

GoTTi
09-09-2006, 08:09 AM
im just gunna make my users use mirc.

Shazz
09-09-2006, 08:31 AM
im just gunna make my users use mirc.
Mirc.? :hurt:

GoTTi
09-09-2006, 04:19 PM
<a href="http://www.mirc.com" target="_blank">www.mirc.com</a>

i have a IRCD Server on my server so im good.

its just a chat client.

o0Hubba0o
09-09-2006, 04:55 PM
My site was hacked through vbShout this evening. A new member joined and posted code numerous times, which caused a directory popup box to appear, asking for username and password.
that's the same thing that happened on mine, some users were able to get a word in here or there, but I had to ctrl/alt/del and shut down my browser through there.

I noticed that people who hadn't confirmed their emails could use the shoutbox (such as this freeze fellow), so I added that user group to the unable to use option. I also added freeze to the names not allowed on registration heh, because after I banned him he re-registered and had a completley different ip but still used freeze in his name.


I don't know what he typed in the shoutbox because I pruned it as soon as i could, the last thing I seen him say was daaaaaaaannnngeeeeeeerrrrrrrrrr

nix
09-09-2006, 05:59 PM
My site was hacked through vbShout this evening. A new member joined and posted code numerous times, which caused a directory popup box to appear, asking for username and password.

I managed to squeeze in a /prune to override it, and ban the user. I've now closed my site off to new registrations.

Another mod I need to uninstall...shame I liked this as well.:(

What version was it? 2.1?

thunder_sti
09-09-2006, 08:20 PM
Does this works for vb 3.5.5???

And what is a shout box???

Once installed can it be disabled etc..

Thanks,,, sorry, but my conection is limited, if not I would of done my homework,,,(search)

Thanks

da420
09-09-2006, 08:23 PM
Does this works for vb 3.5.5???

And what is a shout box???

Once installed can it be disabled etc..

Thanks,,, sorry, but my conection is limited, if not I would of done my homework,,,(search)

Thanks

Yes.

It's like a chat box at the forum home page at the top or bottom of the page.

Yes, in your product manager it can be easily disabled.

thunder_sti
09-09-2006, 08:36 PM
sweet,,,,

Thanks, much,,,

DigitALL
09-10-2006, 01:45 PM
Hello,

I have installed the vBshout and in the forumpage it looks OK with all the options. So if you post a shout with a smilie it looks OK, but when you you to the home page (made with CMPS module), the same posted shouts appears but with no smile. Instead, it shows a pic placeholder (please see the attached example).
It looks to me that I need to change a location in some template but have no idea where. Could anyone please help me?

syrus.xl
09-10-2006, 11:39 PM
What version was it? 2.1?

No... I'm was using 2.0 - didn't realize there was a newer version. Then again, I was told on vBulletin.com that any form of shoutbox is not really 'safe'. :(

eNforce
09-11-2006, 10:05 PM
Anyone know if there would be a way to display the shouters avatar to the left of their name? But be able to resize the avatar to something really small like 20x20 ?

harry2k6
09-12-2006, 06:50 PM
Hey,
I think I've installed the Shoutbox correctly, but all I get is 'Loading' and nothing comes.
I was wondering if maybe a Professional could take a look? I will give them full admin access to my forum and cPanel
Thanks :)
www.chillhabbo.net/forum <- Click to view;)

da420
09-12-2006, 07:21 PM
Make sure you have the php file uploaded to your forum directory.

Wizardjv
09-12-2006, 08:44 PM
is there anyway you can define what smilies work in the shoutbox? I have a bunch of small smilies id like to use in shout box, but I dont want the big ones used. Is there anyway to do this and limit what smilies can be used in shoutbox? if so I would appreciate any help on this I have been looking for it but cant figure it out
TY

harry2k6
09-12-2006, 08:45 PM
Done it.

da420
09-12-2006, 10:05 PM
Done it.

Then it should work.

DigitALL
09-13-2006, 01:56 PM
Does anyone know how and where to change the date format that is displayed in the shoutbox?
Currently, the default format is: [September 12th, 2006 20:28]
where it takes way too much space. I wish to remove the year and to display the month in a numerical format.

Does anyone know this information, please?

harry2k6
09-13-2006, 03:49 PM
Then it should work.
Nope it still doesn't

Shazz
09-13-2006, 06:43 PM
Are you just getting a error on the plugin part?

eNforce
09-13-2006, 09:09 PM
Anyone know if there would be a way to display the shouters avatar to the left of their name? But be able to resize the avatar to something really small like 20x20 ?

Anyone got a clue ? I would really like a feature like this.

BlueKnight
09-13-2006, 09:50 PM
anyone fix this yet? It just showed up last night after having to ban a member. I searched the archives and well it showed 8 posts BUT NO fix

Chicago_VLNU_4s
09-14-2006, 03:42 AM
does anyone, and I mean ANYONE know how to make it where I (ADMIN) can only edit shouts? My G-Mods and Mods have a field day editing each others and other members post! I want it to where only i can. Any help?

Chicago_VLNU_4s
09-14-2006, 03:47 AM
anyone fix this yet? It just showed up last night after having to ban a member. I searched the archives and well it showed 8 posts BUT NO fix

do you have the hide hack going on? For some reason, i have to disable it to edit usergroups or else i'll get an error when trying to save

teedizz
09-16-2006, 06:29 AM
will this work with 3.6.1?

lionslair
09-16-2006, 06:32 AM
yes it does.

DigitALL
09-17-2006, 04:44 PM
Does anyone from the admins, mods or this Zero Tolerance checking this thread??? There are tons of questions and no answers, in the best case just some guessing from other members!
If you put out a hack, either provide plenty of info and options we may have, or simply support your hack by answering to the forum members.

I have posted two issues and there are only other questions about the hack but no answers! Hey guys, is this normal?
__________________________________________________ __
Issue 1:
Does anyone know how and where to change the date format that is displayed in the shoutbox?
Currently, the default format is: [September 12th, 2006 20:28]
where it takes way too much space. I wish to remove the year and to display the month in a numerical format.
Does anyone know this information, please?
__________________________________________________ ___

Issue 2:
I have installed the vBshout and in the forumpage it looks OK with all the options. So if you post a shout with a smilie it looks OK, but when you you to the home page (made with CMPS module), the same posted shouts appears but with no smile. Instead, it shows a pic placeholder (please see the attached example).
It looks to me that I need to change a location in some template but have no idea where. Could anyone please help me?
__________________________________________________ ___

Shazz
09-17-2006, 05:16 PM
They have been both posted in this thread somewhere. I have seen them both.

o0Hubba0o
09-17-2006, 05:46 PM
[SIZE="3"][B]Does anyone from the admins, mods or this Zero Tolerance checking this thread??? There are tons of questions and no answers, in the best case just some guessing from other members!
If you put out a hack, either provide plenty of info and options we may have, or simply support your hack by answering to the forum members.
It would be nice, however if you look at the top the "supported" box is NOT checked so that has to be taken into consideration before calling them out like this.

As for the date it uses the format you have your forums set to in vBulleting options/Date and Time Options. To make it different from that I'm not sure, this is only a very vague guess but maybe in the shout.php something with this? Sorry, that's best I can do for you.
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;

DigitALL
09-17-2006, 06:11 PM
It would be nice, however if you look at the top the "supported" box is NOT checked so that has to be taken into consideration before calling them out like this.

As for the date it uses the format you have your forums set to in vBulletin options/Date and Time Options. To make it different from that I'm not sure, this is only a very vague guess but maybe in the shout.php something with this? Sorry, that's best I can do for you.

Thank you and I appreciate your answer. I do not wish to be harsh, but you see, it is exactly what I wrote: just guessing because there is no support. I did modified the php but the date is one day in advance and not sure to play around to not damage something else...

I do not believe that I called anybody in any way...
It is just common sense that when you arrive here sent by vBulletin.com to get sooner or later what you expect. In fact, what is the purpose of this forum? To post various hacks and let others bang their heads and screw their boards?? Do a guessed mod and later to realize that it is something else screwed-up?
Why the forum's policy allows to post a hack that is unsupported or explained in details by the coder? Why not place them in a separate section "Unsupported Hacks"? However, if you look through this forum most of the hacks are supported.
All together, it just appear to me that this board does not have any management in place...

o0Hubba0o
09-17-2006, 07:48 PM
Well at least you have the option of seeing if it's supported or not, if it's not then don't install it on your boards. These forums have been set up that way since I joined and I'm sure before that. Things happen, peoples lives move in different directions.

Bottom line, look to see if the supported option is checked or not, if it is and you don't get support then you have a plausible arguement. Getting responses which may be guesses are better than nothing when a hack/mod isn't supported, at least they're giving ideas on how to go about it. This site is more than just the staff and coder's providing us with hacks/mods, it's the community doing their best to help each other too. That's more than you'll get at other sites.

I was thinking on the smilie or image deal this might help:

Q: Some of my images are broken on my vBadvanced pages.

A: If it is your smilies and/or icons that are broken, upload the install file to your /forum/admincp directory and go to the file in your browser. Once there, you will see a link that says 'Click here to update your image paths'. Click that link and it will attempt to update your image paths. If it cannot, you will need to change the URL to each of your smilies and icons through the Admin CP.
I had to upload my styles image folders to the root also to get them to work with vba pages, I currently don't have anything on my portal that would show smilies so that's not an issue with me.

GrendelKhan{TSU
09-18-2006, 05:58 AM
sorry... couldn't find it..
where can I get v2.1?

VaaKo
09-18-2006, 02:38 PM
does it work on vb3.6.0?

Neal-UK
09-18-2006, 07:02 PM
yes it does

Shazz
09-18-2006, 08:52 PM
And 3.6.1 :D

midirtrider
09-19-2006, 09:20 PM
I am having a slight issue with it in 3.6.0
(also was doing it on 3.5.4)

anyways when you try to type a "----" I get this... &quot;------&quot;

is there a way to fix this? its really annoying!

thanks in advance..

thablewprnt
09-19-2006, 09:55 PM
does anyone, and I mean ANYONE know how to make it where I (ADMIN) can only edit shouts? My G-Mods and Mods have a field day editing each others and other members post! I want it to where only i can. Any help?


Yes can anyone answer this question?

Shazz
09-19-2006, 10:27 PM
Would have to fix inside the .php file , on the part where it states the usergroups... Ill look into it

voteforbird
09-20-2006, 05:25 PM
I am attempting to make two installations of vBShout, the second of which I will move to a different page and use as a chatroom for premium members (I hope this isn't *too* server intensive). Anyway, I did a complete find and replace for "shout" to "chat" and "Shout" to "Chat" in the vBShout files. I then installed the new product. On my forums index, I get the following error (so the product is now disabled):Fatal error: Cannot redeclare isbanned() (previously declared in /home/volconvo/public_html/forums/index.php(536) : eval()'d code:114) in /home/volconvo/public_html/forums/index.php(536) : eval()'d code on line 265Any idea how to fix this?

voteforbird
09-20-2006, 05:34 PM
I should probably add that since I'm moving it to a new page anyway, if anyone can help figure out how to stick it on its own empty vB page, that would kill two birds with one stone.

da420
09-20-2006, 05:38 PM
I am having a slight issue with it in 3.6.0
(also was doing it on 3.5.4)

anyways when you try to type a "----" I get this... &quot;------&quot;

is there a way to fix this? its really annoying!

thanks in advance..

Page 109, look there for your answer. There is an alternative PHP file to DL that will replace the current PHP file.

Shazz
09-20-2006, 08:43 PM
Its been handled :)

Chicago_VLNU_4s
09-21-2006, 03:12 AM
Would have to fix inside the .php file , on the part where it states the usergroups... Ill look into it

yes please! let me/ US know when you've found it!

Shazz
09-21-2006, 03:15 AM
yes please! let me/ US know when you've found it!
vBCoderz.com

Chicago_VLNU_4s
09-22-2006, 05:18 PM
i don't know whether or not you're pointing us to that site to sign up or what? Do you have a direct way you can say in here?

BTW, i like your forum home, how do i get mine like that?

IngoPan
09-23-2006, 10:25 AM
Hi!

I am quite new to vbulletin and therefore i am having a little trouble here implementing the shoutbox properly.
I?d like to set the shoutbox to another position in my forum than the 3 options given. (And of course switching off the default position one). How do i do this ?
A step by step guide would be nice ;)


Thanks in advance, Ingo

Shazz
09-23-2006, 02:24 PM
i don't know whether or not you're pointing us to that site to sign up or what? Do you have a direct way you can say in here?

BTW, i like your forum home, how do i get mine like that?
I have uploaded fixes for the shoutbox... Its not to get you there.

FROGGYJ
09-23-2006, 04:41 PM
ok this is strange. I have a user who can post no problem, but when he goes to the archive and edits his post, its saves, but as soon as you return to the shoutbox the changes don't remain. Any ideas?