Tagged Questions
2
votes
1answer
41 views
Response from WSGI application gets downloaded in browser instead of getting displayed
I'm trying to host a WSGI application (written in webpy, hosted on Apache) on Ubuntu server. Whenever I run my application, the JSON response gets downloaded instead of getting displayed in the ...
2
votes
2answers
215 views
Detect prematurely closed connection in web.py
Is there a way in Web.py to detect and handle connection being closed by user while the request is processing?
I tried setting unloadhook handler, but it doesn't get called in this case. It's only ...
1
vote
2answers
94 views
How to link a Python project to a WSGI file?
I want to link my Python project to a wsgi file. I am using mod_wsgi.
I would like my Python project to be located in /var/www/myProject/start.py.
I've configured Apache as follows:
<VirtualHost ...
1
vote
0answers
201 views
url handling with web.py and extjs
I'm porting a program from turbogears to web.py/mod_wsgi with pretty good success. I've setup the URL handling similar to turbogears, but I'm running into a minor annoyance in how extjs 2.0 handles ...
1
vote
1answer
161 views
Python web application: How to keep state
I wrote a WSGI compatible web application using web.py that loads a few dozen MB data into memory during startup.
It works quite well with the web.py integrated server.
However, using Apache 2 + ...
1
vote
1answer
534 views
Web.py URL Mapping not accepting '/'
So every web.py tutorial I've seen includes this line:
urls = (
'/', 'index',
)
And then, later on, the index class is defined with a GET function and so on. My problem is, this doesn't work. ...
1
vote
0answers
263 views
how to send file via http with python
I use Apache with mod_wsgi and webpy, and when i send a file on http, a lot packets are lost.
This is my code :
web.header('Content-Type','video/x-flv')
web.header('Content-length',sizeFile)
f = ...
1
vote
1answer
679 views
Web.py mod_wsgi autoreload
I am running the latest version of web.py with mod_wsgi and have this in my code:
application = web.application(urls, globals(), autoreload=True).wsgifunc()
It is autoreloading most of the time but ...
1
vote
1answer
194 views
IF statement causing internal server error with webpy
I have this class:
class View(object):
def main_page(self, extra_placeholders = None):
file = '/media/Shared/sites/www/subdomains/pypular/static/layout.tmpl'
placeholders = { ...
0
votes
0answers
93 views
Web.py session issue in Apache (using DBAuth Module)
Ive created a web.py app using JPScalettis DBAuth module (http://jpscaletti.com/webpy_auth/) and it was working just fine till I moved it to mod_wsgi.
I can login fine, but the @auth.protected() ...
0
votes
1answer
455 views
MySQL server has gone away
I've recently moved from my local web.py/apache setup to a shared host
and I'm trying to match my home configuration. One issue that is
popping up is an OperationalError "MySQL server has gone away".
...
0
votes
1answer
269 views
Using web.webopenid with web.py to authenticate users
I have a web.py app I'm running through mod_wsgi locally (http://localhost/...). I've gotten to the point of adding authentication to my app and wanted to use web.py's builtin module. I started with ...
0
votes
1answer
440 views
Problem with web.py + mod_wsgi file upload
I'm working on a web.py app for uploading files and im having real problems with my deployment. Basically I want to give the user a 'percentage uploaded' but this seems to be messing up severely when ...
0
votes
2answers
277 views
Keeping concurrency in web.py applications on mod_wsgi
Sorry if this makes no sense. Please comment if clarification is needed.
I'm writing a small file upload app in web.py which I am deploying using mod_wsgi + apache. I have been having a problem with ...