Premium Skins
Are You Sure This Is IPB?
Are You Sure This Is IPB?
Let It Snow
Let It Snow
Gamr
Gamr
WiiPlay
WiiPlay
Heaven
Heaven
Site It!
Site It!
Revolution
Revolution
GFX
GFX


Welcome Guest ( Log In | Register )

265 Pages V   1 2 3 > »   
Reply to this topicStart new topic
D-Shoutbox 5.7.4.1, Fully-Featured, Fantastic Shoutbox will
Dean
post Dec 31 2003, 12:30 PM
Post #1


Oooooo....
******

Group: Members
Posts: 6,282
Joined: 10-December 03
From: Illinois
Member No.: 69,031



D-Shoutbox 5.7.4.1

Category: Add-On Modules
Compatibility: Invision Power Board
Demo: http://forums.dscripting.com/index.php?act=Shoutbox


Description:

*D-Shoutbox 5.7.4 -- The High-Tech Shoutbox*

*Update Version Of 5.7.4*
I have updated the D-Shoutbox (again tongue.gif). I have fixed many of the bugs that were still in there. I have also added a new feature to it. A search system. You can now search by author or shout and that begins with or contains. Pretty neat!
Please upgrade to 5.7.4 immediately if you have an older version of D-Shoutbox installed. If you are using an older version, 5.6, 5.7, 5.7.1, or 5.7.2 I recommend you upgrade immediatly.

*D-Shoutbox Features*
----------------------
Regular/Iframe/Popup Shoutbox Viewing
Members Avatars Showing On Shouts
Users Have Their Own Shoutbox Settings
Clickable Smilies Table
Latest Global Shouts
Shout Colors (Dropdown)
Current Online Users Viewing Shoutbox
Top Shouters Today
Top Shouters Overall
Show shout time
Shoutbox Moderator options
D-Shoutbox items for IBStore
Show all shouts by a member
View a single shout
Bulit-in badwords system
Flood checking system
Wordwrap shouts
Users can delete own shouts
Daily shout limits
Page jumping
Search System
----------------------

*Admin Features*
----------------------
Shoutbox On/Offline
Custom Color Choosing
Posts Per Page
Flood Control
Flood Control In Seconds
Recounter
Reward IBStore or IBShop Money Per Shout
Ban/Unban Users From Shouting
Guest Viewing/Posting To Shoutbox
Edit/Delete Shouts
Autodelete Shouts
Show a banner above the shoutbox
Members/Groups A Shoutbox Moderator
Require the use of a D-Shoutbox Card to shout
Website extras field
Have a predefined "noavatar" image if a member has no avatar
Set the avatar sizes for the shoutbox avatars ONLY!
Admin "Status Checker"
Set own D-Shoutbox rules
Set own custom error messages
Edit group permissions in D-Shoutbox section of Admin CP
Edit a members shoutbox settings in D-Shoutbox section of Admin CP
Set daily shout limits per group/member
Settings System
Global shoutbox effects
Shoutbox skin selection
Shoutbox displaying
Wordwrap shouts
Add badwords
Remove line breaks in global shouts
----------------------

*User Settings* (9)
----------------------
Choose Shoutbox Appearance (Regular|Iframe|Popup)
Show users avatar (Yes|No)
Show shout time (Yes|No)
Choose a default shout color
Show smilies table on Regular shoutbox appearance
Show todays shouters on Regular shoutbox appearance
Show top shouters overall on Regular shoutbox appearance
Set your own refresh time
Select your D-Shoutbox Card style
----------------------

To use the D-Shoutbox IBStore items, it would be best you if have IBStore 2.8 installed!

*D-Shoutbox IBStore Items* (9)
----------------------
D-Shoutbox Card
Delete Own Shout From Shoutbox
Delete Any Shout From Shoutbox
Add To Shout Count
Change A Members Shoutbox Status
Change A Members Shoutbox Type
Change A Members Refresh Time
Change A Members D-Shoutbox Card Style
Change A Members Default Color
----------------------

*Current D-Shoutbox Addons* (6)
----------------------
D-Shoutbox Website Addon
D-Shoutbox For Portal 1.3 By Dragoran
Global Latest Shouts On IPDL
Latest Shouts ON IPDL (V2)
Show Number Of Shouts In Profile
Show Latest Shout In Profile
----------------------


Installation Time: 8-10 Minutes

View Mod

This post has been edited by Dean: Apr 28 2005, 06:12 AM


--------------------
Want My IPB 2.2.x Mods?? Available @ D-Scripting!
[Donate!] [D22-Shoutbox!]

D-Scripting: [Website] [Forums] [Donate To Me!]

You Like My Mods? You Love My Mods? You Still Want Me To Make Mods?
Well... Send Me Donation Money Then!!

"Procrastination isn't the problem, it's the solution. So procrastinate now, dont put it off."

Go to the top of the page
 
+Quote Post
Lauras
post Dec 31 2003, 12:45 PM
Post #2


Newbie
*

Group: Members
Posts: 54
Joined: 8-October 03
Member No.: 53,524



Installing... biggrin.gif


cant DROP something no exists!!!

here
CODE
mySQL query error: ALTER TABLE ibf_groups DROP g_view_dshoutbox, ADD g_view_dshoutbox tinyint(1) DEFAULT '1'

mySQL error: Can't DROP 'g_view_dshoutbox'. Check that column/key exists
mySQL error code:
Date: Wednesday 31st of December 2003 03:46:16 PM


take off DROP ALTER TABLE biggrin.gif

This post has been edited by Lauras: Dec 31 2003, 12:51 PM


--------------------
XLAUNOLIMITS Visit us on...
XLAU FORUMS
Go to the top of the page
 
+Quote Post
Lauras
post Dec 31 2003, 12:56 PM
Post #3


Newbie
*

Group: Members
Posts: 54
Joined: 8-October 03
Member No.: 53,524



Quick FIX...

in DINTALLER.PHP Find...
CODE

$query3="ALTER TABLE ".$INFO['sql_tbl_prefix']."groups DROP g_view_dshoutbox, ADD g_view_dshoutbox tinyint(1) DEFAULT '1'";
$query4="ALTER TABLE ".$INFO['sql_tbl_prefix']."groups DROP g_post_dshoutbox, ADD g_post_dshoutbox tinyint(1) DEFAULT '1'";
$query5="ALTER TABLE ".$INFO['sql_tbl_prefix']."members DROP use_dshoutbox, ADD use_Shoutbox tinyint(1) DEFAULT '1'";
$query6="ALTER TABLE ".$INFO['sql_tbl_prefix']."members DROP shouts, ADD shouts mediumint(5) NOT NULL DEFAULT '0'";


and change it by:

CODE

$query3="ALTER TABLE ".$INFO['sql_tbl_prefix']."groups ADD g_view_dshoutbox tinyint(1) DEFAULT '1'";
$query4="ALTER TABLE ".$INFO['sql_tbl_prefix']."groups ADD g_post_dshoutbox tinyint(1) DEFAULT '1'";
$query5="ALTER TABLE ".$INFO['sql_tbl_prefix']."members ADD use_Shoutbox tinyint(1) DEFAULT '1'";
$query6="ALTER TABLE ".$INFO['sql_tbl_prefix']."members ADD shouts mediumint(5) NOT NULL DEFAULT '0'";


Wonderfull Mod biggrin.gif


--------------------
XLAUNOLIMITS Visit us on...
XLAU FORUMS
Go to the top of the page
 
+Quote Post
Lauras
post Dec 31 2003, 01:30 PM
Post #4


Newbie
*

Group: Members
Posts: 54
Joined: 8-October 03
Member No.: 53,524



another bug...

mySQL query error: SELECT use_dshoutbox FROM ibf_members WHERE id='1'

mySQL error: Unknown column 'use_dshoutbox' in 'field list'
mySQL error code:
Date: Wednesday 31st of December 2003 04:25:46 PM

i dont know SQL so, i cant fix... sad.gif

[FIXED]

In the IBF_MEMBERS table edit use_Shoutbox by use_dshoutbox...

hehehe, biggrin.gif

This post has been edited by Lauras: Dec 31 2003, 01:32 PM


--------------------
XLAUNOLIMITS Visit us on...
XLAU FORUMS
Go to the top of the page
 
+Quote Post
Syphonic killer
post Dec 31 2003, 01:38 PM
Post #5


Member
**

Group: Members
Posts: 172
Joined: 17-April 03
From: England
Member No.: 3,722



SQL
$query5="ALTER TABLE ".$INFO['sql_tbl_prefix']."members ADD use_Shoutbox tinyint(1) DEFAULT '1'";


This adds use_Shoutbox column, but it seems your page is asking for the column:
use_dshoutbox

So i guess you gotta change a few queries within your code, in your shoutbox.php just find:
use_dshoutbox and change it to => use_Shoutbox

Im guessing (didn't downlaod the mod) that ad_members.php was edited, if that 'use_dshoutbox' exists there, change it to 'use_Shoutbox'

Should fix it up smile.gif


--------------------
Go to the top of the page
 
+Quote Post
Dean
post Dec 31 2003, 01:41 PM
Post #6


Oooooo....
******

Group: Members
Posts: 6,282
Joined: 10-December 03
From: Illinois
Member No.: 69,031



Ok. I fixed the installer in the zip.


--------------------
Want My IPB 2.2.x Mods?? Available @ D-Scripting!
[Donate!] [D22-Shoutbox!]

D-Scripting: [Website] [Forums] [Donate To Me!]

You Like My Mods? You Love My Mods? You Still Want Me To Make Mods?
Well... Send Me Donation Money Then!!

"Procrastination isn't the problem, it's the solution. So procrastinate now, dont put it off."

Go to the top of the page
 
+Quote Post
Lauras
post Dec 31 2003, 01:45 PM
Post #7


Newbie
*

Group: Members
Posts: 54
Joined: 8-October 03
Member No.: 53,524



Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in /www/laguiade11.com.ar/htdocs/forum/sources/Drivers

another biggrin.gif
in shoutbox.php


Ok, im installed and is workin, but, i got the fletch_array error... and that is a prob on my design, design is just a test...
look into mi shoutbox, here > http://forum.xlau.com.ar/index.php?&act=Shoutbox

i cant find the problem in shoutbox.php, if anyone can tell me plz...

if shoutboxz is empty therent a fletch_array error, but if i post a shout the fletch array error appear... sad.gif

This post has been edited by Lauras: Dec 31 2003, 02:00 PM


--------------------
XLAUNOLIMITS Visit us on...
XLAU FORUMS
Go to the top of the page
 
+Quote Post
mbennett
post Dec 31 2003, 03:18 PM
Post #8


Newbie
*

Group: Members
Posts: 40
Joined: 14-April 03
Member No.: 2,572



Fatal error: Call to undefined function: last_shout() in /home/mothers/public_html/sources/Boards.php on line 395

i get that on index.php

and get this on http://motherscreations.com/index.php?act=Shoutbox

Could not fetch the templates from the database. Template skin_shoutbox, ID 1

I followed the mod to a t and get these errors

This post has been edited by mbennett: Dec 31 2003, 03:21 PM
Go to the top of the page
 
+Quote Post
Lauras
post Dec 31 2003, 03:28 PM
Post #9


Newbie
*

Group: Members
Posts: 54
Joined: 8-October 03
Member No.: 53,524



try to fix u error editing Boards.php

and the shoutbox dont work, do u upload skin_shoutbox.php?

look into mi fixes from intaller.php, and fix u db...

mine work good, but i have a error, fixiable biggrin.gif
so, try to edit again the files smile.gif o look wut u do bad


--------------------
XLAUNOLIMITS Visit us on...
XLAU FORUMS
Go to the top of the page
 
+Quote Post
mbennett
post Dec 31 2003, 06:52 PM
Post #10


Newbie
*

Group: Members
Posts: 40
Joined: 14-April 03
Member No.: 2,572



ill look at it 2morrow and post my results
Go to the top of the page
 
+Quote Post
Franklin
post Jan 1 2004, 08:21 AM
Post #11


Newbie
*

Group: Members
Posts: 21
Joined: 20-April 03
Member No.: 4,939



Hello dscripting,
I`ve installed the shoutbox, it is running, but there is a problem wirth autorefresh:

Autofresh shouts with iframes? Yes
How many seconds to refresh? 5
(Only if autorefresh is set to yes)

But it doesn´t work?

When I send a message, I can not see this in the iframe.
Only when I click on refresh, it is working....


Pleas, can you tell me, what the problem is?

Thanks, Franklin
Go to the top of the page
 
+Quote Post
stealthspy
post Jan 1 2004, 11:38 AM
Post #12


Newbie
*

Group: Members
Posts: 30
Joined: 5-August 03
Member No.: 32,632



QUOTE(mbennett @ Dec 31 2003, 09:18 PM)
Fatal error: Call to undefined function: last_shout() in /home/mothers/public_html/sources/Boards.php on line 395

i get that on index.php

and get this on http://motherscreations.com/index.php?act=Shoutbox

Could not fetch the templates from the database. Template skin_shoutbox, ID 1

I followed the mod to a t and get these errors

That looks like a skin bug. Check your skin modding.
Go to the top of the page
 
+Quote Post
mbennett
post Jan 1 2004, 12:35 PM
Post #13


Newbie
*

Group: Members
Posts: 40
Joined: 14-April 03
Member No.: 2,572



well with that example i removed it from the index.php and Boards.php so the forums would work until i got a chance to mess with it again
Go to the top of the page
 
+Quote Post
mbennett
post Jan 1 2004, 01:19 PM
Post #14


Newbie
*

Group: Members
Posts: 40
Joined: 14-April 03
Member No.: 2,572



Im still getting the same errors. I changed all the queries to use_Shoutbox. I have installed 100's of mods and even some from this author and this is the first and only one to really give me any problems.

I think Ill just wait until the code is cleaned up before I try again. wink.gif
Go to the top of the page
 
+Quote Post
Xilo
post Jan 1 2004, 05:05 PM
Post #15


Newbie
*

Group: Members
Posts: 23
Joined: 29-December 03
Member No.: 72,874
IPB Version: 1.3.x



I'm getting this error when I click on stats in the ACP

CODE

mySQL query error: SELECT * FROM ibf_members WHERE use_Shoutbox=0

mySQL error: Unknown column 'use_Shoutbox' in 'where clause'
mySQL error code:
Date: Thursday 01st of January 2004 06:04:32 PM
Go to the top of the page
 
+Quote Post

265 Pages V   1 2 3 > » 
Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 



RSS Lo-Fi Version Time is now: 4th July 2009 - 07:24 AM

Search Engine Keywords
Invision Skins · IPB Skins