php forum
php mysql forum
php mysql smarty
 
Page 3 of 3 < 1 2 3
Topic Options
#111747 - 05/13/02 03:26 PM Re: Compact Headers [6.2.1]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25461
Loc: Texas
</font><blockquote><font size="1" face="Verdana, Helvetica, sans-serif">quote:</font><hr /><font size="2" face="Verdana, Helvetica, sans-serif">Originally posted by stardaug:
Will we ever see a UBBDev template addon in an official Infopop release?</font><hr /></blockquote><font size="2" face="Verdana, Helvetica, sans-serif">Actually... the base public templates in the ubb are all courtesy of ubbdev:

charles (of course wink ), matt jacob, LK, and I were the ones who brought xhtml compliance to the forefront of forum software. In a year's time, most all forum software will at least take a stab at xhtml compliance as they try to catch back up to us. I can remember posts by web developers complaining about the not-so-good html output from the ubb, that's a thing of the past.

A little geeky, but a very good thing, as all templates built from now on out can rest assured that they will look as close to the same across all browsers as possible smile

As far as the future, we hope to have some more input in the not-too-distant future smile
_________________________
- Allen wavey
- What Drives You?

Top
#111748 - 06/01/02 01:51 PM Re: Compact Headers [6.2.1]
KeemDog37 Offline
Junior Member

Registered: 04/25/01
Posts: 6
</font><blockquote><font size="1" face="Verdana, Helvetica, sans-serif">quote:</font><hr /><font size="2" face="Verdana, Helvetica, sans-serif">Originally posted by Chuck:
</font><blockquote><font size="1" face="Verdana, Helvetica, sans-serif">quote:</font><hr /><font size="2" face="Verdana, Helvetica, sans-serif">Originally posted by lauren:
Can't you edit all the files by yourself. Because I installed some hacks where I edited the templates.</font><hr /></blockquote><font size="2" face="Verdana, Helvetica, sans-serif">Sure, do you need the info that needs to be added ?
</font><hr /></blockquote><font size="2" face="Verdana, Helvetica, sans-serif">I do!!

Top
#111749 - 06/01/02 06:37 PM Re: Compact Headers [6.2.1]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25461
Loc: Texas
Your best bet would be to use beyond compare for the changes... check out the review/how to in the past uzine on the front page smile
_________________________
- Allen wavey
- What Drives You?

Top
#111750 - 06/02/02 10:40 AM Re: Compact Headers [6.2.1]
KeemDog37 Offline
Junior Member

Registered: 04/25/01
Posts: 6
</font><blockquote><font size="1" face="Verdana, Helvetica, sans-serif">quote:</font><hr /><font size="2" face="Verdana, Helvetica, sans-serif">Originally posted by AllenAyres:
Your best bet would be to use beyond compare for the changes... check out the review/how to in the past uzine on the front page smile </font><hr /></blockquote><font size="2" face="Verdana, Helvetica, sans-serif">I tried, and fail with that hehe, I just screwed it and over wrote my old files now I have to rehack my template files frown but I still can't find the new post option in the top bar whats wrong?

Top
#111751 - 09/02/02 05:58 PM Re: Compact Headers [6.2.1]
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
#111752 - 09/02/02 06:05 PM Re: Compact Headers [6.2.1]
Charles1 Offline
Member

Registered: 03/14/02
Posts: 35
Anybody else have problems with headers being called twice and screwing up the layout on transition pages, like the Thanks for Posting, and such, as called from public_common.pl ?

Top
#111753 - 09/02/02 06:16 PM Re: Compact Headers [6.2.1]
Charles1 Offline
Member

Registered: 03/14/02
Posts: 35
Anybody else have problems on transition pages, with the main buttons line and so forth loading twice, and messing up the entire table structure ?

Top
#111754 - 09/02/02 06:21 PM Re: Compact Headers [6.2.1]
Charles1 Offline
Member

Registered: 03/14/02
Posts: 35
deleted

Top
#111755 - 10/14/02 08:48 PM Re: Compact Headers [6.2.1]
Felix 10 Offline
Enthusiast

Registered: 10/10/02
Posts: 391
Loc: Toronto
on 6.3.1.1

I took the public_xxx files from the hack (http://www.ubbdev.com/db/uploads/compactheaders63.zip) and put them in the the UBB/Templates and I also put them into Templates/JCT Templates folder.

I get this error when I try to access my forum.
Quote:
quote:
Software error:
Undefined subroutine &main::MainButtonOptions called at ultimatebb.cgi line 146.
What do I do wrong?

Should I replace both Templates and JCT Templates files to start with?
Does anyone have a step by step HowTo for dummies?

Thank you.

Top
#111756 - 10/15/02 12:42 AM Re: Compact Headers [6.2.1]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25461
Loc: Texas
I am not sure if these work with 6.3.1.1, sounds like you are where the mainbuttons were pulled from one file and put into public_common.pl They'll really need to have a full going over before I'd use them on a production site.
_________________________
- Allen wavey
- What Drives You?

Top
#111757 - 10/15/02 08:04 PM Re: Compact Headers [6.2.1]
Felix 10 Offline
Enthusiast

Registered: 10/10/02
Posts: 391
Loc: Toronto
Allen,

it obviously works flawless here on a 6.3.1.1!
the living demo is right up above!

was it you installing it in here? if it works in here should work anywhere else, shouldnt it?

thank you,
felix

Top
#111758 - 10/15/02 10:52 PM Re: Compact Headers [6.2.1]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25461
Loc: Texas
We're using something quite a bit different, tho they appear similar smile
_________________________
- Allen wavey
- What Drives You?

Top
#111759 - 10/16/02 11:19 AM Re: Compact Headers [6.2.1]
Felix 10 Offline
Enthusiast

Registered: 10/10/02
Posts: 391
Loc: Toronto
I see. I thought is the same thing once you made a reference to the looks of Compact headers to this site.
Is strange how people wont help around...I saw so many 6.3.1.1 compact headers around and nobody would say a word.
Same for other hacks. I have been trying to find PM Inbox, nobody would post an active link for download even though so many people around uses it and have it. I guess help is provided in fix-things bases but not for the real downloads.
Is this normal? Excuse my ignorance, I am just a newbie, I though all of us being administrators on our end would help the other friends in the same branch.

Thank you

Top
#111760 - 10/16/02 12:16 PM Re: Compact Headers [6.2.1]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25461
Loc: Texas
It's a matter of time smile If you are familiar with Beyond Compare and want to update this, we'll be eternally grateful smile

www.scootersoftware.com - we have a tutorial in our ezine under articles smile
_________________________
- Allen wavey
- What Drives You?

Top
#111761 - 10/17/02 11:55 AM Re: Compact Headers [6.2.1]
Felix 10 Offline
Enthusiast

Registered: 10/10/02
Posts: 391
Loc: Toronto
No Allen I am not. Can you brief me in a few words?
I would also take the advange of talking to you and ask you a simple stupid question.

I did a lot of reading around but couldnt find any reference to, perhaps ony because its to obvious? smile

Question was: all hacks come in two versions- for JC Templates and no JC Templates. I know there is a folder JC Templates in the of UBB/Templates directory but what exactly are these JC Templates and how can I tell if I use them or not. I am running under 6.3.1.1 with no hacks, as plain as it comes.

I apreciate your help, thank you.

Top
#111762 - 10/17/02 12:44 PM Re: Compact Headers [6.2.1]
AllenAyres Administrator Offline
I type Like navaho

Registered: 03/10/00
Posts: 25461
Loc: Texas
here's the article:

http://www.ubbdev.com/db/ultimatebb.php?ubb=get_topic;f=3;t=000019

JCT are part of the v6.3 ubb as alternate template sets to choose... you can choose them to give your forum a different look. Most modifications do not have support for them (you can add it yourself if you have time). I would recommend against putting a lot of time into them unless you do not plan to update to 6.4 when it's out smile
_________________________
- Allen wavey
- What Drives You?

Top
#111763 - 10/18/02 01:36 PM Re: Compact Headers [6.2.1]
Felix 10 Offline
Enthusiast

Registered: 10/10/02
Posts: 391
Loc: Toronto
I see now. I dont think I use any of those JC Templates, and yes I will upgrade therefore JC Templates are OFF for me.

I read about Beyond Compare, awsome tool!
I should buy it or I could get a copy around?

Thank you Allen.

Top
#111764 - 03/26/03 05:26 PM Re: Compact Headers [6.2.1]
bclash Offline
Junior Member

Registered: 01/05/03
Posts: 1
humm I'm getting

Error including required files:
Make sure these files exist, permissions are set properly, and paths are set correctly.

all I needed to do was upload these files over the ones in template right?

Top
Page 3 of 3 < 1 2 3


Moderator:  Gizmo, tackaberry 
Who's Online
0 registered (), 24 Guests and 6 Spiders online.
Key: Admin, Global Mod, Mod
Shout Box

Latest Posts
ubb.social
by Placebo
Today at 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