The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
ShoutBOX would be nice.
Simple one. No multi/l33t/edit permissions features. Just for registered users, only on forumhome, regular shoutbox that uses forum smilies.
:nervous: Damn, wrong forum |
#2
|
|||
|
|||
Yeah, thats what im looking for.
|
#3
|
||||
|
||||
moved.
|
#4
|
|||
|
|||
Quote:
|
#5
|
|||
|
|||
Hi,
This is a nice shoutbox by GeekyDesigns, it would be great if someone does it for vBulletin 3.50 https://vborg.vbsupport.ru/showthread.php?t=68861 taffy |
#6
|
|||
|
|||
I would prefer something that just checked (if bbuserid) (include bb code parsing file) to allow smiles and URLs and bam post a shout!
Modify the forum home template with an iframe to show the shouts and your done. It's only a shout and geeky's is nice if you want ultimate control over shouts but something really, really simple would be nicer IMO. Unfortunately, I don't have the experience or I would probably spit one out in 10 minutes. |
#7
|
|||
|
|||
I have started to attempt to do this with my limited knowledge. I realize this looks more like 3.0 code. No problem converting it once the basics are in place.
I get it to insert the correct values into the database. I just need to figure out how to get it displayed now :nervous: If anyone wants to chime in... CREATE TABLE QUERY [sql] CREATE TABLE `shouts` ( `shoutid` bigint(255) unsigned NOT NULL auto_increment, `shout` text, `username` varchar(50) default '0', PRIMARY KEY (`shoutid`) ) TYPE=MyISAM AUTO_INCREMENT=1 ; [/sql] SHOUTBOX.PHP PHP Code:
HTML Code:
<form action="shoutbox.php" method="post"> <input type="hidden" name="do" value="addshout" /> <input type="text" name="shout" value="" size="60" /> <input type="submit" class="button" value="Shout!" /> </form> IFRAME SOURCE ON FORUMHOME HTML Code:
$stylevar[htmldoctype] <html dir="$stylevar[textdirection]" lang="$stylevar[languagecode]"> <head> <title><phrase 1="$vboptions[bbtitle]">$vbphrase[x_powered_by_vbulletin]</phrase> ShoutBox IFrame</title> <META HTTP-EQUIV="Refresh" CONTENT="90; URL=shoutbox.php?"> $headinclude <style type="text/css"> <!-- body { margin: 0px 0px 0px 0px; background-color: #F5F5FF; } //--> </style> </head> <body> <table border="0" width="100%" align="center" class="alt1"> <tr> <td class="alt1" width="100%"> <span class="smallfont">SHOUTS WOULD GO HERE</span> </td> </tr> </table> </body> </html> |
#8
|
|||
|
|||
You should at least protect the INSERT statement against SQL-Insertions. The current code is a huge security risk.
|
#9
|
|||
|
|||
Quote:
---------------------------------------------------- I got this to pull shouts... PHP Code:
will probably give up at this point |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|