Quote:
Originally Posted by |Jordan|
I finally gave up on this buggy shoutbox and replaced with Cyb - Chatbox. If you're tired of lack of support and updates, i suggest you switch too (Cyb has all the features of this and more).
|
I'm sorry for the lack of support, but like I said, I have a new version coming out soon that will address many issues, include a smilies box, and more.
If you don't like this shoutbox then DON'T INSTALL IT. If you REALLY need support, send me a PM, I won't bite. Coming here and bashing coders who volunteer their time writing free mods for people is pathetic and immature.
People like you just piss me off. You have no consideration for the hours I spent working on this. If you don't like my coding or the way I try my best to support my scripts (while working a full time job of 60+ hours a week) then maybe next time you can keep it to yourself. Did you feel proud of yourself for posting this? Or is it just your instinct to try and demotivate other volunteer coders?
Quote:
Originally Posted by RichDavid
I like the look. I installed the newest version, but I get
The requested URL /VB/shoutbox/shoutdiv.php was not found on this server.
I am a fairly new vB user, so this may be an obvious issue, but I cannot find a reference to this error.
|
Make sure that you put the shoutbox folder in your MAIN vbulletin directory, that should fix it.
Quote:
Originally Posted by matthewhotdude
Ok got a SQL problem...Can be seen here http://www.chattaboxforums.com
Does this seem ok?
chdir('../');
require_once('global.php');
require_once('includes/class_bbcode.php');
require_once('includes/functions_newpost.php');
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$sql = $db->query("
select s.*, g.opentag, g.closetag
from " . TABLE_PREFIX . "shoutbox as s, " . TABLE_PREFIX . "user as u, " . TABLE_PREFIX . "usergroup as g
where u.userid = s.user_id and g.usergroupid = u.usergroupid
order by id desc
limit " . $vbulletin->options['ddsb_show'] . "
");
$alt_count = 1;
while ($row = mysql_fetch_assoc($sql))
{
$alt_class = ($alt_count % 2) ? 'alt1' : 'alt2';
$id = $row['id'];
$user_id = $row['user_id'];
$user_name = $row['user_name'];
$opentag = $row['opentag'];
$closetag = $row['closetag'];
|
I visited the URL and see on SQL errors. Please copy and paste them so I can tell you whats going on.