Great! I'm glad you finally got it figured out.

As a follow up, here's something you might consider as you continue to develop your site: most of the modules used in my tutorial are "pure perl" - the only exception (I think) is DBI, but that usually comes preinstalled on most systems. For pure-perl stuff, I much prefer to have my own library. It's really nothing more than just another directory with perl files inside. So, I have a local development machine with cpan setup to install modules to a local ~/libs directory. Then, when I'm ready to "go live", I copy all my web files to my production host, including my ~/libs directory of perl modules (just tar/zip it all up). That way I know I have the exact same version of each module on both the development machine and the production machine. You have no way of knowing when your host might decide to update stuff on you without warning, and this can cause problems. It also makes it easier on you if you need to move the site to a new host, or install the web app on multiple hosts, etc.

Good luck!


In reply to Re^3: Authentication Script Path Problems by scorpio17
in thread Authentication Script Path Problems by Anonymous Monk

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



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.