Some news about our webiste.

Public topics, anyone can read/write.
User avatar
brad
Posts: 458
Joined: 19 Nov 2004, 23:37
Location: Arlington, TX

Post by brad »

Flow wrote:I tought that 24h was more use in general. I ask few around me (family and friends), and seem to like better 24h.
except for americans, you know us, we always gotta be different than everybody else :roll: doesnt matter to me, i can read it both ways

ill whip up a proto-type myspace page, but not make it public, see what everyone thinks. main reason i thought about that was 1: several pro-motorcyle racers have pages and seem to be quite popular, 2: while it may or may not(probably not) help with getting new members, some peeps might follow what were doing because they are on myspace all day long and its easy for them 3: all my friends on myspace can see it and understand what im doing when the doors closed and they hear the scream of an f1 engine :twisted:
User avatar
Flow
Spam kingpin
Posts: 5908
Joined: 22 Jun 2004, 04:51
Favorite team: Minardi
Are you a spam bot?: No
Location: Montreal, Quebec

Post by Flow »

I know that Jacques Villeneuve have a MySpace page.
NAR.F1 driver
User avatar
dutch power
NAR administrator
Posts: 1511
Joined: 02 Mar 2003, 14:39
Contact:

Post by dutch power »

Did i already mention that the new site is pretty damn cool :shock: :lol: :D
Regards,
Mark Aalberts

#99 Greg Moore april 22, 1975—October 31, 1999 (you will never be forgoten http://www.youtube.com/watch?v=kqxOecWC ... re=related)
User avatar
Flow
Spam kingpin
Posts: 5908
Joined: 22 Jun 2004, 04:51
Favorite team: Minardi
Are you a spam bot?: No
Location: Montreal, Quebec

Post by Flow »

Thanks from all, and its not finished, will be just little better and better with the time.
NAR.F1 driver
User avatar
Flow
Spam kingpin
Posts: 5908
Joined: 22 Jun 2004, 04:51
Favorite team: Minardi
Are you a spam bot?: No
Location: Montreal, Quebec

Post by Flow »

New update on the website

FLASHCHAT
Its a live chating system, just like a kind of MSN. Some seem to ask for that. Honestly, seems that MSN do a great job, but since it was asked, and i find one free, i configure it on the website. I tested it with Xzwins and Bilbo, works fine.

Please, this is still a public, be aware of wath you say on it, it may not be confidential. This is a free version, so im not supporting the server and brandwith of FlashChat.

Only registered driver will be able to see the button, its on home page, just beside the JOIN button.

Enjoy!
NAR.F1 driver
User avatar
Flow
Spam kingpin
Posts: 5908
Joined: 22 Jun 2004, 04:51
Favorite team: Minardi
Are you a spam bot?: No
Location: Montreal, Quebec

Post by Flow »

About Flash Chat, it would be nice from a driver that is exiting the chat room to just click at the X at left corner, this will let us know that you quit the room. Unless your name is still listed for 15minutes, then it show us that your no more in the room. No big deal, but would be nice from user.
NAR.F1 driver
User avatar
Flow
Spam kingpin
Posts: 5908
Joined: 22 Jun 2004, 04:51
Favorite team: Minardi
Are you a spam bot?: No
Location: Montreal, Quebec

Post by Flow »

Ok, majority of you know that Blast Chat is available on the website, for those who want to use the website to live chat instead of openining MSN or other. But if you went on it recently, you will notice some add (publicity) at the right corner of window. NAR is not suported by NO sponsor at all and dont receive money from none of them. This is an option that i cant control. Blast Chat is free of use. They share for free the brandwith and the server that host those chat forum. But to have it for free, you have to be victim of sponsor that is paying blastchat to let NAR to use it for free.

Hope all understand the situation. NAR is getting no money for that.
NAR.F1 driver
User avatar
Flow
Spam kingpin
Posts: 5908
Joined: 22 Jun 2004, 04:51
Favorite team: Minardi
Are you a spam bot?: No
Location: Montreal, Quebec

Post by Flow »

Some little news/updates from the website.

- From a mistake, Rules section need some little adjustment.
- On home page, the name of mod is to change from 1.06b to 1.06a.
- The download page need to be review to a simple way of knowing what you need, and were to get it.
- As soon as i will have time, i will update some headers also
- I will try to find a chronos countdown for our next races.
- Stats have been all reseted to 'zero' for '07 season by Bilbo, and '06 season is available through 'archive' section.

:idea: If you have any suggestion of poll to run on the website for our league, just send me a PM (private message) for some idea or suggestion, i will soon get out of idea :wink:

Thanks.
NAR.F1 driver
User avatar
RC
Posts: 40
Joined: 28 Feb 2006, 12:17
Contact:

Post by RC »

Hi,
- I will try to find a chronos countdown for our next races.
Digged my library :shock:

Code: Select all

<?php

//CONFIGURE THE SCRIPT BELOW

// The number of the month 1-12 that your event occurs
$month=1;

//The number of the day 1-31 that your event occurs
$day=1;


//The 4 diget number for the year that your event occurs
$year=2007;

//How would you like the countdown to display?
// 1 = days
 //2 = hours
 //3 = minutes
 //4 = seconds
// default is to displa in days
$display = 1;


//DO NOT EDIT BELOW THIS LINE ----------------------
// ------------------------------------------------

$target = mktime(0, 0, 0, $month, $day, $year);
$today = time ();
$difference =($target-$today);
if ($display == 1) { print ((int) ($difference/86400)) . " days"; }
if ($display == 2) { print ((int) ($difference/3600)) . " hours"; }
if ($display == 3) { print ((int) ($difference/60)) . " minutes"; }
if ($display == 4) { print ((int) ($difference)) . " seconds"; }

?>
<hr>
<?php
// countdown function
// parameters: (year, month, day, hour, minute)
countdown(2010,1,1,0,0);

//--------------------------
// author: Louai Munajim
// website: www.elouai.com
//
// Note:
// Unix timestamp limitations 
// Date range is from 
// the year 1970 to 2038
//--------------------------
function countdown($year, $month, $day, $hour, $minute)
{
  // make a unix timestamp for the given date
  $the_countdown_date = mktime($hour, $minute, 0, $month, $day, $year, -1);

  // get current unix timestamp
  $today = time();

  $difference = $the_countdown_date - $today;
  if ($difference < 0) $difference = 0;

  $days_left = floor($difference/60/60/24);
  $hours_left = floor(($difference - $days_left*60*60*24)/60/60);
  $minutes_left = floor(($difference - $days_left*60*60*24 - $hours_left*60*60)/60);
  
  // OUTPUT
  //echo "Today's date ".date("F j, Y, g:i a")."<br/>";
  //echo "Countdown date ".date("F j, Y, g:i a",$the_countdown_date)."<br/>";
  echo $days_left." days ".$hours_left." hours ".$minutes_left." minutes";
}
?>
Output: http://87.118.100.29/countdown.php
RC

Relay Client Developer
User avatar
Flow
Spam kingpin
Posts: 5908
Joined: 22 Jun 2004, 04:51
Favorite team: Minardi
Are you a spam bot?: No
Location: Montreal, Quebec

Post by Flow »

I was hoping to find a module for CMS, but if i dont find any, i will use your line of prog, thanks alot.
NAR.F1 driver
User avatar
Flow
Spam kingpin
Posts: 5908
Joined: 22 Jun 2004, 04:51
Favorite team: Minardi
Are you a spam bot?: No
Location: Montreal, Quebec

Post by Flow »

An interesting poll is running on the website. Note that untill an admin call an official poll, all poll for now are just for the fun.

I change the cache time of poll from 24h to 30 days (thanks Bilbo). This will avoid someone to awnser day after day.
NAR.F1 driver
User avatar
SteveB
NAR administrator
Posts: 2891
Joined: 26 Jun 2005, 16:19
Favorite team: Ferrari
Location: Toronto, Canada
Contact:

Post by SteveB »

WOW Flow that banner at the top of the page is amazing.

GET READY FOR MELBOURNE :)

Nice touch Flow :)
FORZA FERRARI !!

2011 NA DIV ADMIN

Image
User avatar
Coffeemachine
Posts: 775
Joined: 21 Oct 2006, 21:02
Location: Luleå
Contact:

Post by Coffeemachine »

Nice work flow and bilbo.

Might i add the CET clock is at this moment one hour late, prolly something to do with summer times and stuff
[12:19:47]Dropkick: somebody tried to mug me once
[12:19:59]Dropkick: but i was so drunk i did not understand
User avatar
Flow
Spam kingpin
Posts: 5908
Joined: 22 Jun 2004, 04:51
Favorite team: Minardi
Are you a spam bot?: No
Location: Montreal, Quebec

Post by Flow »

kaffemaskin wrote:Nice work flow and bilbo.

Might i add the CET clock is at this moment one hour late, prolly something to do with summer times and stuff
Thanks guys.

For the time, it is automaticaly changing (i tought, but seem not). Can you tell me on what time zone i can refer? CET have many possibility. I will post you what are my choice, and you may be able to choose one with me. Il be back on this one.
NAR.F1 driver
User avatar
Flow
Spam kingpin
Posts: 5908
Joined: 22 Jun 2004, 04:51
Favorite team: Minardi
Are you a spam bot?: No
Location: Montreal, Quebec

Post by Flow »

Im using the European DST.
I can put it to UnitedStatesDST, are you guys folowing the USA Daylight Saving Time?
NAR.F1 driver
User avatar
Coffeemachine
Posts: 775
Joined: 21 Oct 2006, 21:02
Location: Luleå
Contact:

Post by Coffeemachine »

nope we did not switch as you guys did a couple of days ago (i belive), following something from germany or sweden should be the best
[12:19:47]Dropkick: somebody tried to mug me once
[12:19:59]Dropkick: but i was so drunk i did not understand
User avatar
Flow
Spam kingpin
Posts: 5908
Joined: 22 Jun 2004, 04:51
Favorite team: Minardi
Are you a spam bot?: No
Location: Montreal, Quebec

Post by Flow »

When do you change the time?
NAR.F1 driver
User avatar
Coffeemachine
Posts: 775
Joined: 21 Oct 2006, 21:02
Location: Luleå
Contact:

Post by Coffeemachine »

EU change
march 25th
[12:19:47]Dropkick: somebody tried to mug me once
[12:19:59]Dropkick: but i was so drunk i did not understand
User avatar
Flow
Spam kingpin
Posts: 5908
Joined: 22 Jun 2004, 04:51
Favorite team: Minardi
Are you a spam bot?: No
Location: Montreal, Quebec

Post by Flow »

Yeah, i put it on no DST, but i will have to change it manualy on March 25, please let me know if i forget. Thanks alot.

MESSAGE: WEBSITE TEMPORARY DOWN.
The website will display a white page for the next few hours. An update of server for 3x bigger one, and double of brandwith. It seem that only NAR site is no more loading on the net. The whole site is Ok, but just dont display after the upgrade. We will try to fix this tomorow with the provider. This bug should of not hapend, im shure it is minor, but still is causing us little problem.

Thank your for your understanding.
NAR.F1 driver
User avatar
Flow
Spam kingpin
Posts: 5908
Joined: 22 Jun 2004, 04:51
Favorite team: Minardi
Are you a spam bot?: No
Location: Montreal, Quebec

Post by Flow »

Ok, we have 30 website, and the only one that didnt suport the switch of new server is our NAR site. It is temporary switch back on the old server, and we will try to find what is the problem. It was not what we tought it was, and we cant put the fingher on the problem.

At least, it is online now.
NAR.F1 driver
Post Reply