in reply to link errors

This is because the internet browser could not automatically determine the format of your full-size image from the image extension and the file header.

The easiest way to fix this would be changing the fullsized images to jpg or png (etc) format.

Otherwise you have to set up the MIME type of the images in the content header to tell the browser what type of image it is. If the image is not in a standard format that internet explorer understands, then you need to supply custom plug-in's (can set up via tools/folder-options/file-type).

Replies are listed 'Best First'.
Re: Re: link errors
by eoin (Monk) on Sep 21, 2003 at 11:18 UTC
    I've solved that problem thatks to your help but as I was expanding the script perl threw up these crazy errors:
    syntax error at albums.cgi line 102, near "else"
    syntax error at albums.cgi line 110, near "elsif"
    albums.cgi had compilation errors (#1)
        (F) The final summary message when a perl -c fails.
    
    Uncaught exception from user code:
            syntax error at albums.cgi line 102, near "else"
    syntax error at albums.cgi line 110, near "elsif"
    albums.cgi had compilation errors.
    
    Now I've gone to the lines in question and searched the surrounding lines but cannot find a problem. I you seemed to be able to spot things that I cannot. Any help is greatly appriciated.
    Thanks
    All the Best, Eoin...

    If everything seems to be going well, you obviously don't know what the hell is going on.

      Are you programming on Windows or Unix? If on windows, I recommend the following free programmer's editor: Context. "http://www.fixedsys.com/context/".

      If on Unix, then Emacs or Nedit, which are brilliant at sytax highlighting.

      My recommendation is to use a syntax highlighting editor, then you can spot compilation / typo mistakes at a glance.

      It would be helpful if you could post your new code so the monks can have a look at what is happening at the lines of error.

      Cheers, Roger.
        Cool. I'm programing on a windows machine. I'll have to check this (http://www.fixedsys.com/context/) out .

        Go raibh míle maith agat.
        Thanks.

        All the Best, Eoin...

        If everything seems to be going well, you obviously don't know what the hell is going on.