Re: [Tutor] mod python

2008-04-22 Thread Carlos Daniel Ruvalcaba Valenzuela
Hello, I think this is a problem with mod_python and Apache configuration, you should checkout mod_python configuration for Apache+Windows. Most likely your problem is the mod_python library file, use this instead (more appropiate for windows): "LoadModule python_module modules/mod_python.dll" I

[Tutor] mod python

2008-04-22 Thread SwartMumba snake
Hello Python Mailing ListI am trying to set up mod python 3.3.1. I have python 2.5.1, apache 2.2 server, and my os is Vista. The problem is that after I install mod python, there is no mod_python.so in the apache modules directory. Thus the "LoadModule python_module modules/mod_python.so" call does

[Tutor] Mod python setup

2006-11-22 Thread Jacob Abraham
Hi All, I've been using Trac (http://trac.edgewall.org/) for some time you will be suprised to know that I use it along with a Clearcase repository. I've also written a small plugin that displays the MSN logs. Soon some of this code will be put into trac hacks with an open source license. Fo

Re: [Tutor] Mod-python

2006-06-12 Thread Patricia G.
Hi, When you say you that you want to send this data via Apache do youmean that the web server you are sending to is running Apache  Yes. If you simply want to emulate a a web page with a submit button thatsends a Post you do it with code a bit like the following import urllib, urllib2url = "" hr

Re: [Tutor] Mod-python

2006-06-12 Thread Peter Jessop
> > I have about 17 lines of text (about system information) that I need to pass > to > a remote web server AND I've been asked to send this data via Apache. I have > to > write a python script that will fetch a URL to pass this text. I understand > that > if I want to use the POST method, I wou

Re: [Tutor] Mod-python

2006-06-12 Thread Dustin Mitchell
Well, POST or PUT are the normal ways to do that. You need to interact with the person running the web server to see how they need it delivered - if they're expecting a GET and you give them a POST, it isn't going to work very well :) Dustin On Jun 12, 2006, at 2:48 PM, patricia wrote: > Hi!

[Tutor] Mod-python

2006-06-12 Thread patricia
Hi! I have about 17 lines of text (about system information) that I need to pass to a remote web server AND I've been asked to send this data via Apache. I have to write a python script that will fetch a URL to pass this text. I understand that if I want to use the POST method, I would need to hav