vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.0 Full Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=33)
-   -   Shoutbox Hack 1.04b (https://vborg.vbsupport.ru/showthread.php?t=68861)

smacklan 05-12-2005 01:22 PM

Not to sound pissy, but I get the same errors when trying to update my Usergroup permissions, and no one is supporting this at Geeky nor here very much. ***Uninstalled***

Jenta 05-12-2005 04:55 PM

Step 1. (Optional) Edit the attached file and change 50 to whatever you want (you can leave it at 50 if that number is ok with you)

The 50 is at the end of this line...
PHP Code:

$DB_site->query("DELETE FROM " TABLE_PREFIX "shoutbox_posts WHERE shoutid < ($lastshoutid[max] - 50)"); 

That number (50 in this case), controls how many shouts are left in your database after this script runs

Step 2. (Optional) Save the file. (if u did step 1)

Step 3. Upload deleteoldshouts.php to your includes/cron/ directory

Add a new scheduled task as shown in the attached images.
Change it to whatever suits you.


If you use it, thank sabret00the and MarcoH64 for enlightening me on the correct query string.

Jenta 05-12-2005 06:53 PM

Original
http://img68.echo.cx/img68/4453/original7ys.gif

After
http://img68.echo.cx/img68/3862/after5ov.gif

on line 1069 of shoutbox.php

find

PHP Code:

        $shoutbox_posts $DB_site->query("
                                SELECT s.*, u.username AS absusername
                                FROM " 
TABLE_PREFIX "shoutbox_posts s 
                                LEFT JOIN " 
TABLE_PREFIX "user u ON (s.userid=u.userid) 
                                WHERE (deleted='0' OR deleted IS NULL)
                                ORDER BY time DESC LIMIT 
$vboptions[shoutbox_numberofforumhomeshouts]
                                "
); 

replace with

PHP Code:

        $lastshoutid $DB_site->query_first("SELECT MAX(shoutid) AS max FROM shoutbox_posts"); 
        
$shoutbox_posts $DB_site->query(
                                SELECT s.*, u.username AS absusername 
                                FROM shoutbox_posts s 
                                LEFT JOIN user u ON (s.userid=u.userid) 
                                WHERE (deleted='0' OR deleted IS NULL) 
                                AND shoutid > (
$lastshoutid[max] - $vboptions[shoutbox_numberofforumhomeshouts]
                                ORDER BY shoutid ASC 
                                "
); 


in template forumhome
look for
HTML Code:

<!-- IF THE IFRAME IS ENABLED -->
cut this section

HTML Code:

<iframe src="shoutbox.php?$session[sessionurl]do=iframe" width="100%" height="165" scrolling="auto" frameborder="0" name="forumhome_shoutbox" id="forumhome_shoutbox"></iframe>
and move it up right under

HTML Code:

<!-- IF THE IFRAME IS ENABLED -->
        <td class="alt1" width="100%"><span class="smallfont">


in template shoutbox_iframe

right below
HTML Code:

</head>
add
HTML Code:

<body onLoad="self.scrollTo(0,9999)">
you may also want to redo that template and add beginning and closing html, body, doctype, etc tags
they arent there :/
unless im missing something..perhaps iframes dont need them?


If you use it, thank sabret00the and MarcoH64 for enlightening me on the correct query string.

kermit_criminal 05-12-2005 07:10 PM

where is the readme file, i cant find it in the zip file

Jenta 05-12-2005 07:18 PM

Quote:

Originally Posted by kermit_criminal
where is the readme file, i cant find it in the zip file

right in the root of the zip file
its called install.txt :)

Kyderoy 05-12-2005 10:02 PM

I installed a new skin and the shout box was not added to the skin. How do I get the shout box to show up in the new skin? Thanks

FlyingHammer 05-13-2005 07:33 PM

Where and how would I change the form background from white to a darker color?

Thanks

Jenta 05-13-2005 08:14 PM

note sure what u mean by FORM background
but if ur talking the grayish areas that dont seem to match

in template shoutbox_iframe look for...
HTML Code:

$headinclude
<style type="text/css">
<!--
body {
margin: 0px 0px 0px 0px;
}
</style>

</head>

change it to
HTML Code:

$headinclude
<style type="text/css">
<!--
body {
margin: 0px 0px 0px 0px;
background-color: WHATEVER COLOR YOU WANT; <--- new line (remove this part and put a color code there!)
}
</style>

</head>

also there is a missing closing style comment tag there so change it to
example...
HTML Code:

$headinclude
<style type="text/css">
<!--
body {
margin: 0px 0px 0px 0px;
background-color: #000000;
}
//-->

</style>
</head>


Jenta 05-13-2005 08:17 PM

Quote:

Originally Posted by Kyderoy
I installed a new skin and the shout box was not added to the skin. How do I get the shout box to show up in the new skin? Thanks

you need to copy over all the templates that are from the shoutbox to the new skin
then modify the stock vb templates with the changes the shoutbox makes...like to forumhome, etc

you can also download the xml files for each style and use a file compare utitilty to merge the changes in the older style to the newer style

then just upload the modified xml file, overwriting the style

there's a hack here that will allow you to edit one style and have the changes applied to all the styles
this is a must if ur in the habit of modifying templates and want them applied to all styles
or u can use child styles :)

FlyingHammer 05-13-2005 09:50 PM

Quote:

Originally Posted by Jenta
note sure what u mean by FORM background
but if ur talking the grayish areas that dont seem to match

in template shoutbox_iframe look for...
HTML Code:

$headinclude
<style type="text/css">
<!--
body {
margin: 0px 0px 0px 0px;
}
</style>

</head>

change it to
HTML Code:

$headinclude
<style type="text/css">
<!--
body {
margin: 0px 0px 0px 0px;
background-color: WHATEVER COLOR YOU WANT; <--- new line (remove this part and put a color code there!)
}
</style>

</head>

also there is a missing closing style comment tag there so change it to
example...
HTML Code:

$headinclude
<style type="text/css">
<!--
body {
margin: 0px 0px 0px 0px;
background-color: #000000;
}
//-->

</style>
</head>



I am refering to the white form where you enter the text to shout. My board is dark and the white really stands out and is distracting, thanks for the fast responce, hopefully youll know how to do this as well so I am one more step to going live.

Thanks, Hammer

Jenta 05-14-2005 03:34 AM

thats under style manager, edit css
the class name is bginput

not sure if the form element IN THE SHOUTBOX has that class applied
if not just add class="bginput" to
HTML Code:

<input type="text" name="message".....
this will affect any text input form on your site

to give u an idea mine is

HTML Code:

textarea, .bginput
{
        background-color: #F5F5FF;
        color: #15326E;
        font: 10pt verdana, geneva, lucida, 'lucida grande', arial, helvetica, sans-serif;
        border: #26a solid 2px;
}

you can search for style sheets, css, forms and get some ideas of all the things u can do with form elements

Osiris2k 05-14-2005 01:31 PM

hey guys ... installed the shout box and the work ya done on it looks fantastic :)

but im having trouble deleting current shouts.. im lookin in the admincp for the permision masks for shoutbox to enable admins to delete/edit etc shouts

ive had a look at the screenshots ya took m8 but i cant find any simular options :( like the 1 in usergroup_permissions.gif ... i would apreciate any help ya can throw my way

thanx in advance

osiris

Zachery 05-14-2005 03:28 PM

Click on their username and a drop down should appear.

thuffner 05-15-2005 01:54 PM

I am running 3.0.7 and when I tried to install it I got the following error on the last step. I am guessing its because I had the BVShoutbox installed before and I didn't remove it totally from the database.

Quote:

Warning: halt(./includes/functions_log_error.php): failed to open stream: No such file or directory in /www/t/thuffner/htdocs/board/includes/db_mysql.php on line 389

Warning: halt(): Failed opening './includes/functions_log_error.php' for inclusion (include_path='.:/usr/local/php4/lib/php') in /www/t/thuffner/htdocs/board/includes/db_mysql.php on line 389



There seems to have been a slight problem with the BondMovies.com Message Board database.
Please try again by pressing the refresh button in your browser.

An E-Mail has been dispatched to our Technical Staff, who you can also contact if the problem persists.

We apologise for any inconvenience.
There was then a large text area with the following error in it as well:

Quote:

Database error in vBulletin 3.0.7:

Invalid SQL: ALTER TABLE language ADD `phrasegroup_shoutbox` MEDIUMTEXT NOT NULL
mysql error: Duplicate column name 'phrasegroup_shoutbox'

mysql error number: 1060

Date: Sunday 15th of May 2005 07:50:16 AM
Script: http://www.bondmovies.com/board/inst...=Shoutbox_Hack
Referer: http://www.bondmovies.com/board/inst...=Shoutbox_Hack
Username: thuffner
IP Address: xx.x.xx.xx
Any ideas as to how to remove the old shoutbox to allow for the installation of the new one?

Thanks! :)

Gary King 05-16-2005 09:03 PM

I disabled BB codes in the shoutbox, but now, when someone submits a URL, it has the [url] tags automatically around it but it doesn't create a link.

How do I remove the [url] tags, or make it into a link?

Jenta 05-18-2005 06:21 PM

Quote:

Originally Posted by Gary King
I disabled BB codes in the shoutbox, but now, when someone submits a URL, it has the [url] tags automatically around it but it doesn't create a link.

How do I remove the [url] tags, or make it into a link?

a shout is just like a post, bb codes will display the same behaviour

i wish someone would come up with a way where if urls are disabled then nothing gets displayed or the url is replaced with some wording that urls are not allowed

i would like this for image tags as well

if it passed the regex test then u get the image or url displayed
if it doesnt pass, something else is inserted into the post or shout

like, not a valid image - not a valid url

cgjackson2001 05-18-2005 11:35 PM

Hi,

How do i make the shoutbox smaller or put it on the side bar.

Thanks,
Chris

Vman 05-19-2005 12:32 AM

I removed everything and now doing a fresh install, this is the error code Im getting. Im also using 3.0.7

++++++++++++++++++++++++++++++++++++++++

Warning: halt(./includes/functions_log_error.php): failed to open stream: No such file or directory in /home/vman/public_html/forums/includes/db_mysql.php on line 389

Database error in vBulletin 3.0.7:

Invalid SQL: CREATE TABLE shoutbox_posts (
`shoutid` BIGINT (255) UNSIGNED DEFAULT '0' AUTO_INCREMENT,
`text` TEXT,
`userid` BIGINT (255) UNSIGNED DEFAULT '0',
`username` VARCHAR (255) DEFAULT '0',
`ip` VARCHAR (25) DEFAULT '0',
`time` BIGINT (20) UNSIGNED DEFAULT '0',
`edittime` BIGINT (20) UNSIGNED DEFAULT '0',
`edituser` VARCHAR (255) DEFAULT '0',
`deleted` TINYINT(1) UNSIGNED DEFAULT '0',
PRIMARY KEY(`shoutid`))
mysql error: Invalid default value for 'shoutid'

HELP, FIX, UPDATE, ETC......

Jenta 05-19-2005 03:16 AM

Quote:

Originally Posted by BBCVman
HELP, FIX, UPDATE, ETC......

good luck

support for this hack has disappeared
i tried installing it on a fresh 3.0.7 and as many people here keep getting ,duplicate column phrase already exist

ill see if i can export my tables and just give u the queries to run instead of using the htl hack intended for whatever version this thing is designed for

it works fine on 3.0.7, it just appears that you cant use the installer
once the tables are there its fine

------------------------------

ok i added a few things to this post, its not all there
stuff like the template edits
if u edit the installer and make it skip some steps in these queries and languages it will install the templates
think you will need to edit forumhome

this file is incomplete and use at ur own risk!
might help some that are having problems and know how to use these files

ps these queries wont work if u use table prefix

Vman 05-19-2005 04:09 AM

Quote:

Originally Posted by Jenta
good luck

support for this hack has disappeared
i tried installing it on a fresh 3.0.7 and as many people here keep getting ,duplicate column phrase already exist

ill see if i can export my tables and just give u the queries to run instead of using the htl hack intended for whatever version this thing is designed for

it works fine on 3.0.7, it just appears that you cant use the installer
once the tables are there its fine

------------------------------

ok i added a few things to this post, its not all there
stuff like the template edits
if u edit the installer and make it skip some steps in these queries and languages it will install the templates
think you will need to edit forumhome

this file is incomplete and use at ur own risk!
might help some that are having problems and know how to use these files

ps these queries wont work if u use table prefix

THanks!...Ill give that a try.....And thanks for responding so fast!!!!

Vman 05-19-2005 06:10 AM

Quote:

Originally Posted by BBCVman
THanks!...Ill give that a try.....And thanks for responding so fast!!!!

Here is another message from the forum:

Your usergroup(s) do not have permission to use the shoutbox.

And if I try to set the setting in the UserGroup for Admin, this is what I get:

Database error in vBulletin 3.0.7:

Invalid SQL: UPDATE usergroup SET

### UPDATE QUERY GENERATED BY fetch_query_sql() ###
title = 'Administrators',
description = '',
usertitle = 'Administrator',
opentag = '<b><font color=\"red\">',
closetag = '</b></font>',
passwordexpires = '0',
passwordhistory = '0',
shoutmaxdaily = '',
shouthierarchy = '',
attachlimit = '0',
avatarmaxwidth = '300',
avatarmaxheight = '300',
avatarmaxsize = '100000',
profilepicmaxwidth = '100',
profilepicmaxheight = '100',
profilepicmaxsize = '65535',
pmquota = '1000',
pmsendmax = '5',
forumpermissions = '393215',
pmpermissions = '3',
calendarpermissions = '31',
wolpermissions = '31',
adminpermissions = '3',
genericpermissions = '3145727',
genericoptions = '31',
shoutboxpermissions = '1023'
WHERE usergroupid=6
mysql error: Unknown column 'shoutmaxdaily' in 'field list'

mysql error number: 1054

Date: Thursday 19th of May 2005 03:09:43 AM
Script: http://www.bodybuildingcentral.net/f.../usergroup.php
Referer: http://www.bodybuildingcentral.net/f...&usergroupid=6
Username: Vman
IP Address: 69.225.27.147

Lizard King 05-19-2005 10:57 AM

I have the same problem right now with BBCVman
Is there a way to get rid of it.

mawtenbiker 05-20-2005 10:12 PM

alright I had a problem with the hack I uninstalled it, went to reinstall all and this is what I get.

Warning: halt(./includes/functions_log_error.php): failed to open stream: No such file or directory in /home/hrdece2/public_html/forums/includes/db_mysql.php on line 389

Warning: halt(): Failed opening './includes/functions_log_error.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/hrdece2/public_html/forums/includes/db_mysql.php on line 389

I have the templates in my bulletin but I can't get rid of them and it wont let me reinstall it.

Zacharicus 05-21-2005 03:00 AM

Thanks a lot for this!! Is there a way to tweak it a bit, so that for instance, the first shout uses css class alt1, then the second, uses alt2, third uses alt1, fourth uses alt2 class etc?

It would also be nice to get the shouts on forum home into a seperate div tag or something, so that each shout is perfectly left aligned together. Would make it more tidy.

cgwillis 05-21-2005 08:59 AM

Anyone having a problem where all the shouts disappear after a day or two? It just started happenning in the past couple weeks. I tried completely uninstalling and reinstalling, and it is still doing it.

T_Montana 05-21-2005 07:38 PM

anybody have this workin on there site so i can what it looks lie in action.Tried skimming through this thread to see but 45 pages is too much.....

cgwillis 05-21-2005 08:59 PM

http://www.deciblast.org/forums/

but it keeps losing the shouts :(

T_Montana 05-21-2005 09:21 PM

thanks

it doesn't scroll.I like the shoutbox invision power board has.Is there one like that for vbulletin?

Zacharicus 05-22-2005 01:42 AM

Here's another example of it in action. I installed it and tweaked it yesterday and people are lovin' it.

http://www.mindsofintelligence.com/forums

djjeffa 05-22-2005 03:19 PM

I installed another style and now my shout box is blank do you guys have any ideal how i could fix this?
im running the latest version of shout and im running vBulletin 3.0.5

T_Montana 05-22-2005 05:16 PM

guess i'm not using shoutbox hack......

Vman 05-22-2005 10:20 PM

I think I say they for everyone so far, Is this going to get fixed or not.....It appears to be a very important part of everyones boards.....

Lizard King 05-23-2005 11:05 AM

There is 2 problems with this hack and they are in field list. shoutmaxdaily and shouthierarchy are unknown colomn in field list. Is there a way to get these working ?

These queries wont run from hack installer so is there a way to run them manually ?
Code:

$query['new'][] = 'ALTER TABLE '.TABLE_PREFIX.'usergroup
                                  ADD `shoutboxpermissions` INT(10) UNSIGNED DEFAULT \'0\' NOT NULL,
                                  ADD `shouthierarchy` TINYINT(5) UNSIGNED DEFAULT \'0\' NOT NULL,
                                  ADD `shoutmaxdaily` TINYINT(5)    UNSIGNED DEFAULT \'0\' NOT NULL';

Code:

$query['new'][] = 'UPDATE '.TABLE_PREFIX.'usergroup SET shoutboxpermissions=\'1023\', shouthierarchy=\'1\' WHERE usergroupid=\'6\'';
$query['new'][] = 'UPDATE '.TABLE_PREFIX.'usergroup SET shoutboxpermissions=\'895\', shouthierarchy=\'2\' WHERE usergroupid=\'5\'';
$query['new'][] = 'UPDATE '.TABLE_PREFIX.'usergroup SET shoutboxpermissions=\'879\', shouthierarchy=\'3\' WHERE usergroupid=\'7\'';
$query['new'][] = 'UPDATE '.TABLE_PREFIX.'usergroup SET shoutboxpermissions=\'15\', shouthierarchy=\'4\' WHERE usergroupid=\'2\'';
$query['new'][] = 'UPDATE '.TABLE_PREFIX.'usergroup SET shoutboxpermissions=\'1\', shouthierarchy=\'6\' WHERE usergroupid=\'4\'';
$query['new'][] = 'UPDATE '.TABLE_PREFIX.'usergroup SET shoutboxpermissions=\'1\', shouthierarchy=\'5\' WHERE usergroupid=\'3\'';
$query['new'][] = 'UPDATE '.TABLE_PREFIX.'usergroup SET shoutboxpermissions=\'1\', shouthierarchy=\'0\' WHERE usergroupid=\'1\'';


Rhoads 05-23-2005 11:55 AM

I have made a clean install from 3.0.7 today. But when I use the installer I get a error like this.

Code:

Warning: halt(./includes/functions_log_error.php): failed to open stream: No such file or directory in /home/raymond/domains/dutchracingleague.nl/public_html/vbtest/forum/includes/db_mysql.php on line 403

Warning: halt(): Failed opening './includes/functions_log_error.php' for inclusion (include_path='.:/usr/local/lib/php') in /home/raymond/domains/dutchracingleague.nl/public_html/vbtest/forum/includes/db_mysql.php on line 403

Code:

Database error in vBulletin 3.0.7:

Invalid SQL: CREATE TABLE shoutbox_posts (
                                  `shoutid` BIGINT (255) UNSIGNED DEFAULT '0' AUTO_INCREMENT,
                                  `text` TEXT,
                                  `userid` BIGINT (255) UNSIGNED DEFAULT '0',
                                  `username` VARCHAR (255) DEFAULT '0',
                                  `ip` VARCHAR (25) DEFAULT '0',
                                  `time` BIGINT (20) UNSIGNED DEFAULT '0',
                                  `edittime` BIGINT (20) UNSIGNED DEFAULT '0',
                                  `edituser` VARCHAR (255) DEFAULT '0',
                                  `deleted` TINYINT(1) UNSIGNED DEFAULT '0',
                                  PRIMARY KEY(`shoutid`))
mysql error: Invalid default value for 'shoutid'

mysql error number: 1067

Date: Monday 23rd of May 2005 02:29:07 PM
Script: http://vbtest.dutchracingleague.nl/forum/install/hack_install.php?do=install&step=dodatabasequeries&hacks=Shoutbox_Hack
Referer:
Username: XXXXXX
IP Address: XX.XXX.XXX.XXX

What's wrong :disappointed:

Trana 05-23-2005 09:35 PM

Does anyone have a working copy of this on 3.0.7?

Polo 05-23-2005 09:41 PM

I do :)

Trana 05-23-2005 09:46 PM

Were you able to install straight from the files or did you need to edit anything?

1nf3rn0 05-23-2005 10:26 PM

Quote:

Originally Posted by Trana
Were you able to install straight from the files or did you need to edit anything?

you will need to do some editing..what needs to be edited is in the installer ;)

1nf3rn0 05-23-2005 10:40 PM

Quote:

Originally Posted by djjeffa
I installed another style and now my shout box is blank do you guys have any ideal how i could fix this?
im running the latest version of shout and im running vBulletin 3.0.5

did that before..scred the poop out of me..just go back thru the template edits you need to make that are in the install instructions and you should be good to go!;)

aloha 05-23-2005 11:32 PM

I installed this, and for some odd reason, when you click on a post in the forums, it doesn't take you there at all. It just stays there, how do I fix this?


All times are GMT. The time now is 12:29 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.02090 seconds
  • Memory Usage 1,885KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_code_printable
  • (13)bbcode_html_printable
  • (3)bbcode_php_printable
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete