Ezilon.com - Target Your Audience, be Seen in Your Region

Copyright Date Updating

You are viewing this site as a guest. Join our community to get your questions answered and share knowledge. Active members may advertise and ask for a website critique.

He has: 43 posts

Joined: Apr 2004

Hi,
I have been following what appears to be standard convention with copyright notices at the bottom of pages on all my sites stating "Copyright bla bla 200x-2005 All Rights Reserved bla bla"
Now that I have 30+ sites out there, its becoming time consuming to update all these dates each year, 2006, 2007 etc....

Is this copyright notice actually worth anything ? What do others do ?

Thanks,
Dude.

teammatt3's picture
Moderator

He has: 1,902 posts

Joined: Sep 2003

Usually you can find a javascript that will update it for you.

I think this will do the trick

<p>&copy; &lt;script language="JavaScript"&gt;
<!--
    today=new Date();
    year0=today.getFullYear();
    document.write(year0);
//-->
&lt;/script&gt;.  All Rights Reserved.</p>

'

He has: 579 posts

Joined: Jul 2005

teammatt3 wrote: Usually you can find a javascript that will update it for you.

I think this will do the trick

<p>&copy; &lt;script language="JavaScript"&gt;
<!--
    today=new Date();
    year0=today.getFullYear();
    document.write(year0);
//-->
&lt;/script&gt;.  All Rights Reserved.</p>

'

You could also do that using PHP, but that would probably be hard if all of your pages were currently .html files. Wink

-Kurtis
~View (and vote for) my art at BrickFish!

timjpriebe's picture
DeveloperModeratorSponsor

He has: 2,666 posts

Joined: Dec 2004

mscreashuns wrote: You could also do that using PHP, but that would probably be hard if all of your pages were currently .html files. Wink

Not too hard if you tweaked your htaccess file to handle all html file extensions as php code. Laughing out loud

He has: 43 posts

Joined: Apr 2004

Ahhh,
Thanks for that, I'll give it a try.

Dude.

02bunced's picture

He has: 412 posts

Joined: May 2005

I don't think you need the latest date to be covered by copyright, just the date of creation.

IANAL

DoDifferent Web Design - Professional Website Solutions

demonhale's picture

He has: 3,301 posts

Joined: May 2005

Yup date of creation it is...

Busy's picture
Modrater

He has: 6,157 posts

Joined: May 2001

Copyright is from creation onwards. You can not just change the copyright date on a site you built but haven't touched for 10 years.
Besides, the copyright is for 50 years after creation anyways

<?bhb if(broken){ echo("It wasn't me Smiling "); } ?>
Learn HTML the ez way - EzHTML.net

Some people are like slinkies, they dont really serve any purpose but they still bring a smile to your face when you push them down the stairs ...

He has: 579 posts

Joined: Jul 2005

True, but I figured this "dude" wasn't that experienced. Sticking out tongue

popinsiteads's picture

He has: 51 posts

Joined: Sep 2005

or maybe use an inline frame if you don't want php - make it go all to the same url and if you ever need to change things but the date, you can. Javascript is the users year on his computer isn't it.

Busy's picture
Modrater

He has: 6,157 posts

Joined: May 2001

ideally the footer should be an extra file, one change and whole site is changed.
You only change it when you add new content.

<?bhb if(broken){ echo("It wasn't me Smiling "); } ?>
Learn HTML the ez way - EzHTML.net

Some people are like slinkies, they dont really serve any purpose but they still bring a smile to your face when you push them down the stairs ...

He has: 43 posts

Joined: Apr 2004

Thanks for everyones responses, this is great.
Id rather not fiddle with the htacces file and converting all pages to .php would be a pain so php probably is not practical.
I tend to use Dreamweaver templates so making a change to a 50 page site is one file, thats not the issue.

From reading the responses, I guess my next question is, if copyright is covered from date of creation onwards for 50 years why do so many sites quote creation date to current year ??? Confused

Thanks,

popinsiteads's picture

He has: 51 posts

Joined: Sep 2005

Dudester wrote:
...From reading the responses, I guess my next question is, if copyright is covered from date of creation onwards for 50 years why do so many sites quote creation date to current year ??? Confused

Thanks,

You can have
© Whoever, 2005
© Whoever, 2004-2005

If you use the first one it just means it has a copyright in action in this current year.
The second one is when the copyright started and the current year.

You can't really have
© Whoever, 2004-2054
because the copyright may change.

They have: 11 posts

Joined: Jan 2004

Hardly a pain to type in one line of code. It's just
AddType  application/x-httpd-php html'
And now you can put php code in files named .html saving you form renaming all your files.

Copyright rules varry form place to place. I notice your tag line says Australia. The advice given above is right for the USA but not for the UK. In the UK, copyright is automatic. There is no requirement to stamp the words copyright on everything. It is assumed to be copyright unless marked otherwise. You should check the rules for your locallity to ensure you are covered properly.

He has: 43 posts

Joined: Apr 2004

Rincewind,
I didnt say it would be a pain to type in one line of code, that comment was regarding renaming every page to .php, I have some sites with over 50 pages and over 30 sites to update.

OK, so where does the line you recommended go ?

Thanks,
Dude.

He has: 579 posts

Joined: Jul 2005

That line would go in your .htaccess file, which should be in the root folder of your website. If you can't find it, you will need to create it. Wink

-Kurtis
~View (and vote for) my art at BrickFish!

Busy's picture
Modrater

He has: 6,157 posts

Joined: May 2001

Best do a search on these forums for copyright, it has been covered at length before.

Automatic 50 year is world wide for text and image

<?bhb if(broken){ echo("It wasn't me Smiling "); } ?>
Learn HTML the ez way - EzHTML.net

Some people are like slinkies, they dont really serve any purpose but they still bring a smile to your face when you push them down the stairs ...