Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #52592
| Path | csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!feeds.phibee-telecom.net!newsfeed.xs4all.nl!newsfeed1.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <jarabal@gmail.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.035 |
| X-Spam-Evidence | '*H*': 0.93; '*S*': 0.00; 'here?': 0.09; 'indexes': 0.09; 'python': 0.11; 'apache': 0.15; '"require': 0.16; '.py': 0.16; 'escribi\xf3:': 0.16; 'index.html': 0.16; 'thanx': 0.16; 'trying': 0.19; 'header:User-Agent:1': 0.23; 'options': 0.25; 'script': 0.25; 'header:In-Reply-To:1': 0.27; 'but': 0.35; 'received:google.com': 0.35; 'version': 0.36; 'wrong': 0.37; 'message-id:@gmail.com': 0.38; 'to:addr:python-list': 0.38; 'help,': 0.39; 'to:addr:python.org': 0.39; 'subject:this': 0.83; 'desperately': 0.84; 'subject:Options': 0.84; 'subject::': 0.85 |
| DKIM-Signature | v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject:references :in-reply-to:content-type:content-transfer-encoding; bh=YWXOvqWgXNRXztWzXZSIB2SGiDoGIcr00HQL9H+8W8E=; b=VcW2HF7t+8+G6RbsEZHmffMAl+miMQsfFp57RZ5gEezrXKHS1yZkI81xCo3JFRJ5H+ /Lk2WhmA18vdYOVgrPcwLMlKiSsK18iBwDLuUcT+5VyXQ2z2xBnSIXHIcTS7Jaw2W1wp tSS7Aju1nJQgBMQwBdbGM0Rwoo7QYyCzHtPaC9pLAf+NXf+bdp3z/rK4FBvm8KBU2mZX Aop+ocxCpIKKZ0Xt2klGJJq++iNAlMIr1MTaoha0qPIRxBbjpNGzfr3xGwtZXli6hWCU XJmPATX0UOv/y2L2oNZF0WgTF0nUlRkIBbz78pmkFJ4W6DrHu1Me1HSFG/Su7K038xMR uyWw== |
| X-Received | by 10.180.37.16 with SMTP id u16mr2343044wij.46.1376667719985; Fri, 16 Aug 2013 08:41:59 -0700 (PDT) |
| Date | Fri, 16 Aug 2013 17:41:56 +0200 |
| From | Xavi <jarabal@gmail.com> |
| User-Agent | Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 |
| MIME-Version | 1.0 |
| To | python-list@python.org |
| Subject | Re: Options ExecCGI is off in this directory: |
| References | <a20ce270-b9be-4bc0-a2b3-17b72b9013bb@googlegroups.com> |
| In-Reply-To | <a20ce270-b9be-4bc0-a2b3-17b72b9013bb@googlegroups.com> |
| Content-Type | text/plain; charset=ISO-8859-1; format=flowed |
| Content-Transfer-Encoding | 8bit |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.15 |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <http://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.0.1376667728.23369.python-list@python.org> (permalink) |
| Lines | 30 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1376667728 news.xs4all.nl 15934 [2001:888:2000:d::a6]:56079 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:52592 |
Show key headers only | View raw
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 >
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
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
csiph-web