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


All times are GMT. The time now is 12:40 PM.

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.01775 seconds
  • Memory Usage 1,775KB
  • 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
  • (11)bbcode_html_printable
  • (3)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (3)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)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