in reply to 405 error ( was: The Use of Use)

Your problem probably is not with DBI or your module. You may have issues there, but it's the 405 Error - Method Not Allowed that we're worried about here. Here's the definition of a 405:

The method specified in the Request Line is not allowed for the resource identified by the request. Please ensure that you have the proper MIME type set up for the resource you are requesting.

I suspect that this is not a code issue. We'll need more info:

My guess is your Web server, for whatever reason, is not recognizing the script as executable.

Cheers,
Ovid

Join the Perlmonks Setiathome Group or just click on the the link and check out our stats.

  • Comment on (Ovid) Re: 405 error ( was: The Use of Use)

Replies are listed 'Best First'.
Its a 404 error
by Red Neckerson (Novice) on May 16, 2001 at 22:16 UTC
    Not 405. Sorry. Red------
      If you're getting this error from the web server, then the URL you're using to try to access your script is wrong, your script is in the wrong place, or is otherwise misconfigured. Check the error log of your server for more clues.

      404 is a 'not found' error. This means that the error isn't in your script at all (although your script may indeed have errors). Your script isn't even being run.

      stephen