0
votes
1answer
15 views

mod_wsgi loading python script from wrong Pyramid app directory

I have two apps with nearly identical code base (same functionality, just different branding) that I am trying to do virtual hosting with using mod_wsgi and apache. the virtual host settings for both ...
0
votes
1answer
37 views

Internal Server Error when retrieving JSON from a python script using JQuery

I'm trying to write a simple web application that uses JQuery to call a python script. The python script returns data in JSON format. Here is the ajax call in my Javascript: console.log('before'); ...
0
votes
1answer
19 views

Python mod_wsgi application strange behavior

I am relatively new to Python and Python web application development. Currently I am creating a hello world application in Python using mod_wsgi Here are my configurations. Apache configuration ...
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
48 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 ...
0
votes
1answer
20 views

Apache2 Ruby and Python load default website when *.domain.net is set in vhost file

5 sites setup using named vhosts. site1.domain.net (PHP) site2.domain.net (Python) site3.domain.net (Ruby) site4.domain.net (PHP) site5.domain.net (PHP) In the vhost for site1 I also have the ...
0
votes
0answers
43 views

Error with subprocess in python and apache as well as requests

I am trying to develop a website with django, and I had everything running fairly well under my development environment but now that I am trying to deploy it to an apache based server I am running ...
0
votes
0answers
59 views

Apache with mod_wsgi and python returns 500 periodically

I have a website running on Python and Flask. 4 times out of 10 it returns a 500 error, randomly as far as I can tell. from flask import Flask app = Flask(__name__) @app.route("/") def index(): ...
0
votes
1answer
52 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 ...
1
vote
0answers
125 views

Django Response always Chunked with text/html cannot set Content-Length

In my Django Application's views.py , I return an HttpResponse object after attempting to set the following HTTP Header fields: # Create a Response Object with the content to return response = ...
0
votes
1answer
100 views

Caching Django Responses with mod_wsgi and Apache2 mem_cache

I've followed the following article in an attempt to setup Apache2 caching in order to use it with Django on Ubuntu 12.10 with mod_wsgi. I want Apache to cache some requests for me. ...
0
votes
0answers
63 views

Configure Django with Apache

I am trying to get my Django application running under apache with mod_python but I do not know what is the problem. my django project is under the directory /srv/APCC Apache virtual host configs as ...
0
votes
2answers
110 views

How do I determine if my mod_wsgi application is running on HTTPS?

I've just inherited a Python application which is running under Apache 2.4, mod_wsgi 3.4 and Python 2.7. The same application serves both HTTP and HTTPS requests. In the existing code, it is trying ...
0
votes
1answer
73 views

Issue in deployment zc.buildout with apache

I am facing some issues with deploying my buildout project (Django) in Apache using mod_wsgi. My folder structure: t/ bootstrap.py setup.py bin/ buildout django django.wsgi ...
0
votes
1answer
80 views

mod_wsgi working directory and user

I'm running flask on mod_wsgi. my flask app, which is on /var/www/app receives some file from user and saves it to /var/www/app/tmp directory. However even after all chmod and chown(thought it was a ...
0
votes
0answers
182 views

mod_python no module named _apache

I am trying to run a python program which I have downloaded. It requires mod_python so I installed the latest version from source. I am also running Python 2.7 on Ubuntu 12.04. When I run the python ...
0
votes
0answers
36 views

Additional unaccounted for latency between Apache and calling Python script

This is a rather puzzling problem that I would be very glad to receive some advice on. I have a python script that is making calls to a Tomcat 7 application behind Apache2 and logs the response time. ...
0
votes
1answer
261 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 ...
0
votes
0answers
44 views

django mutiple sites virtualHost configuration Error

I have two sites and both were working fine in Embedded mode, I like to change them to Daemon mode configuration in Apache2 The problem is if I try to access site-2, it is showing site-1 only. why it ...
2
votes
1answer
136 views

Write concurrent log file

I have a WSGI application on apache2, that writes to a log file in the simplest of manners: def log (msg): with open (LOGFILE, 'a') as f: f.write (msg) In my sandbox environment it works fine, ...
0
votes
1answer
223 views

Running CherryPy under mod_wsgi

I am trying to get a CherryPy app running under apache2/mod_wsgi on ubuntu. I am following the tutorial outlined here, and my config is almost identical. When visiting the root of the site, I receive ...
0
votes
0answers
65 views

what are all the differences between running python code in apache2+uwsgi vs. command line?

consider the following python code (running as apache server's user in all cases): import subprocess as sp _fname_in ='/path/to/existing/dir/file_in.pdf' ...
4
votes
1answer
108 views

Close TCP port 80 and 443 after forking in Django

I am trying to fork() and exec() a new python script process from within a Django app that is running in apache2/WSGI Python. The new python process is daemonized so that it doesn't hold any ...
1
vote
1answer
564 views

WSGIPythonPath is not working

I am deploying my web.py application on Apache2 with mod_wsgi. Here is my virt_host file, WSGIPythonPath /home/ubuntu/plotwatt/libplotwatt:/home/ubuntu/plotwatt/pwstage/src <VirtualHost ...
0
votes
1answer
54 views

How to configure Apache2 to enable error_log files per virtualHost using mod_wsgi?

I have multiple sites which are written in Python using web.py framework. I want to generate separate access logs and error logs files per site, i have enabled on Apache2. How to achieve this ? ...
0
votes
0answers
106 views

SOAP does not working with attachments

i am using Ladon and Python under mod_wsgi working with Apache2 with SOAP protocol. I have got the following traceback, when I tried to get a file using 'attachment'. I can't send the data to client. ...
0
votes
0answers
124 views

return type '[ File ]', (or attachments) can't be send to suds(client) using ladon with SOAP protocol

i am using Ladon and Python under mod_wsgi working with Apache2 with SOAP protocol. I have got the following traceback, when I tried to get a file from specified location in server with the service ...
3
votes
3answers
167 views

pdf file can't be opened in web service using subprocess.Popen

I have a problem with opening PDF file. (i am using Ladon and Python under mod_wsgi working with Apache2. so on a ubuntu apache server system- switched to windows system) I'm trying to run the ...
0
votes
1answer
104 views

Unable to setup web.py on apache2 using mod_wsgi

Here are my config files, /etc/apach2/sites-availabled/currentcost <VirtualHost *:20108> ServerAdmin webmaster@localhost DocumentRoot /var/www WSGIScriptAlias /currentcost ...
0
votes
0answers
48 views

Apache2 & Python in Source Engine

i am an Eventscripts Developer (www.eventscripts.com) and code in Python. It's for Counter-Strike Source. But that's not really important. I have a local xampp apache2 server with mysql. I started ...
0
votes
1answer
87 views

Apache does not Compress/Deflate/GZIP responses

I have set up apache .htaccess file so that it should compress JSONs that my application spews. The application is written in python, and is linked to apache with CGI scripts. <ifmodule ...
0
votes
2answers
135 views

CherryPy SSL behind Apache

Is there a way to set up CherryPy to use SSL when running behind Apache2 without configuring Apache2 to do SSL for CherryPy? I have found multiple tutorials about using SSL with CherryPy and ...
1
vote
1answer
145 views

Configuring apache2 conf for several python web.py apps

I am working on a small web dashboard -project that has backend implemented with python's web.py framework. The dashboard has all sorts of widget's on it, one of which also has its backend ...
1
vote
1answer
572 views

error encounter during mezzanine's deployment with Apache2 wsgi

I tried the mezzanine, and excited about it. deploy it to ubuntu server + apache2 + mod_wsgi. but i cannot insert a image, cannot see the browse window. and when i try visit /gallery/, always an ...
1
vote
2answers
738 views

Problems with deploying flask WSGI application on apache2

I created a one file Flask app so I can test how to deploy it on apache2 server. I followed the steps on the Flask as far as the server and WSGI configuration goes. When I point to the resource in the ...
2
votes
1answer
323 views

Enabling data compression for Apache2 + FastCGI setup

This Question is Related to my earlier post here: CSS loading issue with Android ICS. Where I was facing issue with CSS and JS rendering by Android ICS's default and Dolphin browser. This content is ...
1
vote
2answers
212 views

Deploying Django Project

I have a django project which I want to deploy on apache2 Http Server. However, I want to automatically copy all the python files from some directory to apache srv directory which is ...
0
votes
1answer
176 views

python locale.setlocale fails when running apache

I've got a simple Ubuntu/django/apache server set up and I'm having trouble formatting some of the numbers that I want to display in my Django templates. When I run the code locally (i.e. on my work ...
0
votes
0answers
22 views

mod_python close database error

I am using mod_python on a website. It is pretty good, however it can chuck an error if someone is specifically trying to do something malicious (however, it does not succumb to these security ...
1
vote
1answer
153 views

Why doesn't Apache display 404 errors with Django and mod_wsgi?

With my current Apache & Django setup, when I go to a page that does not exist, the root page for the website is displayed rather than a 404 error. Here is my httpd.conf file: Alias /robots.txt ...
0
votes
0answers
92 views

could not return whole html from Flask

I'm trying to test Apache + FCGI in my WinXP box. I have got response from server but it only a part of it. I tried the same python code without problem through test server which accompany with Flask. ...
0
votes
1answer
89 views

Multi-threading under Apache resulting in duplicate threads

I am running a python thread pool under Apache2 to handle incoming special HTTP requests. The idea is that I have a single "handler" thread per request source - so if I have three devices (A,B,C) ...
0
votes
1answer
1k views

Configuring Apache2 httpd.conf to allow uploading files; using python client with pycurl to upload

I need to configure the Apache 2.2 web server to allow uploading files to a particular directory, say /tmp/www/upload/ on the server. I want to perform the upload with a python client, and tried the ...
1
vote
0answers
74 views

Config for Python Files Protection [closed]

I have been researching a way to protect Python's source code, and the best way I found is to put code behind a webserver. So, the users "cannot" see the code, only run it through the web interface. ...
0
votes
1answer
160 views

Python psycopg2 + mod_wsgi: connection is very slow and automatically close

I have made a python ladon webservice and I run is on Ubuntu with Apache2 and mod_wsgi. (I use Python 2.6). The webservice connect to a postgreSQL database with psycopg2 python module. My problem is ...
1
vote
2answers
661 views

WSGI App not found - 404

Following this guide: http://code.google.com/p/modwsgi/wiki/QuickConfigurationGuide I was not able to configure a "Hello World" WSGI application (I did not mount at docroot and did not delegate to ...
0
votes
2answers
211 views

How to host Django1.3.1 in Apache2.2?

I am Using python 2.7.2,Django 1.3.1, Apache 2.2.22 on WindowsXP(win32). By the documentation i found here i did the step by step, but when the directory section is given `Alias /media/ ...
0
votes
2answers
43 views

Is apache2 reload for .conf changes only or is it allowable to be used when application code changes?

When the code for my python WSGI applicaiton changes should I use apache2's reload or graceful restart feature? Currently we use reload, but have noticed that sometimes the application does not load ...
1
vote
4answers
108 views

mod_wsgi showing old code

I'm running mod_wsgi on apache2. It's running Django and for some reason, after I change my code, old versions are sometimes shown along with new code. For example, after creating a view that simply ...
1
vote
1answer
729 views

mod-wsgi & apache & pyramid (pylonsproject)

i have a problem with running pyramid site under apache+mod-wsgi. the problem is that i can't tell apache which python interpretor is the right one for the site it serve. i have several virtual ...

1 2 3