Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #52583 > unrolled thread

Options ExecCGI is off in this directory:

Started byhelmut_blass@web.de
First post2013-08-16 03:28 -0700
Last post2013-08-16 09:57 -0700
Articles 3 — 2 participants

Back to article view | Back to comp.lang.python


Contents

  Options ExecCGI is off in this directory: helmut_blass@web.de - 2013-08-16 03:28 -0700
    Re: Options ExecCGI is off in this directory: Xavi <jarabal@gmail.com> - 2013-08-16 17:41 +0200
      Re: Options ExecCGI is off in this directory: helmut_blass@web.de - 2013-08-16 09:57 -0700

#52583 — Options ExecCGI is off in this directory:

Fromhelmut_blass@web.de
Date2013-08-16 03:28 -0700
SubjectOptions ExecCGI is off in this directory:
Message-ID<a20ce270-b9be-4bc0-a2b3-17b72b9013bb@googlegroups.com>
Hello,
I am desperately trying to get my python script running, but I alway get a 403-Error.
apache logfile says:
Options ExecCGI is off in this directory:/home/user12/cgi-bin/showblogs.py
-
apache configuration:

<Directory "/home/user12/cgi-bin/">
AllowOverride None
AddType application/python .py
DirectoryIndex index.html index.htm index.php index.py
Options +ExecCGI Indexes FollowSymLinks MultiViews
AddHandler cgi-script .cgi .pl .py
AllowOverride All
Order allow,deny
allow from all
</Directory>

So what is missing or wrong here?
thanx for your help, Helmut

[toc] | [next] | [standalone]


#52592

FromXavi <jarabal@gmail.com>
Date2013-08-16 17:41 +0200
Message-ID<mailman.0.1376667728.23369.python-list@python.org>
In reply to#52583
You do not say the version of apache. If it's the 2.4
must change "allow from all" to "Require all granted".

HTH
-- 
Xavi

El 16/08/2013 12:28, helmut_blass@web.de escribió:
> Hello,
> I am desperately trying to get my python script running, but I alway get a 403-Error.
> apache logfile says:
> Options ExecCGI is off in this directory:/home/user12/cgi-bin/showblogs.py
> -
> apache configuration:
>
> <Directory "/home/user12/cgi-bin/">
> AllowOverride None
> AddType application/python .py
> DirectoryIndex index.html index.htm index.php index.py
> Options +ExecCGI Indexes FollowSymLinks MultiViews
> AddHandler cgi-script .cgi .pl .py
> AllowOverride All
> Order allow,deny
> allow from all
> </Directory>
>
> So what is missing or wrong here?
> thanx for your help, Helmut
>

[toc] | [prev] | [next] | [standalone]


#52595

Fromhelmut_blass@web.de
Date2013-08-16 09:57 -0700
Message-ID<05652499-f83b-435c-aaae-9667e4e85baf@googlegroups.com>
In reply to#52592
On Friday, August 16, 2013 5:41:56 PM UTC+2, Xavi wrote:
> You do not say the version of apache. If it's the 2.4
> 
> must change "allow from all" to "Require all granted".

it is apache2.2.14, so that's not the point.

[toc] | [prev] | [standalone]


Back to top | Article view | comp.lang.python


csiph-web