Re: Web programming in Python.

2008-09-29 Thread afrogazer
Not to be a condescending, but there are a lot of manuals out there on how to do this and asking on a forum would really not be the best way to get started. Do some research and some reading and you should be up and running in a short time. You can ask questions on the forum if you have difficultie

Re: Web programming in Python.

2008-09-29 Thread Steve Holden
Kurda Yon wrote: > 1. On my server (in my directory) I found "cgi-bin" subdirectory. > > 2. In the "cgi-bin" I have created a file "test.py". > > 3. In that file I put: > #!/usr/bin/python2.4 python OK, if /usr/bin/python2.4 really *is* a directory then you will need to make that first line #!/

Re: Web programming in Python.

2008-09-29 Thread Paul Boddie
On 29 Sep, 01:51, Kurda Yon <[EMAIL PROTECTED]> wrote: > 1. On my server (in my directory) I found "cgi-bin" subdirectory. > > 2. In the "cgi-bin" I have created a file "test.py". > > 3. In that file I put: > #!/usr/bin/python2.4 python > print "Hello, World!" > (I have checked, I have "/usr/bin/py

Re: Web programming in Python.

2008-09-28 Thread Lawrence D'Oliveiro
In message <[EMAIL PROTECTED]>, Sean DiZazzo wrote: > Have you loaded the modpython module in your httpd.conf? Not relevant for CGIs. -- http://mail.python.org/mailman/listinfo/python-list

Re: Web programming in Python.

2008-09-28 Thread Sean DiZazzo
On Sep 28, 4:51 pm, Kurda Yon <[EMAIL PROTECTED]> wrote: > 1. On my server (in my directory) I found "cgi-bin" subdirectory. > > 2. In the "cgi-bin" I have created a file "test.py". > > 3. In that file I put: > #!/usr/bin/python2.4 python > print "Hello, World!" > (I have checked, I have "/usr/bin/

Re: Web programming in Python.

2008-09-28 Thread James Matthews
If you are considering using a framework try Django. I enjoy using it! On Sun, Sep 28, 2008 at 6:40 PM, Michael Crute <[EMAIL PROTECTED]> wrote: > On Sun, Sep 28, 2008 at 6:39 PM, Kurda Yon <[EMAIL PROTECTED]> wrote: > > I am totaly newbie in the Python's web programming. So, I dont even > > know

Re: Web programming in Python.

2008-09-28 Thread Michael Crute
On Sun, Sep 28, 2008 at 6:39 PM, Kurda Yon <[EMAIL PROTECTED]> wrote: > I am totaly newbie in the Python's web programming. So, I dont even > know the basic conceptions (but I have ideas about php-web- > programming). Does it work in a similar way? First, I have to install > a Python-server? There

Re: Web programming in Python.

2008-09-28 Thread Kurda Yon
1. On my server (in my directory) I found "cgi-bin" subdirectory. 2. In the "cgi-bin" I have created a file "test.py". 3. In that file I put: #!/usr/bin/python2.4 python print "Hello, World!" (I have checked, I have "/usr/bin/python2.4" directory.) 4. I give the following permissions to the "tes