mod_wsgi is a python WSGI adapter module for Apache.

learn more… | top users | synonyms

0
votes
1answer
15 views

mod_wsgi loading python script from wrong Pyramid app directory

I have two apps with nearly identical code base (same functionality, just different branding) that I am trying to do virtual hosting with using mod_wsgi and apache. the virtual host settings for both ...
-3
votes
5answers
81 views

Python : in python is it true you can import specific functions from a module unlike in php?

in php it is not possible to only get specific functions from an included file. i would usually create 5 different include files and each would have like 5-6 functions in it. this way it would be ...
0
votes
1answer
23 views

Smoothly converting a static website to Django

I currently have a simple apache /var/www setup. I have a bunch of static HTML files in a directory (let's call it /var/www/mydir), which show up on http://mysite.com/mydir/filename.htm. Now, I want ...
0
votes
2answers
26 views

Multiple Django apps under same domain

I'm trying to set up two Django applications locally at subdirectories under the same domain, e.g.: http://127.0.0.1/en/ http://127.0.0.1/jp/ Here is a snippet of /etc/apache2/apache2.conf ...
0
votes
1answer
33 views

Python 2.6 : How to pass variable to mysql query if it must be placed above application(environ?

The only way to get a variable from the URL is via under the def application(environ, start_response): but the mysql code must be placed on top of this line. what are the known options ? extra ...
0
votes
1answer
24 views

django 1.5 flips between “it worked” page display and error 500

Installed Django 1.5 python2.7 mod_wsgi and python-sql on a red hat 4 web server with apache 2. The "It worked" page keep flipping between the correct display and "internal server error" "500" The ...
0
votes
2answers
21 views

mod_wsgi: Global statements execute only when the file is modified

I'm using python over mod_wsgi and I have some statements (debug messages and other things) in the global part of the script (outside the application function). Those global statements are executed ...
-1
votes
2answers
50 views

How to pass a variable to a mysql query?

This one has no errors cursor.execute ("update `1` set `2`='aaa' where `1`='5'") This one has errors. cursor.execute ("update `1` set `2`=aaa where `1`='5'") The difference is, I am trying to ...
0
votes
1answer
20 views

Use bottlepy and php in the same computer

I use ubuntu 12.04 with apache2 and mod_wsgi installed. I want to use bottlepy and php in my local computer. I know such an issue is already asked by someone else as in Apache mod_wsgi and php in the ...
0
votes
0answers
27 views

Some websites not working: The requested URL was not found on this server [closed]

A few websites that I have deployed with mod_wsgi have stopped responding overnight, and I need to find out why and how to fix it. The same server has a few PHP websites, and those are fine. Some PHP ...
0
votes
2answers
24 views

error in setting up django with mod_wsgi

I'm trying to set up django with mod_wsgi (on apache). Its giving this error: Attempt to serve directory: /home/mysite/products/templates/ httpd.conf: ServerRoot "/home/mysite" <Location ...
0
votes
1answer
21 views

Python [ mod_wsgi ] how to gather up all of the mysql results into an array?

via cli: [root@localhost 0]# python test13.wsgi (1, 'aaaaaa') (2, 'sdsdfsdfsd') (3, 'dsfsdfasdfsdf') (4, 'sdgsdgsdfsa') [root@localhost 0]# via apache : (4, 'sdgsdgsdfsa') script code: import ...
-1
votes
1answer
19 views

Python [ mod_wsgi ] works via cli but not via apache

cli: [root@localhost 0]# python test13.wsgi (1, 'aaaaaa') [root@localhost 0]# apache: Internal Server Error full script code: import MySQLdb conn = MySQLdb.connect (host = "localhost", ...
-1
votes
1answer
40 views

Python script ( mod_wsgi ) refuses to execute via apache, here is the error_log. [closed]

this is the code i run via apache. def application(environ, start_response): start_response('200 OK', [('content-type', 'text/html')]) return ['Hello world!'] import MySQLdb as mysql db = ...
-2
votes
0answers
24 views

Python : How can i combine mysql connect code with headers code? [closed]

Here is a brand new hello world example i found via google def application(environment, start_response): status = '200 OK' response_headers = [('Content-type', 'text/html')] ...
0
votes
1answer
67 views

Python ( mod_wsgi ) script shows “ Internal Server Error ” via web, while via cli it seems to work okay

this is my first time using python. i am trying to connect to a mysql database with python through apache. i created a script named 'test4.wsgi' inside httpd.conf i have DocumentRoot "/0" ...
0
votes
0answers
24 views

Python script shows “Internal Server Error” on the apache, but via cli it works fine. [duplicate]

inside httpd.conf i have: NameVirtualHost *:80 DocumentRoot "/0" DirectoryIndex 0 WSGIScriptAlias /0 /0/mysql.wsgi <Directory /0> Options FollowSymLinks AllowOverride All </Directory> ...
0
votes
1answer
19 views

Python mod_wsgi application strange behavior

I am relatively new to Python and Python web application development. Currently I am creating a hello world application in Python using mod_wsgi Here are my configurations. Apache configuration ...
2
votes
1answer
37 views

random issues with python flask application on apache

I have an apache webserver which I have setup a website using flask using mod_wsgi. I am having a couple of issues which may or may not be related. With every call to a certain page (which runs a ...
0
votes
1answer
22 views

Using iRedMail with a django site on the same server

I am trying to create a small django site and use iRedMail for e-mail. I installed iRedMail first, and ensured that it worked. I could go to both www.domain.com/iredadmin and www.domain.com/mail and ...
1
vote
1answer
43 views

Flask + mod_wsgi: client denied by server configuration

I've been trying out quite a many things to the level of high frustration when trying to get Flask run with Apache + mod_wsgi. Basically I've done the following tutorials: ...
0
votes
1answer
37 views

htaccess rewrite incorrectly appending URL with mod_wsgi config file path

I'm currently in the process of migrating domains [old_domain] -> [new_domain]. The problem arose when I came to the htaccess rules and the config file in /etc/httpd/conf/httpd.conf: httpd.conf ...
0
votes
1answer
15 views

Restrict filesystem access to wsgi daemon users

I configured 2 mod_wsgi daemons with 2 different os users and groups. Apache will properly spawn a daemon for each user: # ps -eF root 10188 1 0 4586 6204 0 09:21 ? 00:00:00 ...
0
votes
1answer
15 views

installing mod_wsgi: missing architecture file

I am installing mod_wsgi for python3.3.1 on Mac. I saw this warning and am quite stumped even after looking through the installing documentation. ./configure --with-apxs=/usr/sbin/apxs ...
0
votes
2answers
64 views

Django app works via manage.py runserver but page rendered via mod_uwsgi fails to refer to static elements

I am at the end of my rope here... and plan to start digging into Django source code to figure this out. I have a Django app that has been created in the standard fashion via start project. So far I ...
1
vote
1answer
48 views

(Another) ImportError with Flask under mod_wsgi

Sorry if this seems like a repeat of several previous questions, but none of those have helped me so far :-/ I have written a Flask app that I am attempting to deploy under mod_wsgi and apache2. I ...
2
votes
2answers
101 views

No module named deploy when trying to start pyramid app with mod_wsgi

trying to use mod_wsgi for the first time for my pyramid app, but I keep getting an ImportError: No module named deploy when I try to access the site in my /etc/apache2/sites-available/domain.com ...
0
votes
2answers
51 views

SWIG: python module crashes only when it is deployed to Apache

This issue is quite wired and it is driving me crazy. Any help is appreciated! We have some underlying C codes, which are going to be called by Python modules (Python version 2.6, Django framework, ...
0
votes
0answers
43 views

django settings importing fails with wsgi

I'm setting up django project in prodiction via mod_wsgi. And the problem is that wsgi application fails with error AttributeError: 'Settings' object has no attribute 'ROOT_URLCONF', and I can't get ...
1
vote
2answers
73 views

How to connect a webpage with python to mod_wsgi?

I am a total newbie when it comes to Python and incorporating it within html. I have spent many hours researching with no luck, so all I ask is a little help or an area where I can find the ...
0
votes
1answer
19 views

How to get the version of wsgi_mod which apache used?

I am using ubuntu 12.041 and installed apache through apt-get. I don't know what version of mod_wsgi i am using albeit I google about it. All I found is you can use apachctl to restart you apache ...
1
vote
1answer
79 views

Invalid Syntax class Template(metaclass=_TemplateMetaclass) with mod_wsgi, apache and sqlalchemy

I have a script where I import: from bottle import route, request from sqlalchemy import create_engine, MetaData from sqlalchemy.ext.declarative import declarative_base from sqlalchemy.orm import ...
0
votes
1answer
48 views

Sharing variables across multiple mod_wsgi processes/threads

Can you have an object shared across multiple WSGI threads/processes (and in a manner that would work on both *NIX and Windows)? The basic premise: (1) I have a WSGI front end that will connect to a ...
0
votes
1answer
56 views

Compiling mod_wsgi on 64 bit linux containing 32-bit python interpreter

I am facing problems when i am trying to compile mod_wsgi on my linux system(64-bit) containing 32-bit python interpreter. When i run: ./configure --with-apxs=/x/home16/eveljee/httpd-2.4.4/bin/apxs ...
0
votes
0answers
24 views

After a while Django stops being able to “open database file”

I have built a Django-base application; it runs under Apache through mod-wsgi; the database backend is SQLite3 and the Operating System is Debian 6. After apache is launched, all is well. Everything ...
0
votes
1answer
99 views

How can I use WSGI 3.4 with Python 3.3.1?

I installed Python 3.3.1 and Apache 2.4.4 from source in Ubuntu 12.10. When I built WSGI source code, it told me that: /usr/bin/ld: cannot find -lpython3.3 collect2: error: ld returned 1 exit status ...
0
votes
0answers
132 views

Django 1.5.1: ValueError: Unable to configure filter 'require_debug_false'

I've just installed on my windows system Apache 2.2.22 + Python 2.7.4 (+ PIP 1.3.1) Added mod_wsgi-3.3 apache module and edited httpd.conf as discribed here ...
0
votes
1answer
29 views

Django deployment issues with linux mod_wsgi

After deploying my django application on linux server wit apace and mod_wsgi I am getting below errors - [Wed Apr 10 05:21:52 2013] [error] [client 117.199.125.229] mod_wsgi (pid=20033): Exception ...
0
votes
1answer
86 views

Setting a Python path in Windows XAMPP using mod_wsgi

I'm trying to use Python2.6 in combination with XAMPP1.7.3. But when I try to run my Apache server, it won't start. I went to my log files in and it told me this: " httpd.exe: Syntax error on line ...
0
votes
0answers
53 views

unicode error in pyramid and mod_wsgi

I wrote this code to list the contents of a directory: import sys import os here =os.path.dirname(os.path.abspath(__file__)) sys.path = [p for p in sys.path if not p == here] + [here] os.chdir(here) ...
3
votes
2answers
91 views

“Correct” way to store postgres password in python website

I'm writing a web application in Python (on Apache server on a Linux system) that needs to connect to a Postgres database. It therefore needs a valid password for the database server. It seems rather ...
0
votes
1answer
38 views

Writing a proper Apache virtual host script, for a Django app using WSGI

I have here a virtual host script for a Django app that I'll eventually deploy into the real world. Right now it seems to be working fine; however, I'd like to know if there's anything wrong with this ...
0
votes
0answers
23 views

Apache Authentication Difficulties

I am trying to set up authentication to the url "/console" to prevent unauthorized access to the Werkzeug debugging shell. My Apache httpd.conf file reads: <Location /console> AuthType Basic ...
0
votes
2answers
100 views

Django deployment with mod_wsgi on WAMP

Context Python 2.7 64bit Django 1.3 WAMP 2.2 (Apache 2.2.22) 64bit mod_wsgi 3.4 64bit Windows 7 64bit Detail | Apache httpd.conf ... Listen 192.168.20.11:8080 ... LoadModule wsgi_module ...
0
votes
1answer
23 views

Django App is laggy when Apache2 is used vice development server

The setup is: Windows XP VM (Stuck with this for the time being - we're on an Intranet) Apache 2, mod_wsgi django 1.4 virtualenv We only have two users at most using this application simultaneously ...
1
vote
2answers
58 views

installing my first WSGI

I am installing a flask app with apache modewsgi. I have solved multiple troubles already: - environment variables - virtualenv - file permissions But now I am really stuck with application name. I ...
0
votes
1answer
75 views

How to deploy django server into production environment without a full source code?

I am still a newbie to Python and Django. I am developing a application using Django which will eventually go to the production server. It's a customized web application for the client. After doing ...
0
votes
1answer
19 views

mod_wsgi supported input characters

Currently my group has a Django server set up on Ubuntu 8, using Apache, Django, Python and mod_python. We are planning to set up a new server to replace this one. The new server will be running ...
0
votes
1answer
21 views

--no-site-packages with Apache mod_wsgi

I installed Django 1.5 to a virtual enviroment created with --no-site-packages option. Although site-packges path of virtualenv is added to ystem path in wsgi file, Apache ignores the Django1.5 and ...
0
votes
1answer
44 views

Moving configuration from mod_wsgi to script for debugging

I've inherited a Flask application run using mod_wsgi on an apache server. It came with no debugging setup, so I whipped up a quick debugging script to run the app using the werkzeug.run_simple() ...

1 2 3 4 5 21