Mod_python is an Apache module that embeds the Python interpreter within the server.
1
vote
1answer
22 views
Cherrypy behing apache with mod_python
I have problem with cherrypy deployment behind apache with mod_python.
I have this apache configuration:
4 <VirtualHost *>
5 ServerAdmin martin@podhola.com
6 ServerName ...
-3
votes
5answers
86 views
Python : in python is it true you can import specific functions from a module unlike in php?
in php it is not possible to only get specific
functions from an included file.
i would usually create 5 different include files
and each would have like 5-6 functions in it.
this way it would be ...
0
votes
1answer
25 views
What's wrong with the Basic configuration of apache and mod_python?
the the Basic configuration of apache is:
LoadModule python_module /usr/lib64/httpd/modules/mod_python.so
<Location "/mysite/">
SetHandler python-program
PythonHandler ...
0
votes
1answer
31 views
Does Django-1.5.1 still support the mod_python-3.3.1?
My version of Django is 1.5.1, and the version of mod_python is 3.3.1.
Does django still support mod_python?
0
votes
0answers
13 views
How to solve it when make the mod_python? [migrated]
the verison of RPM is:
httpd-2.2.3-63.el5.centos.1
httpd-devel-2.2.3-63.el5.centos.1
apr-1.2.7-11.el5_3.1
apr-devel-1.2.7-11.el5_3.1
apr-util-1.2.7-11.el5
apr-util-devel-1.2.7-11.el5
the version of ...
1
vote
1answer
46 views
apache server cant find static files in Django project
I'm trying to upload my code on an apache server using mod_python. I have tried a lot but the server is not able to access my static files (all my images, js and css).
Here are my Virtualhost ...
0
votes
2answers
99 views
How to run python script which require root privilage for execution in apache with mod_python at openbsd
I am trying to run python script in Apache 2.x with mod_python. I edited httpd.conf with publisher
LoadModule python_module /usr/local/apache2/modules/mod_python.so
<Directory ...
0
votes
0answers
40 views
Execute Python script from apache as a root
I am using mod_python for executing a Python script from Apache 2.2.x at OpenBSD 5.1.
I am successfully running a Python script which does not require root privilege.
But I am executing several ...
0
votes
0answers
53 views
ImproperlyConfigured: Requested setting MIDDLEWARE_CLASSES, but settings are not configured
i am confuring the apache mod_wsgi to django project
and here is my djangotest.wsgi file
import os
import sys
sys.path = ['/home/pavan/djangoproject'] + sys.path
os.environ['DJANGO_SETTINS_MODULE'] ...
-1
votes
1answer
41 views
Remote Web server connection issue
I have set up a server for our Django web application so that everyone in our LAN can access them. I have installed Ubuntu 12.04 with apache version 2.2.22 and modpython version 3.3.1. In some of our ...
0
votes
1answer
25 views
Why is a newline appended when using mod_python sendfile?
I am serving a website from a fedora 17 server. This website allows the user to click and download from a list of files. When the user clicks to download a file however, a newline character (0A) is ...
1
vote
0answers
67 views
How can I run python3 on my apache server by default?
I am a beginner to Python here, and I am having an issue.
In my setup, I was using a PHP script to call the command line which in turn would execute a python script. Since then, I've discovered that ...
1
vote
0answers
25 views
mod_python does not process multiple requests from the same browser simultaneously for the same file
I have a page which can take long time to process. But in the mean time if the same page is accessed (from the same system), the second instance gets blocked till the first page finishes. Actually ...
0
votes
2answers
38 views
Test page for mod_wsgi
mod_python has a test page script which emits information about the server configuration. You can put
SetHandler mod_python
PythonHandler mod_python.testhandler
into your .htaccess and it displays ...
0
votes
0answers
184 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
64 views
how to convert below block from mod_python to mod_wsgi
how to convert below block from mod_python to mod_wsgi?please help
SetHandler python-program
PythonPath "['/public/gdp/trunk/src/ukl/CIA','/usr/local/gdp/lib/python2.4/site-packages'] + sys.path"
...
0
votes
0answers
81 views
Element Tree Python not working with python2.6
We are trying to fetch an RSS Feed and than trying to parse it using ElementTree. Its working fine when I use python2.7 but is crashing Apache if the python version is 2.6. Below is the code
urlres = ...
0
votes
1answer
97 views
Can I use mod_python's Sessions with mod_pywebsocket?
I'm creating a simple web game that uses web sockets for to stream updates HTTP AJAX requests for everything else (e.g. login system, user profiles, &c). Unfortunately I'm somewhat new to ...
0
votes
1answer
58 views
Unable to write to files with mod_python and PSP
So, I have a Python Server Pages script that when ran, saves stuff to a file in /var/www/. It opens the file with:
open(filename, 'wb')
Which causes this:
IOError: [Errno 13] Permission denied: ...
1
vote
1answer
50 views
How do you get a request variable using the python albatross framework
I have inherited a python project, and I admit that I am a noob on this, but the project is done using the albatross framework. I have added two fields to a form: "password" and "random". I now need ...
1
vote
1answer
49 views
How do I write a singleton class in mod_python which works across requests?
I have been trying to implement a singleton class for mod_python. It works fine while working in a single request but instantiates a new object when I call from a new request(as expected). How can I ...
0
votes
1answer
209 views
mod python, get POST parameters from request object
Is there any basic example that shows how to get POST parameters from the request in mod python custom handler. I have no trouble in GET requests, where I get my arguments from request.args, BUT if ...
0
votes
1answer
299 views
Getting POST variables in mod_python
I've got a simple page here, titled login.py for the time being since eventually it will be a functional login page. However, right now I've got it set up to try to get POST variables from the form ...
0
votes
1answer
93 views
Mod_Python: Publisher Handler vs PSP Handler
I've been testing out Mod_python and it seems that there are two ways of producing python code using:-
Publisher Handler
PSP Handler
I've gotten both to work at the same time however, should I use ...
0
votes
1answer
82 views
Django mod_python logging issue, urgent
I'm trying to debug my view file in Django.
I'm using Django 1.3 with mod_python on server.
How can I see some out from my view file.
I already try to use standart logging configuration
LOGGING = {
...
2
votes
3answers
172 views
Problems running beautifulsoup4 within Apache/mod_python/Django
I'm was trying to render an HTML-page on the fly using BeautifulSoup version 4 in Django (using Apache2 with mod_python).
However, as soon as I pass any HTML-string to the BeautifulSoup constructor ...
4
votes
4answers
714 views
django request.POST contains <could not parse>
I am having a django form to get the username,password. when the user posts data, i see that the post dictionary contains the following(traceback),
Traceback (most recent call last):
File ...
0
votes
1answer
243 views
Django, mod_python, apache deployment: mod_python import error
I've already installed mod_python, but when i'm trying to use it:
eg.
>>>import mod_python
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
...
1
vote
1answer
89 views
parseerror in jQuery when returning xml from mod_python
I'm trying to return XML-data from a Python script using jQuery's .ajax:
<html><head>
<script type="text/javascript" src="jquery-1.7.2.js"></script>
<script ...
0
votes
0answers
96 views
How to deploy a web.py application into an apache2 webserver using mod_python?
I follow the instructions here. But I can not achieve to make it run.
I tried to edit the apache config file as it is said here. Most of the time I get HTTP 500 error. Then I fix some bugs about db ...
0
votes
0answers
102 views
CherryPy behind mod_python: Change file upload temp directory
I have an application written in CherryPy 3.2 on a Debian server being served by Apache2 mod_python. The application is for uploading large files, which are then stored on the large /srv partition.
...
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 ...
0
votes
2answers
596 views
django - ImportError: No module named modpython
I'm trying to setup django on my vhost and got stuck on this error:
MOD_PYTHON ERROR
ProcessId: 4496
Interpreter: 'ouiop'
ServerName: 'ouiop.com'
DocumentRoot: ...
0
votes
0answers
21 views
apache mod_python serving secure files
I have a few static files on my apache server that I would like to serve. These files are supposed to be secure, and should be inaccessible by just typing the url in the browser. However, they need to ...
0
votes
1answer
78 views
set post data python apache
I am trying to, for a login script, set a session ID using POST in python on apache. However, there doesn't appear to be any method to doing it as far as I can see other than just doing a redirect. ...
0
votes
1answer
142 views
setting and reading cookies in mod_python (apache)
I've seen plenty of things explaining how to read and write cookies, however, I have no clue about how to do it in mod_python in apache. I tried putting this at the start of my HTML code, but it says ...
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] ...
1
vote
1answer
254 views
python webpage mod_wsgi
Before I used mod_python for python websites. Unfortunately mod_python is not up to date any more so I looked for another framework and found mod_wsgi.
In mod_python it was possible to have an index ...
0
votes
0answers
105 views
Need an advice about mod python pagination
I am making a research project (search engine) in mod python, and i want to make pagination. Well the problem is the results from the search, i don't know where to store them efficiently so that i ...
1
vote
4answers
421 views
Calling a Python script from a webpage
I've searched around for a while but I can't find a concise explanation of how to do what I want.
I have a fairly complex program which I'd like to make a simple web interface for.
Ideally there'll ...
0
votes
1answer
322 views
Mod_Python requires Python Handler for every file?
With mod_python I am wondering why I have to create a PythonHandler in order to get a URL to parse Python code. If you see below, if I do not have a file called jrpython.py it will not work.
Is there ...
0
votes
3answers
145 views
maintaining user authentication if i have some web pages on mod_python and some on mod_wsgi
I have a web application written in raw python and hosted on apache using mod_python. I am building another web application which is django based and will be hosted on same server using mod_wsgi.
...
1
vote
3answers
125 views
using django based mod_wsgi and raw python based mod_python together on same apache
I am building a web application in django 1.4 which I have to deploy on apache using mod_wsgi. The problem is that there is already a raw python web application running on it using mod_python. On ...
1
vote
1answer
416 views
python ascii codes to utf
So when i post a name or text in mod_python in my native language i get:
македонија
And i also ...
2
votes
1answer
138 views
i update djang1.3.1 to djang1.4 , error: MOD_PYTHON ERROR
I updated djang1.3.1 to djang1.4.
In my local env ,that's fine.
but when i ci my code to server ,error happened!
in my server , i can use 'python manage.py shell'
and can 'import settings', that's ...
0
votes
1answer
130 views
How to get mod_python site to allow clients to cache selected image content?
I have a small dynamic site implemented in mod_python. I inherited this, and while I have successfully made relatively minor changes to its content and logic, with HTTP caching I'm out of my depth. ...
0
votes
0answers
75 views
Unresponsive Django app
I am running a Django app using Apache and mod_python, and the app has stopped responding to HTTP requests. I cannot find a cause for the problem because
- Apache is still responsive, and static pages ...
1
vote
0answers
61 views
jslint from mod_python in apache
I am new to mod_python.I want to call jslint from mod_python.I have tried to import it using
import jslint
but it doesn't work
0
votes
0answers
296 views
Django-cms problems on apache server
I've installed Django 1.3 with django-cms. All is working perfect under self development webserver. While I install a fresh copy based on apache + mod_python, it has some problems that not meet in ...
1
vote
1answer
2k views
Access-Control-Allow-Origin: * not working?
Classic "Origin ... is not allowed by Access-Control-Allow-Origin" problem. Two machines serve contents for the same website. When machine A does a $('#main').load('link_to_resource_on_B') via ...

