Current location: Hot Scripts Forums » Advertising Forums » Website Reviews » Need TagBoard Beta Testers

Need TagBoard Beta Testers

Reply
  #1 (permalink)  
Old 08-24-03, 10:19 PM
jewellgr jewellgr is offline
Wannabe Coder
 
Join Date: Aug 2003
Location: Michigan USA
Posts: 111
Thanks: 0
Thanked 0 Times in 0 Posts
Need TagBoard Beta Testers

I am making a new tagboard that will be nonrestrictive and completely free. It will have many features similar to tag-baord.com but the admin will be ran from your own server.

If interested, visit: http://www.arecaweb.com/demochat/demo.html

Follow the instructions and leave a message. Thanks.

Gregg

Last edited by jewellgr; 09-06-03 at 03:21 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #2 (permalink)  
Old 08-25-03, 04:31 AM
Henry's Avatar
Henry Henry is offline
Wannabe Coder
 
Join Date: Jul 2003
Location: Brisbane, Australia
Posts: 218
Thanks: 0
Thanked 0 Times in 0 Posts
wow its a nice tag board as long as it can be easilly modified in css it should be awesome
__________________
henerz
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #3 (permalink)  
Old 08-25-03, 07:17 AM
crookyboy crookyboy is offline
CJ-Design.com Webmaster
 
Join Date: Aug 2003
Location: Derby, UK
Posts: 58
Thanks: 0
Thanked 0 Times in 0 Posts
Hey,

pretty good, i like the way it resets when you click submit. Check out mine:

http://www.cj-design.com/downloads/tagboard/demo

__________________
James Crooke<br>
<a title="UK Website Design and Programming at affordable prices" href="http://www.cj-design.com">CJ Website Design
Freelance Programmers Register Here!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #4 (permalink)  
Old 09-06-03, 03:20 PM
lutser_kingfish lutser_kingfish is offline
New Member
 
Join Date: Sep 2003
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
I think it looks pretty good. However when viewed in Mozilla 1.0 a constant refresh of the page is overly apparent.

For me personally if I were to use a tag board i would elect for one that just updated on user refresh only.

You could consider extending this a little further and making it a chat script. :P
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #5 (permalink)  
Old 09-07-03, 01:40 AM
jewellgr jewellgr is offline
Wannabe Coder
 
Join Date: Aug 2003
Location: Michigan USA
Posts: 111
Thanks: 0
Thanked 0 Times in 0 Posts
You can change the refresh rate to more seconds. Currently at 1 second but can be changed to 10,20, 30 whatever you want.

The admin is the best part of this tagboard, it makes changes in realtime.
Such changes are refresh rate, font colors, bg colors, font weight, bad word filters...

It is pretty good and will be offered free.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #6 (permalink)  
Old 03-12-04, 02:35 AM
currupt247 currupt247 is offline
Newbie Coder
 
Join Date: Mar 2004
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
auto refresh

hey guys you seem to know what ur talking about. i was wondering if you knew what the auto refresh coding was for the tagboard. im trying to help a friend because his other friend needs to have the tagboard refresh right when someone hits submit to keep them chatting in real time thanks for your time
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #7 (permalink)  
Old 03-17-04, 12:54 PM
jewellgr jewellgr is offline
Wannabe Coder
 
Join Date: Aug 2003
Location: Michigan USA
Posts: 111
Thanks: 0
Thanked 0 Times in 0 Posts
This is the code I used for refreshing. This was a hidden iframe running in the background. It pointed to the parent window and refreshed the <div> or <td> tag that had id=chat. (This produces no clicking sound)

Code:
<html><head>
<script>
function LoadData ()
{
  parent.document.getElementById('chat').innerHTML = "<?echo $message;?>";
}
</script>
<script language="JavaScript">

var sURL = unescape(window.location.pathname);

function doLoad()
{
  setTimeout( "refresh()", 1000 ); // 1 second
}

function refresh()
{
  window.location.href = sURL;
}
</script>
<script language="JavaScript1.1">
function refresh()
{
	window.location.replace( sURL );
}
</script>
<script language="JavaScript1.2">
function refresh()
{
	window.location.reload( false );
}
</script>
</head>
<body onload="LoadData;doLoad()">
</body>
</html>
Hope this helps.
__________________
ArecaWeb Team
Gregg Kenneth Jewell
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #8 (permalink)  
Old 03-22-04, 12:06 PM
MrStocks MrStocks is offline
Newbie Coder
 
Join Date: Mar 2004
Posts: 27
Thanks: 0
Thanked 0 Times in 0 Posts
i cant see it here, ends up on a dead page
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #9 (permalink)  
Old 03-24-04, 02:41 AM
currupt247 currupt247 is offline
Newbie Coder
 
Join Date: Mar 2004
Posts: 6
Thanks: 0
Thanked 0 Times in 0 Posts
hey its a shoutbox does that code stay consitant if that instead of a tagboard? thanks for your help also thank u jewellgr for posting my message in here for further assistance.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
  #10 (permalink)  
Old 04-12-04, 03:48 PM
RynO RynO is offline
Newbie Coder
 
Join Date: Sep 2003
Posts: 35
Thanks: 0
Thanked 0 Times in 0 Posts
Quote:
Originally Posted by crookyboy
Hey,

pretty good, i like the way it resets when you click submit. Check out mine:

http://www.cj-design.com/downloads/tagboard/demo

Seems that I can insert javascript into the url tags on your tag board. Might want to fix that.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Share on FacebookShare on Stumble UponShare on Twitter
Reply With Quote
Reply

Bookmarks


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Trillian beta 2 MadDog The Lounge 13 08-20-03 10:49 PM
in need of beta testers darkcarnival Job Offers & Assistance 8 07-07-03 08:20 AM
Search Tagboard TheGreatOne HotScripts Site Bug Reports 2 06-12-03 10:03 AM


All times are GMT -5. The time now is 11:46 AM.
vBulletin® Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.