The idea behind this is that you typically already have
images on your web page; so you replace the SRC of one
of the images with a URL that routes through this logger,
but still returns the image. So the browser doesn't know
the difference, but the server does.
So what you should actually do is just use one of the images
you already have on your site. You say that the image you
want to use is at /home/username/www/cgi-bin/showpic/spacer.gif? That's not
right. "showpic" is the name of the CGI script, so it
can't also be a directory on the filesystem.
Let's say that you currently have an image like this on
your web page:
<img src="/images/foo.gif">
And the actual filesystem location of this image is:
/home/bar/www/images/foo.gif
You would replace the IMG tag with this:
<img src="/cgi-bin/showpic/images/foo.gif">
And, in showpic (the CGI script), you'd set the $home
variable to:
my $home = "/home/bar/www";
Make sense?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.