Add copyright notice to a website

15,099

Solution 1

I don't know the right way to copyright stuff. On websites, I just leave a "Copyright (c) UmbraProjekt. All rights reserved" notice in the footer.

As for copyrighting code that's copyrighted by someone else, it depends on the licence, but generally yes, you may do so, as long as the code written by someone else is free for you to be used in your own work (usually it is). Check the code's licence thoroughly though: it may ask for something in return or may put limitations on how/where you use it. In some cases you may or may not be required to:

  • honour the original author
  • make the modified code publicly available
  • not use the original code for commercial purposes, etc.

Please refer to the common licences to see what limitations are commonly applied and read the copyright notices carefully.

Solution 2

The dates are there because you created the work(s) on your site in those years. Most sites use

Copyright (start year) - (current year) You, Inc. All rights reserved.

If you use others' copyrighted work, it's up to you to satisfy their demands for acknowledgement, which could be a link, attribution, or royalty. Or they could deny you.

You might use

This work Copyright (some date) So-And-So, LLC. Used with permission.

But I'm not a lawyer, so if you're really concerned seek competent legal advice.

Solution 3

You are right to be wary of the year range copyrights! These have no legal meaning, and it's entirely possible that their use would weaken your position in the unlikely case that you went to court.

Of course Berne signatory states (most countries including the US) don't require notice, but posting notice gives you certain rights including the rebuttable presumption that the other party knew that your material was copyrighted.

As for the double-copyright question, if you add your own content to a work which is already copyrighted, both parties own the copyright to what results (called a "derivative work"). Neither party can use a derivative work without the permission of the other! So be very careful in those situations.

Share:
15,099

Related videos on Youtube

PeeHaa
Author by

PeeHaa

So long SO main o/ and thanks for all the fish Check out my personal website or check out one of the open source projects I'm currently working on: Jeeves - A headless chatbot for the PHP room GitHub Minifine - JS and CSS minifier GitHub Requestable - online webservice for testing and debugging HTTP / REST requests GitHub OpCacheGUI - a nice webinterface for PHP's OpCache GitHub EmailTester - an online emailaddress validation regex tester GitHub Commentar - an open source PHP5.4+ commenting system GitHub HexDump - an online hex viewer GitHub RichUploader - a private filehoster GitHub PHP OAuth library GitHub Proposal for the new beginners tutorial on php.net GitHub I've created a close-voting Chrome plugin available at GitHub to help clean up Stack Overflow. If you would like to see what other projects I'm working on please visit my GitHub or drop me a line in the PHP chat.

Updated on September 17, 2022

Comments

  • PeeHaa
    PeeHaa almost 2 years

    I want to add a copyright notice to a website I created.

    Something like

    (c) Me 2010. All rights reserved.

    I am aware that everything written by someone is automatically copyrighted (if I'm not mistaken, and perhaps depending on country laws).

    I see some sites use the following format for this

    (c) Me 2009-2010.

    However for me that makes no sense to add an 'end-date' to the notice. I am aware I can code to update the notice every year, but I just find it strange. Or is it just me?

    Another question is:

    I also use copyrighted code from others (they are all mentioned in the credits including links to their licenses of course) on my site. Would it still be OK to add the copyright notice to the site with only Me in it?

    So to sum it up I have 2 questions:

    • What is THE RIGHT WAYTM of adding a copyright notice on a website (or code or whatever)? If there is one.
    • Is it allowed to copyright code with other copyrighted code within it?
  • Admin
    Admin over 10 years
    In the US, everything you write is automatically has copyright. So you automatically copyright the code you write. Suing for copyright infringement is far less easy.