Page 1 of 1

New site built on 4images basis.

Posted: Thu Jan 19, 2006 9:32 am
by ndillon
Here is my new website that I have up and running.

http://www.lightscribecovers.com

I was wondering if anyone here has any good tutorials on manipulating 4images. This is my first attempt at php which reminds me alot of c++.

Thanks for your help. And what do you think of the site?

Posted: Thu Jan 19, 2006 10:55 am
by foobar
1. I think the authors of "4images" would probably be more capable to answer your question.
2. The "copyright whatever" alert is annoying and shows up twice. Furthermore, it doesn't protect your source-code from being viewed*.
3. Your site uses 3rd-party software, uses "LightScribe Logo and Technology" which is "© of Hewlett-Packard Development Company, L.P.",
as well as a template you didn't make yourself. And, lacking a community, there is absolutely no reason why I would want to go there.
You need to offer something original to get noticed.
4. This is the wrong forum. Should be in General Discussion (AFAIK, correct me if I'm wrong).

*) Proof:

Your nifty little JS:

Code: Select all

<!-- Copyright www.lightscribecovers.com - Used for demonstration -->
<script language="JavaScript" type="text/javascript">
<!--
  function opendetailwindow() { 
    window.open('','detailwindow','toolbar=no,scrollbars=yes,resizable=no,width=680,height=480');
  }
  
  function right(e) {
    if (navigator.appName == 'Netscape' && (e.which == 2 || e.which == 3)) {
      alert('© Copyright by LightScribeCovers.com');
      return false;
    }
    else if (navigator.appName == 'Microsoft Internet Explorer' && (event.button==2 || event.button == 3)) {
      alert('© Copyright by LightScribeCovers.com');
      return false;
    }
    return true;
  }
  document.onmousedown=right;
  if (document.layers) window.captureEvents(Event.MOUSEDOWN);
  window.onmousedown=right;
// -->
</script>