Page Index Toggle Pages: 1 Send TopicPrint
Normal Topic work in progress (Read 2409 times)
AccordR33
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 10
Joined: Feb 23rd, 2004
work in progress
Feb 24th, 2004 at 2:42am
Print Post  
here is my first Yabb board. at first I just wanted a simple board for me and my friends to post on. but now i want to get more people on to chat away.

http://www.tehrabbithole.com

its a work in progress but im learning more and more everyday.

what kind of marketing techniques are you guys using for your boards to gain more users?
  
Back to top
 
IP Logged
 
MrMage
Full Member
***
Offline


I love YaBB Mods!!!

Posts: 242
Joined: Dec 25th, 2003
Re: work in progress
Reply #1 - Feb 24th, 2004 at 8:02am
Print Post  
Nice... How did you do the sidebar?
  

Currently developing:
Portal page for YaBB 1.3.1 - Version 1.00!!!, download here
Disable Thread Counter of Members in single boards for YaBB SP 1.3.1, download here
YaBB Chat Boards for SP 1.3.1 - 85% complete, download Beta here
Back to top
ICQ  
IP Logged
 
Dam Yankee
God Member
*****
Offline



Posts: 1538
Location: Maryville
Joined: Jun 13th, 2003
Gender: Female
Re: work in progress
Reply #2 - Feb 24th, 2004 at 3:42pm
Print Post  
Looks good, but I've got a horizontal scroll at 1024x768.  You might want to adjust the width of one of your iFrames slightly.   Wink

MrMage wrote on Feb 24th, 2004 at 8:02am:
Nice... How did you do the sidebar?

Whoson mod and iFrames.  Nice idea.   Cheesy
  
Back to top
WWW  
IP Logged
 
AK108
God Member
*****
Offline



Posts: 942
Joined: Oct 1st, 2003
Gender: Male
Re: work in progress
Reply #3 - Feb 24th, 2004 at 11:04pm
Print Post  
Meh... Should've put the iframes in the YaBB template, not the other way around (so you can copy the url and actually go to a topic).
  

For my mods, check out my public notes.

You might be interested in my projects, or my forum, the Flying Kirby Pub.
Back to top
WWWAIM  
IP Logged
 
AccordR33
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 10
Joined: Feb 23rd, 2004
Re: work in progress
Reply #4 - Feb 25th, 2004 at 3:31am
Print Post  
AK108 wrote on Feb 24th, 2004 at 11:04pm:
Meh... Should've put the iframes in the YaBB template, not the other way around (so you can copy the url and actually go to a topic).


thats what i was gonna do but I wanted to use the whoson mod so i had to use a .shtml file so that was out of the question.

mrMage..like i said i used the whoson mod combined with an Iframe thanks for the feedback
  
Back to top
 
IP Logged
 
AccordR33
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 10
Joined: Feb 23rd, 2004
Re: work in progress
Reply #5 - Feb 25th, 2004 at 3:32am
Print Post  
Quote:
Looks good, but I've got a horizontal scroll at 1024x768.  You might want to adjust the width of one of your iFrames slightly.   Wink

Whoson mod and iFrames.  Nice idea.   Cheesy


thanks for the suggestion. I sometimes forget that my 17" widescreen laptop (sorry i just like saying that hehe) has resolution twice the size of some computers so i dont notice the scroll bars...i will fix it though, thanks!
  
Back to top
 
IP Logged
 
bordeglobal
God Member
*****
Offline


Only the Best Posters
Survive!

Posts: 1837
Location: Trinidad, West Indies
Joined: Sep 30th, 2002
Gender: Male
Re: work in progress
Reply #6 - Mar 12th, 2004 at 3:56am
Print Post  
Nice touch... catching entrance
  

Back to top
WWW  
IP Logged
 
Flicker
Senior Member
****
Offline


Six-Strings

Posts: 291
Location: Stockport
Joined: Oct 20th, 2003
Gender: Male
Re: work in progress
Reply #7 - Mar 12th, 2004 at 9:40pm
Print Post  
AccordR33 wrote on Feb 25th, 2004 at 3:31am:
thats what i was gonna do but I wanted to use the whoson mod so i had to use a .shtml file so that was out of the question.


All the whoson mod boils down to is a Perl file written to spit out text. Edit whoson.pl to edit out the WhoHeader request, and to replace 'print qq~bla bla~;' commands with '$yywhoson .= qq~bla bla~;'
Then in your Subs.pl add in the template sub:
require "Whoson.pl";
To spit insert the whoson details, just add <yabb whoson> to your HTML template.

That's more or less it, you may have to do some tweaking, I'd probably actually copy the subroutines used in your Whoson.pl and paste them into your template sub; again changinf 'print' to '$yywhoson .= '- that way user details don't have to be called twice.

E.g.:

(In Subs.pl)
<search for>
sub template {
</search for>

<add after>
#Here just copy and past the subs you use in Whoson.pl, replacing print with $yywhoson as highlighted

sub WhoMembers {

     my( $memcount, $latestmember ) = &MembershipGet;
     &LoadUser($latestmember);
     $thelatestmember = qq~<A erprofile{$latestmember}->[1]</b></a>~;

$yywhoson = qq~
<FONT SIZE="$textfontsize">$txt{'201'}:<BR>
-- $thelatestmember<BR>
   <BR>   
   $whotxt{'12'}:<BR>
    -- <A HREF="$scripturl?action=mlall" title="View all users">$txt{'303'}</A><BR>
     -- <A HREF="$scripturl?action=mlalfa" title="View members by display name">$txt{'304'}</A><BR>
    -- <A HREF="$scripturl?action=mlpost" title="Click to view members by postcount">View by number of posts</A><BR>
</FONT>
~;

}
</add after>

Then you add in your HTML template; <yabb whoson>

You can do this as many times as you like- so your Whomembers sub could be called $yywhomembers meaning you use <yabb whomembers> etc. and so on.

This means all your yabb is called by one file- I quite like your current set-up because only a small amount of data is loaded each click therefore less bandwidth shorter wait each time etc.
  

www.smile-jesuslovesyou.org/forum
Message boarding- where everybody is always right


"For I am not ashamed of the gospel of Christ..."
Romans 1:16
Back to top
WWW  
IP Logged
 
BillBSET
God Member
*****
Offline


Ignorance can be fixed,
Stupid is Forever

Posts: 698
Location: Monkey Island
Joined: Sep 19th, 2003
Gender: Male
Re: work in progress
Reply #8 - Mar 13th, 2004 at 7:28am
Print Post  
I just use 800x600,,,, SO even with my new Bigger Monitor it's
just to see better, not more....
40something and I use a glasses  to see microcircuits... now...
so when I tried to view your threads the scroll bar was at the bottom
and the part I was on,,, in the middle...

bill
  


After you eliminate all of the possibilities,
whatever is left, no matter how seemingly impossible,
must be the truth.


Back to top
WWW  
IP Logged
 
AccordR33
New Member
*
Offline


I love YaBB 1G - SP1.2!

Posts: 10
Joined: Feb 23rd, 2004
Re: work in progress
Reply #9 - Mar 13th, 2004 at 2:21pm
Print Post  
yah, the board is the worst with 800x600. I tested it on most of the popular resolutions and it seems to be usable with all of them. Its better with 1024x768 and up though.
  
Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
Send TopicPrint