1
vote
2answers
21 views

Flask+Apache and 500 Error

I am using Flask and Apache to build a website and the site is up and running. However I met this strange 500 error: one 500 error will take the website down, and the site will never come online ...
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 ...
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
22 views

reload image/page after computation is complete from the server side

I have a python code that performs some fairly intense computations, and then generates a plot (png file) for display on the web. I'm using python, flask, mod_wsgi, and apache. Since the computation ...
1
vote
2answers
68 views

Auto reloading python Flask app upon code changes

I'm investigating how to develop a decent web app with Python. Since I don't want some high-order structures to get in my way, my choice fell on the lightweight Flask framework. Time will tell if this ...
0
votes
0answers
32 views

How to route same web domain in different implementations

Lets suppose i have a domain www.mydomain.com and i have an API provider written in python, and a PHP/html website that consumes that API. and all of them uses the same domain. Ex: API: ...
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 ...
0
votes
1answer
43 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
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
1answer
273 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
260 views

ImportError using Flask with wsgi and Apache2

I'm trying to set up a simple website using Flask, wsgi, and apache2. I'm getting the following error trying to import from site.py into site.wsgi: [Fri Jan 11 16:42:20 2013] [error] [client ...
2
votes
1answer
164 views

Running a flask website in a subdirectory with apache

I'm using apache on my personal server, and I'm trying to run a 'main' website made with Silex on www.mydomain.com/ and another one made using Flask on www.mydomain.com/something To run the Flask ...
0
votes
0answers
149 views

Flask-login with Apache virtualhost redirect error?

I have a flask application that requires login authentication using flask-login to do the session handling. The application is using VirtualHost in apache, and the root url is /myapp for instance. ...
0
votes
0answers
45 views

Return the right URL in web framework after changing rewrite rules in Apache

I have an application called radar. At first, I develop it on my laptop, so the urls are like this: url_for('upload') => http://127.0.0.1:5000/upload url_for('index') ...
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 ...
2
votes
1answer
305 views

Python Flask webapp simple proxy configuration to enable SSL/HTTPS with Apache

I have a working webapp based on Python, Flask. (configured to work on http:// host:port) I need to get it to work with https. I was given an Apache proxy - which redirects all requests in such ...
1
vote
1answer
227 views

Flask Windows Apache issues

I'm attempting to get Flask running off apache on windows and I'm coming across the error message below. Any ideas on what could be causing this issue? Error Message: mod_wsgi (pid=4380): Exception ...
1
vote
1answer
125 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
2answers
263 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
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
358 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 ...
1
vote
1answer
2k views

How do I delete mod_python?

I keep getting these errors in my Apache logs: [error] python_init: Python version mismatch, expected '2.6.5+', found '2.6.6'. [error] python_init: Python executable found '/usr/bin/python'. [error] ...
0
votes
1answer
559 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
185 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: ...
2
votes
1answer
449 views

Strange `UnicodeEncodeError` using `os.path.exists`

In a web-application (using Flask), I get the following error: Unable to retrieve the thumbnail for u'/var/data/uploads/2012/03/22/12 Gerd\xb4s Banjo Trio 1024.jpg' Traceback (most recent call last): ...
2
votes
1answer
456 views

Some problems getting the simplest Flask application running on Apache with mod_wsgi

I'm trying to run a really simple Python web application developed with the Flask microframework. I'm on a VPS with Ubuntu 10.04 LTS. I've followed this instructions in order to get the comforting ...
-1
votes
2answers
488 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 ...
8
votes
1answer
713 views

Path routing in Flask

I want to run a Python CGI on a shared hosting environment. I followed Flask's example and came up with a tiny application as below: from flask import Flask app = Flask(__name__) @app.route("/") def ...
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 ...
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 ...
4
votes
1answer
337 views

Running django and flask on same apache server

I am trying to run to run django and flask on the same apache server. WSGISocketPrefix /var/www/wsgi <VirtualHost *:80> ServerAdmin name@email.com ServerName domain.com ...
1
vote
1answer
380 views

Flask WSGI application running out of memory

I have a a fairly simple python Flask application running as a WSGI process under Apache2. The application has a listener by using SQLAlchemy to retrieve a few lines of data from the DB and sending it ...
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. ...
2
votes
2answers
784 views

NameError: name 'helloworld' is not defined

My files are as follows: helloworld.py from flask import Flask app = Flask(__name__) @app.route('/') def __init__(self): print 'Hello World!' if __name__ == '__main__': app.run() ...
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 ...
1
vote
1answer
441 views

Using Python Flask, mod_wsgi, apache2 - unable to get custom 500 error page

I am running Ubuntu, Flask 0.8, mod_wsgi 3 and apache2. When an error occurs, I am unable to get Flask's custom 500 error page to trigger (and not the debug mode output either). It works fine when I ...
9
votes
2answers
909 views

What's a good Flask/Python/WSGI analog to the PHP Apache shared memory stores like apc_store/apc_fetch?

I've done a couple of years of large-scale game server development in PHP. A load balancer delegates incoming requests to one server in a cluster. In the name of better performance, we began caching ...
9
votes
2answers
5k views

How to solve import errors while trying to deploy Flask using WSGI on Apache2

I am having an issue deploying a flask app on apache2 using wsgi. I have posted the error logs and config files below. I have tried moving things around, renaming them, etc, but all give me an ...
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 ...