Tagged Questions
The mod-python tag has no wiki summary.
68
votes
10answers
8k views
Reducing Django Memory Usage. Low hanging fruit?
My memory usage increases over time and restarting Django is not kind to users.
I am unsure how to go about profiling the memory usage but some tips on how to start measuring would be useful.
I have ...
15
votes
4answers
7k views
Django Apache/mod_python Admin CSS not appearing with admin tables
I have Windows XP/Django/apache/mod_python working on localhost. All parts are working with the exception of the admin CSS not rendering. The admin works, but no html formatting. I've made ...
14
votes
11answers
7k views
A good multithreaded python webserver?
I am looking for a python webserver which is multithreaded instead of being multi-process (as in case of mod_python for apache). I want it to be multithreaded because I want to have an in memory ...
8
votes
3answers
151 views
get the version of django for application
I am starting a new( actually very old) project which I know is in django. I am getting lost knowing the exact version of django it has been build upon. Is there any way I can know the version of ...
8
votes
3answers
3k views
Converting from mod_python to mod_wsgi
My website is written in Python and currently runs under mod_python with Apache. Lately I've had to put in a few ugly hacks that make me think it might be worth converting the site to mod_wsgi. But ...
7
votes
2answers
12k views
Django newbie deployment question - ImportError: Could not import settings 'settings'
The app runs fine using django internal server however when I use apache + mod_python I get the below error
File "/usr/local/lib/python2.6/dist-packages/django/conf/__init__.py", line 75, in ...
6
votes
4answers
881 views
Restarting a Django application running on Apache + mod_python
I'm running a Django app on Apache + mod_python. When I make some changes to the code, sometimes they have effect immediately, other times they don't, until I restart Apache. However I don't really ...
6
votes
2answers
2k views
Python for web development in Apache
I've been playing with mod_python in apache2 which seems to work differently than python does in general - there's a bit different syntax and things you need to do. It's not very well documented and ...
4
votes
1answer
2k views
Differences and uses between WSGI, CGI, FastCGI, and mod_python in regards to Python?
I'm just wondering what the differences and advantages are for the different CGI's out there. Which one would be best for python scripts, and how would I tell the script what to use?
Thanks!
4
votes
3answers
7k views
Django: Mod_python error: ImportError: Could not import settings
I'm a complete noob here, so please bare with me on this one.
Trying to get django to work with apache, and i'm getting the following error:
ImportError: Could not import settings ...
4
votes
2answers
3k views
Serving static files with mod_wsgi and Django
I have a django application using mod_python, fairly typical configuration except that media files are being served by a (I know, not recommended) 'media' directory in the document root. I would like ...
4
votes
3answers
6k views
Setting up Python on Windows/ Apache?
I want to get a simple Python "hello world" web page script to run on Windows Vista/ Apache but hit different walls. I'm using WAMP. I've installed mod_python and the module shows, but I'm not quite ...
3
votes
4answers
97 views
deploying a WSGI application on mod_python
I wrote a WSGI application which I need to deploy to a server, however I've been given a server that already has mod_python installed.
I am not allowed to remove mod_python since there are some ...
3
votes
1answer
776 views
Download Multiple Files in a Single Request (jQuery/Python)
Hey guys. Basically, I need to create a way for a user to open a web page, choose from a list of checkboxes in a form, and once the form is submitted, download all of those files together.
Here are ...
3
votes
2answers
580 views
Get client ip with python
I'm a newbie in python.
I want to write a simple web that prints the client ip on screen
my http.conf Handler:
AddHandler mod_python .py
PythonHandler mod_python.publisher
PythonDebug On
...
3
votes
2answers
905 views
Matplotlib and WSGI/mod_python not working on Apache
Everything works as supposed to on the Django development server. In Apache, the django app also works except when matplotlib is used. Here's the error I get:
No module named multiarray.
Exception ...
3
votes
2answers
4k views
How to Compile Mod_Python 3.3.1 for Python 2.6 and Apache 2.2 on Windows?
I have no experience compiling code other than using Visual Studio's Build command. I am hoping we can create a step by step guide for compiling mod_python on windows. Please be as descriptive as ...
2
votes
0answers
73 views
Web content filter with Apache + mod_wsgi?
I'd like to write a simple web content filter with flexible filtering rules that are written in Python. The filter is to be used as a forward proxy.
Now, I have trouble choosing the right tools for ...
2
votes
1answer
404 views
Making Python scripts work on MAMP
I'm using mamp server for testing out all my web pages. I'm new to python. I'm able to run a script in python interpreter that will normally print a hello world.
print "Hello World!"
So i used ...
2
votes
1answer
105 views
CherryPy + Apache2 - Response cached
I'm trying to develop a CherryPy based system.
I'm actually using Apache2 web server + mod_python.
I have the next problem:
When I update the code of my cherrypy app, refresh several times the ...
2
votes
2answers
283 views
mod_python unable to locate the web.py module under a virtual environment
I have a small web.py Python application that I would like to serve under Apache using mod_python. The web.py framework, as well as other third-party Python modules the application in question relies ...
2
votes
1answer
1k views
Running Django in Virtualenv using Apache with Mod_Python and Multiple Python installations
I would like to run a Django project on a server using virtualenv in Apache using mod_python. Now I know that the recommended apache module to use is mod_wsgi, but I don't want to install that for ...
2
votes
1answer
269 views
Using pam_python in a script running with mod_python
I would like to develop a web interface to allow users of a Linux system to do certain tasks related to their account. I decided to write the backend of the site using Python and mod_python on Apache. ...
2
votes
1answer
491 views
Djangobb problem
I've installed Djangobb app on my server (Debian, mod_python) by cloning original source. The only things I've changed is database options in settings.py. All needed components are installed - syncdb ...
2
votes
1answer
426 views
Django logs: any tutorial to log to a file
I am working with a django project, I haven't started. The developed working on the project left. During the knowledge transfer, it was told to me that all the events are logged to the database. I ...
2
votes
2answers
332 views
Catching errors when logging with SocketHandler in Python
My web application runs on multpile apache instances and I am having multiprocess logging issues because of this. I am currently using a SocketHandler for logging to a daemon using SocketServer that ...
2
votes
2answers
2k views
Reading request parameters in Python
I am very new to python and having to get into this stuff for a simple program to integrate with an ASP.NET application that I am building. The pseudo code is as follows.
Get two parameters from ...
2
votes
3answers
990 views
How do I change which version of python mod_python uses
I'm doing some introductory work with django which seems really easy (and fun) so far but I have been doing all this from Python 2.6 which I installed in /opt/local (RedHat 5.3) because the python ...
2
votes
5answers
2k views
How to setup and run Python on Wampserver?
Can anyone help me to set up Python to run on Wampserver. From what I've read so far you would need to use a combination of Wampser, Python, mod_pyhton, and adjustment to the Apache http.conf file. ...
2
votes
3answers
1k views
How do you trace 500 server errors with Apache + mod_python + Django?
I'm randomly getting 500 server errors and trying to diagnose the problem. The setup is:
Apache + mod_python + Django
My 500.html page is being served by Django, but I have no clue what is causing ...
2
votes
2answers
512 views
How can I configure Apache2/mod_python/Django to abort request processing after N seconds?
I recently spent a long while debugging something that turned out to be an infinite loop bug in my own code. Since I can't guarantee I'll never make that sort of mistake again, how can I configure my ...
2
votes
2answers
497 views
How to use Staticgenerator with Django + Apache + mod_python
I have currently an enviroment with Django + Apache via mod_python. How can I use Staticgenerator without nginx, just with Apache and mod_python? Thank you.
2
votes
1answer
550 views
Python Server Pages Implementations
I've been a PHP developer for quite awhile, and I've heard good things about using Python for web scripting. After a bit of research, I found mod_python, which integrates with Apache to allow Python ...
2
votes
2answers
216 views
Really odd (mod)_python problem
this one is hard to explain!
I am writing a python application to be ran through mod_python. At each request, the returned output differs, even though the logic is 'fixed'.
I have two classes, ...
2
votes
6answers
1k views
mod_php vs mod_python
Why mod_python is oop but mod_php is not ?
Example :We go to www.example.com/dir1/dir2
if you use mod_python apache opens www/dir1.py and calls dir2 method
but if you use php module apache opens ...
2
votes
1answer
1k views
Is there a mod_python for Apache HTTP Server 2.2 and Python 2.6 or 3.0?
I poked around the mod_python website and I only found the files for Python 2.5 and earlier for Apache HTTP Server 2.2. I Googled around a little, without significant luck. Any suggestions?
2
votes
3answers
745 views
How do I modify sys.path from .htaccess to allow mod_python to see Django?
The host I'm considering for hosting a Django site has mod_python installed, but does not have Django. Django's INSTALL file indicates that I can simply copy the django directory to Python's ...
2
votes
2answers
2k views
Why can't I disable .htaccess in Apache?
This is the opposite problem from most about which I have read. I am running Ubuntu 8.04 on an Amazon instance with Apache 2.2.8 and I can't figure out why setting AllowOverride to None for root ...
2
votes
3answers
2k views
Setting up Django with mod_python, Apache on SuSE with Alias
I'm having major problems getting Django working with my Apache configuration. I did not create the server, so I don't have too much leeway as to how the server works. Essentially there are three ...
2
votes
2answers
412 views
How to make Apache/mod_python process collect its zombies?
Apache/2.2.6 (Unix) DAV/2 mod_python/3.2.8 Python/2.4.4 configured ...
One of apache processes spawns some long-running python script asynchronously, and apparently doesn't seem to collect its child ...
2
votes
1answer
130 views
Failed to get separate instances of a class under mod_python
I'm trying to run some python code under Apache 2.2 / mod_python 3.2.8. Eventually the code does os.fork() and spawns 2 separate long-run processes. Each of those processes has to create a separate ...
1
vote
1answer
45 views
import python module when using mod_python
i have been using imdbpy for some time. I was interested in making a very basic webservice to return json data.
I have a basic system working earlier today however after a reboot i now get the ...
1
vote
1answer
84 views
Set http response Content-Type to “xml” in python
How do I display on an html page an xml?
how can I set in python text/html?
I'm writing in the html as:
response.out.write
1
vote
1answer
60 views
django 1.3 upgrade problem
I recently updgraded to django 1.3. After the upgrade, I get the following error whenever I used request.POST:
Traceback (most recent call last):
File ...
1
vote
0answers
28 views
django label tag on apache
I've a problem with form rendering on a form which inherits from my own User model.
When the rendering is made in dev, everything is OK.
But in prod, with apache and mod_python, the form is not ...
1
vote
1answer
37 views
Not able to load an image in the webpage using mod_python
I have to make a webpage using mod_python, i have to load an image on the webpage this is the code that i have made
import cgi
import nltk
import time
def fill():
s = """\
...
1
vote
1answer
73 views
How to set up Apache server via an FTP account
I have developed a web application in Django and would like to go online i have an FTP access to the hosting server I am a beginner to "setting up a website" i would like to know how to install apache ...
1
vote
1answer
602 views
404 error while executing .py file in cgi-bin using apache2
previously i had error in installing apache2 for python, this is the link
I thought i should continue there but right now i'm getting a new error so posting it as a new one this is what the problem ...
1
vote
1answer
384 views
Redirecting to the correct localization: Nginx, Apache, memcached and Django
My site is localized using a string in the URL (e.g. /DE/certificate gets the German version, /US/certificate gets en-US, etc.) For some URLs on the site, leaving out the localization part redirects ...
1
vote
1answer
120 views
Killing individual Apache processes in mod_python
We are having a problem with individual apache processes utilizing large amounts of memory, depending on the request, and never releasing it back to the main system. Since these requests can happen ...