in reply to Re^2: where art thou file?
in thread where art thou file?

Generally speaking (i.e. in every case I've encountered) /home/USERNAME/public_html corresponds to either http://www.example.com/~USERNAME/ or http://USERNAME.example.com/.

Thus you should not include "public_html" in your URL path. It is still a real directory on the filesystem so it should appear when referencing the filesystem path.

Inside the Perl script it is a filesystem path, but outside the Perl script (i.e. in any HTML your script outputs) then it is a URL path.

Replies are listed 'Best First'.
Re^4: where art thou file?
by Angharad (Pilgrim) on Feb 28, 2006 at 14:42 UTC
    Thanks again for the advice. All much appreciated