2
votes
1answer
38 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 ...
1
vote
1answer
47 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: ...
1
vote
1answer
50 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 ...
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
47 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
53 views

Import python from wsgi fails

I've got a folder structure on an apache2/flask server that is this: /var/www/myapp /var/www/myapp/routing.py /var/www/myapp/__init__.py /var/www/wsgi-scripts/myapp.wsgi My application file ...
0
votes
3answers
106 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 ...
2
votes
1answer
99 views

request.path and url_for don't match up in Flask under mod_wsgi

In Flask, is there a way to get the request.path that includes any "decorations" that WSGI or something else may add on? Running in the test mode (just on port 5000), my request.path and ...
0
votes
1answer
149 views

python flask before_request exclude /static directory

thanks to the answer below, i have a before_request function which redirects a user to /login if they have not yet logged in: flask before request - add exception for specific route here is a copy ...
1
vote
1answer
161 views

Deploying a simple flask app on web faction

I have set up a sample testapp as described in "Can't deploy a simple Flask application on Webfaction" to get a basic webapp running. Below is the code snippet and structure : "On web faction ...
0
votes
2answers
152 views

Slow Flask on mod_wsgi on openshift

I have some performance issues with my Flask application on openshift. There is a need to get some images from database and display them on the web page. And for this taks, I have created a simple ...
0
votes
1answer
277 views

MySQL connection when deploying flask based app using apache mod_wsgi

I'm trying to deploy my flask based app on a server, however I have a problem. Basic handlers seems to work fine, however one where I connect to MySQL gives me error 500. I deploy this app as user ...
0
votes
1answer
117 views

Use cache under mod_wsgi for Python web framework

The codes are like this(I'm using flask and flask-cache but this might be a general problem): @cache.memoize(500000) def big_foo(a,b): return a + b + random.randrange(0, 1000) If I run it in a ...
1
vote
0answers
180 views

Premature end of script headers wsgi with flask on xampp

I am trying to run a flask app with mod_wsgi on an apache server running through xampp. I have tried reading all the questions already asked and gone through the wiki for wsgi but i still cant seem to ...
1
vote
1answer
129 views

Flask Application Using Mod_WSGI on Windows won't run - Now URLS won't work

EDIT: I'm slightly further along now, but the new issue is around rendering templates. When I go to any URL I get the following error message in the log: server:666/ gives this error [error] ...
0
votes
1answer
116 views

WSGI middleware and app factories

I am trying to setup middlewares on my server for python so that subdirectories of blueprints can be seen by the apache2 on the server and served under a url like ...
0
votes
2answers
268 views

Flask, mod_wsgi, apache: ImportError

I'm getting this in my error logs- ImportError: No module named flask It looks exactly like this one Django + mod_wsgi + apache: ImportError at / No module named djproj.urls but I tried that solution ...
1
vote
1answer
117 views

Building the wsgi script for Flask with zc.buildout

I'm building an app with Rest services powered with Flask. And I want to have it deployed with Apache / mod_wsgi as described here : http://flask.pocoo.org/docs/deploying/mod_wsgi/ But I'm stuck for ...
1
vote
1answer
232 views

mod_wsgi test wsgi runs fine, application gives HTTP 500

I am trying to get a flask application running on an Apache server (2.2.15) running CentOS 6.3 (SE linux disabled) and am using mod_wsgi (3.3 installed from source) to do so. I tried the test ...
4
votes
1answer
362 views

Deploying a flask application with mod_wsgi

I'm trying to deploy one of my Flask apps to mod_wsgi on apache, but I'm having trouble because apache tries to solve SOME of the routes on the filesystem: apache's error_log: [Mon Aug 06 19:18:38 ...
0
votes
0answers
229 views

Using Flask, WSGI and Apache with my Website

I want a command to be sent to a USB device remotely using a website. I have the following code on my website <script type="text/javascript"> $(function () { /* not sure what the ...
0
votes
1answer
561 views

trouble running flask on apache/mod_wsgi

I'm trying to run a basic helloworld with apache2 and mod_wsgi but depsite following the tutorial from flask documentation all i got is an error 500. Everything is in /var/www/myapp myapp.wsgi from ...
1
vote
1answer
186 views

“Unknown MySQL Server” in SQLAlchemy w/ ModWSGI and flask

I'm running a web app on Flask using Sqlalchemy. On the debug server, the app runs fine. But when I try to run it from Apache using ModWSGI (changing none of my code), I suddenly get this error: ...
0
votes
1answer
403 views

Deploying Flask on VPS

I currently have a LAMP stack on a Linode VPS. My server is set up with apache2, and then in /etc/apache2/sites-available I have a list of site vhosts. Example: <VirtualHost *:80> ...
3
votes
1answer
876 views

Activating the Flask debugger when running under mod_wsgi

How can I activate the Flask debugger when running under mod_wsgi? I have DEBUG, PROPAGATE_EXCEPTION and PRESERVE_CONTEXT_ON_EXCEPTION set to True, but still the debugger doesn't appear on ...
-1
votes
2answers
492 views

How do I create a .wsgi file?

I am completely confused. I am trying to get Flask to work with mod_wsgi. I have a script alias that is supposed to point to myapp.wsgi. I cannot make a .wsgi file in python, because he would be ...
3
votes
2answers
1k views

Why gevent on a Flask app with Apache + mod_wsgi is raising NotImplementedError?

I'm having an issue deploying my Flask app with Apache (mod_wsgi) and gevent on a shared hosting (Webfaction). The application works fine in the development server provided by Flask, but when I try ...
8
votes
1answer
2k views

How do I use Flask routes with Apache and mod_wsgi?

I've got my Apache server setup and it is handling Flask responses via mod_wsgi. I've registered the WSGI script via the alias: [httpd.conf] WSGIScriptAlias /service ...
1
vote
1answer
948 views

Flask auto-reload and long-running thread

I'm implementing a long-running thread within a Flask application. In debug mode, with the reloader activated, the long-running thread is not killed upon reload. Instead, because the code that ...
2
votes
1answer
1k views

Apache + mod_wsgi + Flask(similar to Django) not working

I have a website written with the Python framework Flask (similar to Django), but I cannot deploy it with the instructions it gave (using Apache2 and mod_wsgi on a Ubuntu server). Right now instead of ...
3
votes
1answer
1k views

Ubuntu, virtualenv, flask/bottle, and mod_wsgi not working, 500 internal server error

I am having trouble with mod_wsgi and flask/bottle. At first I tried with bottle and then moved to flask but still cannot get it to work. I know the problem is the app.wsgi file because I can get the ...
2
votes
2answers
122 views

mod_wsgi python conf parser

I am set up Flask, a pyhon web micro-framework under apache with mod_wsgi. The application works fine except python confparser. This throws no error : parser = ConfigParser.ConfigParser() ...
1
vote
1answer
284 views

ImportError on inspect in Flask WSGI deployment

I'm trying to deploy a "hello world" Flask app via mod_wsgi, but I haven't been able to get around what's presumably a Python pathing issue. The traceback ends with File ...
9
votes
2answers
2k views

Apache SetEnv not working as expected with mod_wsgi

In a flask application I wrote, I make use of an external library which can be configured using environment variables. Note: I wrote this external library myself. So I could make changes if necessary. ...
9
votes
1answer
2k views

500 Error without anything in the apache logs

I am currently developing an application based on flask. It runs fine spawning the server manually using app.run(). I've tried to run it through mod_wsgi now. Strangely, I get a 500 error, and nothing ...
0
votes
1answer
374 views

Flask - WSGI process keeps crashing

I get strange errors when trying to deploy a Flask app (v0.8). I'm using apache's mod_wsgi, as suggested in the docs (almost to the letter). What's strange is that on some requests (simply accessing / ...
0
votes
1answer
373 views

Need help identifying a memory leak involving matplotlib and flask

I have written a small webapp using the flask framework that involves plotting using matplotlib. The problem is that every time I create the plot, the process consumes more memory. I have deployed ...
1
vote
1answer
1k views

How to modify pythonpath for a WSGI application in alwaysdata.net

I've created a small Python web application using Flask, and I wanted to host it in alwaysdata.net. I already installed mod_wsgi in my subdomain, but when I try to import the main module of my app it ...
10
votes
2answers
2k views

See anything wrong with my attempt to get Flask running? (mod_wsgi + virtualenv)

I have a VPS running a fresh install of Ubuntu 10.04 LTS. I'm trying to set up a live application using the Flask microframework, but it's giving me trouble. I took notes while I tried to get it ...
35
votes
8answers
11k views

Static files in Flask - robot.txt, sitemap.xml (mod_wsgi)

Is there any clever solution to store static files in Flask's application root directory. robots.txt and sitemap.xml are expected to be found in /, so my idea was to create routes for them: ...
0
votes
1answer
114 views

mod_wsgi unexpected behavior on bookmarklet submit or related database action

[updated below] I have a bit of a problem deploying a site on apache with mod_wsgi with some javascript bookmarklet functionality; alpha site is up and usable here: stemhub.org. The problem is that ...