Ask a Question related to PERL Miscellaneous, Design and Development.

  1. #1

    Default perl and/und apache

    [Sun Aug 31 20:42:48 2003] [error] [client 127.0.0.1] attempt to invoke
    directory as script: c:/foxserv/www/cgi-bin

    This is standing in error.log Apache.
    Das steht in error.log Apache.

    And I get:
    Und ich bekomme:

    Forbidden.
    You don't have permission to access /cgi-bin/ on this server.

    I have the right settings i thought.
    Ich habe die richtige settings dachte ich.

    What should i change or do?
    Was soll ich machen oder andern?

    Harrie Geerts

    Harrie Geerts


    Harrie Geerts Guest

  2. Similar Questions and Discussions

    1. perl + mysql + apache on windows
      I am running mySQL 3.23.57 on windows 2000. I configured it to run on named pipes ( enable-named-pipe ), and the server starts nicely. I have a perl...
    2. Apache htaccess and perl
      Hi all I have a apache running with mod_perl, it is set up with access-control by a .htaccess-file with more than 1 user in it. I need to get...
    3. Problems with Apache 2.0, mod_perl2 and perl
      I'm using FC4 Linux, and I'm having some problems with Apache 2.0. perl 5.8.8 httpd 2.0.54-10.3 mod_perl 2.0.1-1.fc4 1. If I add the load...
    4. perl SOAP::Lite and Apache
      Good suggestion.... thank you. I will analyze the possibility of implementing session control on my system bye Giorgio In data Sun, 26 Oct...
    5. Help configuring Perl with Apache 2
      This is more of an Apache question than a Perl question, but I'll go for it here. I installed RedHat 9 (including Apache 2 and Perl) from CD. ...
  3. #2

    Default Re: perl and/und apache

    On Sun, 31 Aug 2003 20:49:07 +0200
    "Harrie Geerts" <harriegeertsDITWEGHALEN@home.nl> wrote:
    > [Sun Aug 31 20:42:48 2003] [error] [client 127.0.0.1] attempt to
    > invoke directory as script: c:/foxserv/www/cgi-bin
    >
    > This is standing in error.log Apache.
    > Das steht in error.log Apache.
    >
    > And I get:
    > Und ich bekomme:
    >
    > Forbidden.
    > You don't have permission to access /cgi-bin/ on this server.
    >
    > I have the right settings i thought.
    > Ich habe die richtige settings dachte ich.
    >
    > What should i change or do?
    > Was soll ich machen oder andern?
    Thie is _not_ a Perl question and is addressed in the Apache
    documentation. There are also newsgroups that deal specifically with
    Apache and it's configuration. Sorry :(

    Jim

    --
    and now, a quote from fortune ....
    ================================================
    Welcome thy neighbor into thy fallout
    shelter. He'll come in handy if you run
    out of food. -- Dean McLaughlin.

    ================================================
    and a real quote ....
    Linus Torvalids: "They are somking crack ...."
    ([url]http://www.eweek.com/article2/0,3959,1227150,00.asp[/url])
    James Willmore Guest

  4. #3

    Default Re: perl and/und apache

    Harrie Geerts wrote:

    (snipped)
    > [Sun Aug 31 20:42:48 2003] [error] [client 127.0.0.1] attempt to invoke
    > directory as script: c:/foxserv/www/cgi-bin
    > Forbidden.
    > You don't have permission to access /cgi-bin/ on this server.
    > What should i change or do?
    Research, read and learn about Apache.

    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the realname directory are treated as applications and
    # run by the server when requested rather than as documents sent to the client.
    # The same rules about trailing "/" apply to ScriptAlias directives as to
    # Alias.
    #
    ScriptAlias /cgi-bin/ "c:/apache/cgi-bin/"

    <Directory "c:/apache/cgi-bin">

    your settings

    </Directory>


    Purl Gurl
    Purl Gurl Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139