WSGI is a python standard Web Server Gateway Interface
-1
votes
0answers
11 views
Python : how to create a module and import a function into the mod-wsgi script?
mod-wsgi script:
from aaa import *
a = ccc(1,2)
def application(environ, start_response):
start_response('200 OK', [('content-type', 'text/html')])
yield a
module itself:
name: aaa.py
...
-9
votes
0answers
15 views
Python : ImportError: cannot import name ccc || apache error_log included
module:
name: aaa.py
path: /0/aaa.py
source:
def ccc(a,b):
return a+b
script :
name: 00.wsgi
path: /0/00.wsgi
source:
from aaa import ccc
a= '1'
def application(environ, ...
-3
votes
5answers
32 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 ...
-4
votes
1answer
35 views
Python : script includes “import module” file via terminal execution, but not via web via mod-wsgi [duplicate]
name: 00.wsgi
path: /0/00.wsgi
First let's try via terminal with the following code:
try:
import aaa
except ImportError:
a = 'importing modulename failed'
print a
it is not printing ...
-7
votes
1answer
56 views
Python : import modulename works only if it is idented with “try” on top?
module:
name: aaa
path: /0/aaa
source code:
def aaa(a,b):
return a+b
script:
name : 00.wsgi
path : /0/00.wsgi
source code:
import aaa
execute via terminal:
python 00.wsgi
no ...
-6
votes
0answers
26 views
Python - mod-wsgi : Correct method to include a file ? [closed]
In php i would simply create a php script named
0.php
and then include this into my php scripts via
require_once('0.php');
this would help me run the same commands over and over again
such as ...
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 ...
1
vote
1answer
43 views
django wsgi “No module named models” error
I'am having this issue with django + wsgi, and I can't understand why. When I go to my local website running with apache2 + wsgi, I have this error :
ImportError at /
No module named models
But ...
-1
votes
1answer
30 views
How uWSGI invokes a WSGI application [closed]
PEP 3333 states:
The server or gateway invokes the application callable once for each
request it receives from an HTTP client, that is directed at the
application.
Then there follows an ...
1
vote
1answer
30 views
Apache child processes not releasing memory after allocating a huge chunk
I am running Django 1.4 with WSGI on CentOS. Apache is prefork but NOT configured in Daemon mode. 8 child processes are started. I executed a database query that made the Resident Memory size of one ...
0
votes
2answers
38 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
37 views
How to enable SSL for the built-in WSGI server from Python?
I run a WSGI application from within my Python file, using the make_server command.
(I don't know if this is a good practice or whether it is more common to setup Apache or nginx for this purpose.)
...
0
votes
1answer
19 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 ...
0
votes
2answers
15 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
39 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 = ...
1
vote
1answer
13 views
How to count the threads and process of WSGI?
I have deployed a wsgi application on the apache and I have configured it like this:
WSGIDaemonProcess wsgi-pcapi user= group= processes=2 threads=15
After I restart the apache I am counting the ...
0
votes
1answer
39 views
Django: Manage.py runserver no error, but mod_wsgi report cannot import name connection
When testing my django website by python manage.py runserver 0.0.0.0:8000, there is no error.
But if I deploy it to production with apache and mod_wsgi, it reports error cannot import name ...
0
votes
1answer
26 views
Import errors with WSGI, Flask, and Apache
Totally new to python-based web apps, so I'm somewhat lost. Here is my apache error:
[Wed May 08 22:41:47 2013] [error] [client 64.56.91.45] mod_wsgi (pid=23704): Target WSGI script ...
-3
votes
3answers
37 views
What is the difference between web server component and web server? - No framework [closed]
now bear with me please. I'll explain from the beginning but very briefly.
8 months ago, I worked in a web project with python, that used no framework (from scratch). I limited myself to implement ...
4
votes
2answers
51 views
Running heroku gunicorn within subfolder?
I'm new to heroku and gunicorn so I'm not sure how this works. But I've done some searching and I think I'm close to deploying my Django app (1.5.1). So I know I need a Procfile which has
web: ...
2
votes
1answer
50 views
Python Flask Application Manager
I am coming from a Java/Tomcat background and was wondering if there is anything out there which could be similar to the Tomcat manager application?
I'm imagining a webapp that I can use to easily ...
0
votes
2answers
33 views
secure django file permissions
I am looking for a baseline set of file permissions to keep a django installation as secure as possible.
I cannot seem to find any obvious reference either on the Django site or Google.
Any links ...
0
votes
1answer
17 views
Running binary WSGI app
I have a working wsgi app developed in python. I know that pyinstaller will compile and get me a binary of this application. I have a nginx and uwsgi running. can i use this binary instead of the ...
0
votes
1answer
45 views
How can I get the current URL or the URL clicked on and save it as a string in python?
How can I get the current URL and save it as a string in python?
I have some code that uses encodedURL = urllib.quote_plus to change the URL in a for loop going through a list. I cannot save ...
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
34 views
django (or wsgi) chain stdout from subprocess
I am writing a webservice in Django to handle image/video streams, but it's mostly done in an external program. For instance:
client requests for /1.jpg?size=300x200
python code parse 300x200 in ...
0
votes
1answer
30 views
django app engine multiple domains, multiple settings files
I'm new to Google App Engine and am trying to port my Django application to use that. I haven't been able to find too much on this and don't think multitenancy is what I'm looking for (seems to be for ...
0
votes
1answer
38 views
Nginx: 413 entity too large - file does not reach the application
I'm using Nginx and uwsgi with wsgi app. When I try to upload the image sometimes the application does not get the image and there used to be error 413 entity too large.
I fixed this issue by adding ...
0
votes
1answer
33 views
uwsgi and nginx simple setup without virtual env
are there any steps to setup uwsgi with nginx with a simple wsgi python script. Most of the places I see only django and flask and other frameworks are being setup. Also I need steps to serve static ...
-1
votes
2answers
50 views
How to seperate data with a line break [closed]
I am trying to figure out how to separate data i'm showing on a HTML page which is coming from a tuple in python.
Python:
callComments = (interface.list_comments(db,10))
content = { ...
0
votes
1answer
56 views
How do I create a hyperlink from data in a string?
I have a tuple which is being converted to a string and output in HTML. The string contains a link to a page (eg. http://www.google.com) but the link doesn't actually hyperlink to google.com because ...
0
votes
1answer
31 views
apache server not using proper virtualenv with WSGI setting
I am facing a problem related to django wsgi script. I have been using two virtualenv for my two application and I have deployed these two application on my local server with different port. Apache ...
0
votes
1answer
30 views
how to write a wsgi wrapper for php applications?
Is it possible to write a wsgi (werkzeug) application, that returns the output of a php application?
In detail, i have the following problem:
We have a couple of old, legacy php applications and need ...
1
vote
1answer
111 views
Django: 500 internal server error with Passenger on Dreamhost
I have a little issue here. I'm building a project in django on dreamhost (shared hosting). Everything is ok when i'm in debug mode and when i use the built-in server, but when i'm trying to switch to ...
0
votes
0answers
16 views
Context inheritance with Jinja2 templates
I am having troubles to inherit context in Jinja2.
I have server code -wsgi app:
class MyApp(object):
def __init__(self, config):
template_path = os.path.join(os.path.dirname(__file__), ...
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
2answers
91 views
Flask on uWSGI on Ubuntu 12.10 - version mismatch?
I'm trying to follow this guide to serve my Flask app with uWSGI: http://flask.pocoo.org/docs/deploying/uwsgi/
However, when I try to run uwsgi, I get the following problem:
...
0
votes
1answer
46 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
0answers
48 views
What would be the best way to make sure only one worker launches the apscheduler event in a pyramid web app running multiple workers
We have a web app made with pyramid and served through gunicorn+nginx. It works with 8 worker threads/processes
We needed to jobs, we have chosen apscheduler. here is how we launch it
from ...
0
votes
2answers
86 views
Methods to protect a bottle.py webapplication against XSS and CSRF?
I'm writing a webapplication using bottle.py, Beaker for sessions and a custom AAA written module, as many I'm worried about security and the best method to protect against some targeted attack like ...
-1
votes
1answer
40 views
Python: python process isolation level when “monkey patching” classes
I have a (beginner) question.
I intend to run more than one webapp (pyramid web apps) and I have a common library (let's call that base app) that may be used by both webapps and includes pyramid ...
0
votes
1answer
32 views
Django / WSGI blank page
I am trying to get Django to work together with Apache using WSGI. The problem is that it simply returns an empty page (200 OK or 203 not modified).
I can't find any error upon restarting or when ...
0
votes
1answer
63 views
“Requested resource not available” error upon accessing new apache-bloodhound installation
I have installed apache-bloodhound on an Ubuntu-12.04 server using the the instructions at this location:
https://issues.apache.org/bloodhound/wiki/BloodhoundInstall
I can access the site using the ...
1
vote
2answers
57 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 ...
-1
votes
1answer
108 views
You don't have permission to access / on this server [closed]
I am getting the above error while trying to acces my Django application in Apache .
I have done good home work before posting this question here .
But still getting this error .
Here is my ...
0
votes
0answers
47 views
Perfomance of serializing python list
I have some trouble with perfomance in Python. In my wsgi application i'm serialize to json list of class. This is my code:
class Foo (object):
def __init__(self, id,object_id, ...
0
votes
1answer
33 views
AWS ElasticBean WSGIPath
I have a problem with the WSGIPath on AWS ElasticBean with Python. When I set :
option_settings:
- namespace: aws:elasticbeanstalk:container:python
option_name: WSGIPath
value: wsgi.py
I ...
0
votes
2answers
133 views
Gunicorn fails when using WSGI
I want Gunicorn to talk with TileStache via WSGI. But when I run this command...
gunicorn "TileStache:WSGITileServer('/var/osm/bright/project/OSMBright4/tilestache.cfg')"
...I get these errors:
...
0
votes
1answer
45 views
Django project doesnt have wsgi.py and yet running
I found a django project on github (don't know which version they used initially but I ran it using 1.4 and its working)..
Its directory was present in this way:
project/
deploy/ ...
0
votes
1answer
27 views
globally handle unicode decode errors from webob
I have a large web system written on top of WSGI that uses webob to access form data (no framework is involved). Randomly we'll get unhandled exceptions of UnicodeDecodeError from browsers (or bots) ...

