Beefy Boxes and Bandwidth Generously Provided by pair Networks
go ahead... be a heretic
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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?

In reply to RE: RE: Poor Man's Web Logger by btrott
in thread Poor Man's Web Logger by comatose

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (11)
As of 2024-04-23 08:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found