Tagged Questions
0
votes
1answer
97 views
How to handle url path in web.py?
I'm new to web.py, and use a lot of hardcoded url in my code for href in tag a,like
/loginor/?type=xxx.
The problem is,
when I set my application running under a certain path, not the root of a URL, ...
0
votes
1answer
178 views
Inheritance in web.py?
I am currently developing wep.py application. This is my web application which is binded with web.py and wsgi.
root/main.py
import web
import sys
import imp
import os
...
1
vote
0answers
177 views
No ErrorDocument 500 redirect when using with mod_rewrite
I'm trying to make my own ErrorDocument 500 page while using web.py framework.
The problem is that ErrorDocument directive is not working. I have builtin error message instead of my custom one. And ...
0
votes
0answers
63 views
Locking Pyplot when called from a wsgi application
I wrote a simple web app using the Web.py framework and Pyplot, but HTTP 500 errors are thrown when concurrent requests are made. I've come across several sources online that indicate that Matplotlib ...
1
vote
0answers
177 views
web.py sessions note remembered when running the app under mod_wsgi
For some reason it seems like web.py isn't capable of remembering my sessions. It works fine with the built-in webserver, but when I use my application with WSGI, sessions aren't remembered.
I ...
1
vote
2answers
202 views
How can I bind web.py to localhost?
How can I bind web.py to the loopback interface?
app = web.application(urls, globals())
When I define it this way and start it, it listens on all interfaces:
mit@mit1 $ python ./serve.py
...
0
votes
1answer
323 views
How can I get back web.py's stdout log when running under Apache/mod_wsgi?
I developed a web.py application and tested it a lot under stand-alone mode (running myapp.py from the command line) and its stdout output was much useful for debugging. Now I'm running it under ...
0
votes
1answer
234 views
Can web.py be set to use the server's 404 page?
I have a server (nginx) which is routing some urls to static directories, and others to a web.py wsgi app. The server's config also defines a 404 page, which is displayed when somebody tries to visit ...
0
votes
1answer
589 views
Python Tornado Request Handler Mapping
I'm just getting started with Tornado and I was wondering how i can define a mapping so that all requests like below are are handled by a single handler.
/products/list
/products/find/123
...
0
votes
1answer
236 views
Why call clearup code in generator function?
guys. I'm reading web.py source code to understand how WSGI frameworks work.
When reading application.py module, I wonder why call self._cleanup in cleanup which is a generator function.
I searched ...
8
votes
1answer
2k views
Web.py on dotcloud with wsgi
I'm trying to deploy my web.py app on dotcloud, but can't figure out how to do it.
I went through this tutorial fine: http://docs.dotcloud.com/static/tutorials/firststeps/
And then I looked at ...
0
votes
3answers
817 views
Decent error output in browser for wsgi/web.py
I'm using web.py 0.3 / apache2 / mod_wsgi and the cgitb module doesn't seem to work out of the box (I still just get 'internal server error' from web.py and the usual output goes to apache's ...
5
votes
3answers
4k views
Deploying a Web.py application with WSGI, several servers
I've created a web.py application, and now that it is ready to be deployed, I want to run in not on web.py's built-in webserver. I want to be able to run it on different webservers, Apache or IIS, ...