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
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
49 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
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 ...
-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" ...
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

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 ...
2
votes
2answers
98 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
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
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 ...
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
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
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
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() ...
0
votes
1answer
58 views

Making Pyramid application without session timeout

I am making a pyramid webapp running in apache webserver using mod_wsgi. Is there anyway I could make user session never timed out? (The idea is so that once user logged in, the system will never ...
0
votes
2answers
127 views

Vagrant, WSGI, virtualenv and TypeError: 'module' object is not callable [closed]

I've provisioned a vagrant box for an app I'm building, but I'm running into trouble when trying to get Apache to serve it. It's using a virtualenv for it's packages - right now that's just Flask ...
0
votes
1answer
67 views

New rows created in Django admin aren't displayed on site

This problem is noticed when doing the Django tutorial. Successfully make a poll with a choice on the admin site that is then displayed on the admin site: Go to mysite.com/polls and the poll is ...
1
vote
0answers
55 views

django plesk missconfiguration

I configured a Django App under Plesk editing the file /var/www/vhosts/mysite/conf/vhost.conf WSGIScriptAlias / /var/www/vhosts/com.mysite.www/project/wsgi.py WSGIDaemonProcess mysite ...
0
votes
0answers
22 views

WSGI Authorization : is there an alternative to WSGIAuthGroupScript?

I want to give access to a particular resource served by Apache to a user iff the user is allowed. The access control is done per resource — not by a group — by Django. The problem is I only found ...
1
vote
0answers
162 views

Can't access mod_wsgi hosted python (bottle.py) app

Here is my Problem: I wrote a bottle.py application and runs it on my pc with the internal bottle.py webserver. Now i want to upload my application to my server and would like to run it there with ...
0
votes
1answer
75 views

Loading wsgi_mod with Apache on Windows 7

I have seen this question asked a number of times, and I have tried the solutions described - unfortunately the solutions have not worked for me, so I'd like to ask my own question. I hope it's not ...
0
votes
0answers
72 views

pyramid mod_wsgi/apache setup help needed

The application is not loading when visiting localhost/modwsgi_app as expected. Firstly thanks kindly for any help, I am a bit of a newb, this is my first python web app. This is what I have so far: ...
0
votes
1answer
34 views

ImportError on newaly production django + apache + mod_wsgi

I'm in the middle of deploying my django project. got the wsgi working and now I got importError. error: Exception Type: ImportError Exception Value: No module named forms this is the import: ...
0
votes
1answer
201 views

XAMPP + mod_wsgi + python Windows 7

i'm trying to install django on a local test server [i know python+django has one] and i've already set up xampp hosting: Apache 2.4, Python 2.7, mod_wsgi (compiled from source: ...
0
votes
2answers
87 views

Getting mod_wsgi(reviewboard) and mod_php(wordpress) working on same servername but different path

I'm trying to get my wordpress site as well as my reviewboard site working under the same domain name. Ex: www.mysite.com (this is where i host my wordpress site) www.mysite.com/reviewboard (this is ...
0
votes
3answers
104 views

Flask application logfile is not written under Apache deployment

I deployed a Flask app on my Apache 2.2 instance on Windows, everything running fine. Then I decided to implement logging in my app and read the Flask docs: I decided to go with a file logger, which ...
0
votes
0answers
33 views

error deploying flask app on apache server

THis is the first time I am trying to deploy an app.. So my app is located at /usr/local/projects/re_attempt/app/wrangler.wsgi And inisde /etc/apache2/sites-available/ I have new file called "app" ...
0
votes
0answers
209 views

Django with Apache - mod_wsgi configuration?

Just following this tutorial: http://www.venkysblog.com/setup-django-on-windows-with-apache-and-mysql (with help from https://docs.djangoproject.com/en/1.4/howto/deployment/wsgi/modwsgi/) I'm all ...
0
votes
1answer
103 views

Host multiple web sites on port 80

So I may be missing a bit of a fundamental understanding on what's going on here, but I cannot get this to work. I have two django websites, and I want to be able to host them both on the same box, ...
0
votes
0answers
133 views

Target WSGI script not found or unable to stat 404 mesage when i access

I am stuck at this issue. And I have Googled the issue but couldn't fine the solution. Directory permissions of sample are 755. Here are my configurations WSGIScriptAlias /blc ...
0
votes
1answer
122 views

Django internal server error with no error messages

Another django server error problem. I had my site up and running for a while until I restarted my server today. Now I get an internal server error. There is nothing related in the apache log. ...
4
votes
2answers
1k views

Django Apache mod_wsgi 500

I have a Django application deployed on CentOS. Here is what my httpd.conf file looks like: WSGISocketPrefix /var/run/wsgi <VirtualHost *:80> WSGIDaemonProcess safe ...
4
votes
1answer
61 views

Can I serve one django app from 2 different apache vhosts?

I've got a django app that's currently available at dev.mydomain.com, and I'm about to move it to clientsdomain.com. I'm on Ubuntu so I'll run a2dissite dev.mydomain.com and then a2ensite ...
1
vote
1answer
729 views

mod-wsgi & apache & pyramid (pylonsproject)

i have a problem with running pyramid site under apache+mod-wsgi. the problem is that i can't tell apache which python interpretor is the right one for the site it serve. i have several virtual ...
7
votes
2answers
2k views

Tuning mod_wsgi in daemon mode

I'm running wsgi application on apache mod_wsgi in daemon mode. I have these lines in the configuration WSGIDaemonProcess app processes=2 threads=3 display-name=%{GROUP} WSGIProcessGroup app How ...

1 2 3 4 5 11