php forum
php mysql forum
php mysql smarty
 
Page 3 of 4 < 1 2 3 4 >
Topic Options
#112074 - 08/13/02 11:21 AM Re: [6.3 ] Compact Headers
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25461
Loc: Texas
Most likely we need to add align="center" to a few places... that should clean it up smile
_________________________
- Allen wavey
- What Drives You?

Top
#112075 - 08/14/02 04:19 AM Re: [6.3 ] Compact Headers
Da Wacko Offline
Junior Member

Registered: 07/06/02
Posts: 17
i want this hack very much,
but it forces you to re-edit all your hacked files...and that is reallllly much work..:s

so, i would love the one that would make a .txt file of the things to be edited (yes, i know it's MUCH work :S)
_________________________
i was X-tend, but i lost my mail and password frown

Top
#112076 - 09/02/02 06:13 PM Re: [6.3 ] Compact Headers
Charles1 Offline
Member

Registered: 03/14/02
Posts: 35
Suggestion: public_forum_page.pl

------------------------------------
replace:
-------------------------------------

sub topic_table_header {

my $this_html = qq~
<tr bgcolor="$vars_style{AltColumnColor2}">
<td colspan="7" align="left"><font size="1" face="$vars_style{FontFace}">$vars_wordlets{moderated_by} $Moderator $more_topics_wording $vars_wordlets{show_topics_from_last} <a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=forum;f=$in{f};DaysPrune=10">10</a> | <a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=forum;f=$in{f};DaysPrune=20">20</a> | <a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=forum;f=$in{f};DaysPrune=45">45</a> | <a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=forum;f=$in{f};DaysPrune=1000">all</a> days</font></td>
</tr>

------------------------------------
with:
-------------------------------------

sub topic_table_header {

my $this_html = qq~
<tr bgcolor="$vars_style{AltColumnColor2}" width="100%">
<td colspan="7" align="left">
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td width="50%">
<font size="1" face="$vars_style{FontFace}">
$vars_wordlets{moderated_by} $Moderator
</font>
</td>
<td width="50%" align="right">
<font size="1" face="$vars_style{FontFace}">
$more_topics_wording $vars_wordlets{show_topics_from_last} <a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=forum;f=$in{f};DaysPrune=10">10</a> | <a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=forum;f=$in{f};DaysPrune=20">20</a> | <a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=forum;f=$in{f};DaysPrune=45">45</a> | <a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=forum;f=$in{f};DaysPrune=1000">all</a> days</font>
</font>
</td>
</tr>
</table>
</td>
</tr>

Top
#112077 - 09/02/02 06:24 PM Re: [6.3 ] Compact Headers
Charles1 Offline
Member

Registered: 03/14/02
Posts: 35
public_confirm_delete.pl contains an extra $TBT

The one prior to the <form action tag can be deleted.

Top
#112078 - 09/02/02 06:36 PM Re: [6.3 ] Compact Headers
Charles1 Offline
Member

Registered: 03/14/02
Posts: 35
In the following function:

sub TransitionCore {

-----------
find:
-----------

print <<THIS;

$Header
$refresh
<center>
$standard_title_table
</center>




$TBT

-----------
remove:
-----------

<center>
$standard_title_table
</center>




That seemed to have done it for me thus far.

Top
#112079 - 09/02/02 06:54 PM Re: [6.3 ] Compact Headers
Charles1 Offline
Member

Registered: 03/14/02
Posts: 35
This will fix the PM Ignore/Buddy List, atleast it did for me.

# UBB.classic PM List Page - for ignore & buddy lists

$MainButtonsLine = &MainButtonOptions;

# standard top of HTML page
print "$Header";

print <<ListGuts;
<center>
$standard_title_table
<table width="100%" border="0" cellspacing="0" cellpadding="0"><tr><td width="100%" align="right"><font size="1" face="$vars_style{FontFace}"><b><a href="$vars_config{CGIURL}/ultimatebb.cgi">$vars_config{BBName}</a> » <a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=my_profile">$vars_wordlets{my_profile_header}</a> &#187; $this_list $vars_wordlets{list}</b></font></td></tr></table>
</td></tr>
</center>
$TBB



<form action="$vars_config{CGIURL}/ultimatebb.cgi" method="post">
<input type="hidden" name="ubb" value="update_$that_list">
$TBT

<center>

<tr bgcolor="$vars_style{AltColumnColor1}">
<td align="left">
<font size="2" face="$vars_style{FontFace}">$list_explained</font>
</td></tr>
</center>
$TBB


$TBT
<tr bgcolor="$vars_style{TableColorStrip}">
<td colspan="3">
<b><font size="$vars_style{TextSize}" face="$vars_style{FontFace}" color="$vars_style{TableStripTextColor}">
$this_list $vars_wordlets{list}
</font></b>
</td>
</tr>

<tr bgcolor="$vars_style{CategoryStripColor}">
<td> </td>
<td>
<font color="$vars_style{CategoryStripTextColor}" size="$vars_style{TextSize}" face="$vars_style{FontFace}"><b>
$vars_wordlets{public_name_field}
</b></font>
</td>
<td>
<font color="$vars_style{CategoryStripTextColor}" size="$vars_style{TextSize}" face="$vars_style{FontFace}"><b>
$vars_wordlets{user_number}
</b></font>
</td>
</tr>
ListGuts

foreach $key (@pm_list) {
if (&FileExists("$vars_config{MembersPath}/$key.cgi")) {
$count++;
$this_name = &get_public_name($key);
if ($this_list eq 'Buddy') {
$this_name .= qq~
<a href="$vars_config{CGIURL}/ultimatebb.cgi?ubb=private_message&u=$key"><img src="$vars_config{NonCGIURL}/$vars_style{priv_message}" border='0' alt="$vars_wordlets{send_private_message}"></a>
~;
}

print <<list_row;
<tr bgcolor="$vars_style{AltColumnColor1}">
<td valign="top">
<input type="checkbox" name="$key" value="include" checked="checked">
</td>
<td valign="top">
<font size="1" face="$vars_style{FontFace}">
$this_name
</font>
</td>
<td valign="top">
<font size="1" face="$vars_style{FontFace}">
$key
</font>
</td>
</tr>
list_row
}
}

if ($count == 0) {
print <<list_row;
<tr bgcolor="$vars_style{AltColumnColor1}">
<td valign="bottom" colspan="3">
<font size="1" face="$vars_style{FontFace}">
$vars_wordlets{no_one_on_list}
</font>
</td>
</tr>
list_row
} else {
print <<list_row;
<tr bgcolor="$vars_style{AltColumnColor1}">
<td align="center" valign="bottom" colspan="3">
<input type="submit" name="submit" value="$vars_wordlets{update} $this_list $vars_wordlets{list}">
</td>
</tr>
list_row

}

print <<ListBottom;
$TBB


</form>

ListBottom

# standard bootom of HTML page
print "$Footer";

# Nothing below this line should be changed.. and there is no more code!

# This entire program is copyright Infopop Corporation.
# For more info on UBB.classic and other Infopop
# Products/Services, visit: http://www.infopop.com

# You may not distribute this program in any manner, modified or otherwise.

#You make modifications, but only for your own use and within the confines of the UBB.classic License Agreement.

# DANGER: Do not remove the following line!
1;
# $Id: public_pm_list.pl,v 1.6 2002/04/18 22:59:30 cvscapps Exp $

Top
#112080 - 09/07/02 04:45 AM Re: [6.3 ] Compact Headers
mark99 Offline
Member

Registered: 03/11/01
Posts: 314
Will this be updated for v6.3.x.x?

Top
#112081 - 09/21/02 05:48 AM Re: [6.3 ] Compact Headers
AlexTrim Offline
Junior Member

Registered: 05/04/02
Posts: 13
is there a multihack file please ?

Top
#112082 - 09/21/02 10:10 AM Re: [6.3 ] Compact Headers
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25461
Loc: Texas
Alex, all you do is unzip and upload smile

mark, I believe it is smile
_________________________
- Allen wavey
- What Drives You?

Top
#112083 - 11/09/02 09:50 AM Re: [6.3 ] Compact Headers
dover Offline
Junior Member

Registered: 05/03/02
Posts: 20
Install it on UBB.classicTM 6.3.1.1.
Become such:

What to do?

Top
#112084 - 11/09/02 10:35 AM Re: [6.3 ] Compact Headers
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
I'm sorry you've been yo-yo'd between 2 boards to ask that question... wink

Try the following:
Find
Quote:
code:</font><hr />
Code:
	my $row = qq~
<tr><td bgcolor="$alt_color" colspan="2">
<hr /></blockquote>Replace with:<blockquote><font class="small">code:
[qb]
Code:
	my $row = qq~
<tr><td bgcolor="$alt_color" colspan="3">
[/qb]
_________________________

My Hacks Page (will be back with UBB 7!)
UBBDev - We put the class into UBB.classic!

Top
#112085 - 11/09/02 09:11 PM Re: [6.3 ] Compact Headers
dover Offline
Junior Member

Registered: 05/03/02
Posts: 20
LK,thank you!

Top
#112086 - 11/09/02 11:51 PM Re: [6.3 ] Compact Headers
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
It works here, disable any proxy/firewall or use the following link: www.ubbdev.com/lk/memberlist_6.4.5.zip
_________________________

My Hacks Page (will be back with UBB 7!)
UBBDev - We put the class into UBB.classic!

Top
#112087 - 11/11/02 06:03 PM Re: [6.3 ] Compact Headers
EftheM Offline
Junior Member

Registered: 11/03/02
Posts: 30
darn,

Am I right when I say that on a board fully installed with many hacks..

this will cost you days to install??

Top
#112088 - 11/13/02 02:06 PM Re: [6.3 ] Compact Headers
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25461
Loc: Texas
install what? memberlist or compact headers?
_________________________
- Allen wavey
- What Drives You?

Top
#112089 - 11/13/02 05:45 PM Re: [6.3 ] Compact Headers
LK Offline
Admin / Code Breaker

Registered: 03/24/01
Posts: 7396
Can anyone please remind me why I posted the memberlist link here? confused wink I guess I posted it in the wrong IE session?

EftheM, if you're talking about Compact Headers, yes, it's prety difficult... But it's much easier if you use Beyond Compare to compare between Compact Headers and your noncgi/Templates directories.
_________________________

My Hacks Page (will be back with UBB 7!)
UBBDev - We put the class into UBB.classic!

Top
#112090 - 11/14/02 12:55 AM Re: [6.3 ] Compact Headers
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25461
Loc: Texas
you definitely had me confused laugh
_________________________
- Allen wavey
- What Drives You?

Top
#112091 - 11/21/02 09:57 AM Re: [6.3 ] Compact Headers
dover Offline
Junior Member

Registered: 05/03/02
Posts: 20
Will this be updated for v6.3.1.1?

Top
#112092 - 11/22/02 12:59 AM Re: [6.3 ] Compact Headers
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25461
Loc: Texas
Most likely we'll be updating for 6.4, as we're too close to put the time into 6.3.1.1 and it be feasible. smile If you have to have it for 6.3.1.1, I am sure there are some developers who will do it for not too much smile
_________________________
- Allen wavey
- What Drives You?

Top
#112093 - 11/22/02 01:14 AM Re: [6.3 ] Compact Headers
dover Offline
Junior Member

Registered: 05/03/02
Posts: 20
When to issue 6.4? rockband rockband

Top
Page 3 of 4 < 1 2 3 4 >


Moderator:  Gizmo, tackaberry 
Who's Online
1 registered (Micky), 25 Guests and 9 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Latest Posts
ubb.social
by Placebo
01/08/09 04:25 AM
Displaying a gif for a paying member
by Iann128
01/06/09 07:04 AM
Restore The "New Topic Is Highlighted" Feature
by hikelite
01/02/09 07:41 PM
Web Hosting
by Pilgrim
01/02/09 04:13 PM
Finishing touches on a UBB migration
by AllenAyres
01/02/09 03:04 PM
Sidebar options?
by Pilgrim
12/26/08 03:40 PM
Legacy Style
by sirdude
12/24/08 07:18 PM
New Mods
Displaying a gif for a paying member
by Iann128
12/29/08 11:44 AM
Legacy Style
by Micky
12/21/08 01:36 PM
ubb.social
by
08/03/06 10:38 AM
Newest Members
bluedthunder, blaqskreen, RAICHU, sebak, BaronDriver
13371 Registered Users
Top Posters
AllenAyres 25461
JoshPet 11330
Rick 8372
LK 7396
Lord Dexter 6503
Greg Hard 5533
Charles Capps 5438

 

 

 
fusionbb message board php hacks