Re: Creating web server

2000-04-18 Thread David Tabachnikov (NetHunter)
MDK's Apache package works fine as well. (Check my post - its the first, and Idan A.'s post. Those two will tell you all you need to know. BTW, RTFM means, Read The Fucking/Fine(Depends on your nature) Manual.) Boltyansky Boris wrote: > > Hi ppl! > > Omer Mussaev wrote: > > > > Moshe Zadka wrot

RE: Creating web server

2000-04-18 Thread Chen Shapira
> > About Debian I have some problems because I don't have one and I don't > know if > there are people in Haifa that have a copy. Anyone does? You don't really need Debian, although its a very very good choice, other distributions also work. IGLU is based on Mandrake and it works fine. If you

Re: Creating web server

2000-04-18 Thread Boltyansky Boris
Hi ppl! Omer Mussaev wrote: > > Moshe Zadka wrote: > > > On Tue, 18 Apr 2000, Vadim Vygonets wrote: > > > > > Quoth Moshe Zadka on Tue, Apr 18, 2000: > > > > Well, the fact that Python comes with batteries included is not my fault. > > > > > > With proper batteries, I can even do it in C. > >

Re: Creating web server

2000-04-18 Thread Moshe Zadka
On Tue, 18 Apr 2000, Vadim Vygonets wrote: > Quoth Moshe Zadka on Tue, Apr 18, 2000: > > Well, the fact that Python comes with batteries included is not my fault. > > With proper batteries, I can even do it in C. Well, you choose a language, you choose libraries... > And I would still prefer A

Re: Creating web server

2000-04-18 Thread Vadim Vygonets
Quoth Moshe Zadka on Tue, Apr 18, 2000: > Well, the fact that Python comes with batteries included is not my fault. With proper batteries, I can even do it in C. int main(){webserver();return 0;} 123456789012345678901234567890123 1 2 3 Perl, BTW, has some HTTP daemon mo

Re: Creating web server

2000-04-18 Thread Gaal Yahas
On Tue, Apr 18, 2000 at 08:28:24AM +0200, Moshe Zadka wrote: > > Quoth Moshe Zadka on Sat, Apr 15, 2000: > > > 2. Type "python -c 'from SimpleHTTPServer import*;test()'" > 1234567890123456789012345678901234567890 > 1 2 3

RE: Creating web server

2000-04-18 Thread Moshe Zadka
On Tue, 18 Apr 2000, Chen Shapira wrote: > > I challenge you to write a web server in perl in fewer characters. > > (I did it in 36) > > Including the implicit one in the httpserver modules? I doubt it. Well, the fact that Python comes with batteries included is not my fault. some-of-the-batte

Re: Creating web server

2000-04-17 Thread Omer Mussaev
Moshe Zadka wrote: On Mon, 17 Apr 2000, Vadim Vygonets wrote: > Quoth Moshe Zadka on Sat, Apr 15, 2000: > > 2. Type "python -c 'from SimpleHTTPServer import*;test()'"     1234567890123456789012345678901234567890 1 2 3 4

RE: Creating web server

2000-04-17 Thread Chen Shapira
> I challenge you to write a web server in perl in fewer characters. > (I did it in 36) Including the implicit one in the httpserver modules? I doubt it. --Chen. = To unsubscribe, send mail to [EMAIL PROTECTED] with the word "uns

Re: Creating web server

2000-04-17 Thread Moshe Zadka
On Mon, 17 Apr 2000, David Tabachnikov (NetHunter) wrote: > Maybe not on python, but anything can run on Perl. Yes, and it's auto encrypted too. perl-open-source-is-an-oxymoron-ly y'rs, Z. Moshe Zadka <[EMAIL PROTECTED]>. http://www.oreilly.com/news/prescod_0300.html http://www.linux.org.il --

Re: Creating web server

2000-04-17 Thread Moshe Zadka
On Mon, 17 Apr 2000, Vadim Vygonets wrote: > Quoth Moshe Zadka on Sat, Apr 15, 2000: > > 2. Type "python -c 'from SimpleHTTPServer import*;test()'" 1234567890123456789012345678901234567890 1 2 3 4 > > Not everything

Re: Creating web server

2000-04-17 Thread David Tabachnikov (NetHunter)
Vadim Vygonets wrote: > > Quoth Moshe Zadka on Sat, Apr 15, 2000: > > 2. Type "python -c 'from SimpleHTTPServer import*;test()'" > > Not everything should run on Python, you know. > > Vadik. > > -- > Time is an illusion. Lunchtime doubly so. > -- Ford Prefect > >

Re: Creating web server

2000-04-17 Thread Or Sagi
On Mon, 17 Apr 2000, Vadim Vygonets wrote: > Quoth Moshe Zadka on Sat, Apr 15, 2000: > > 2. Type "python -c 'from SimpleHTTPServer import*;test()'" > > Not everything should run on Python, you know. > I would have changed the order of the words in that sentence. -- Ors. =

RE: Creating web server

2000-04-17 Thread Chen Shapira
> > 2. Type "python -c 'from SimpleHTTPServer import*;test()'" > > Not everything should run on Python, you know. > > Vadik. but everything that isn't mission-critical-real-time-number-crunching-atomic-bomb-making system, can, using very little effort. do appreciate the elegance of a powerfu

Re: Creating web server

2000-04-17 Thread Vadim Vygonets
Quoth Moshe Zadka on Sat, Apr 15, 2000: > 2. Type "python -c 'from SimpleHTTPServer import*;test()'" Not everything should run on Python, you know. Vadik. -- Time is an illusion. Lunchtime doubly so. -- Ford Prefect = To

Re: Creating web server

2000-04-14 Thread Moshe Zadka
On Fri, 14 Apr 2000, Boltyansky Boris wrote: > > Hi there! > > Can someone give me a link to a complete guide about making a web server > based on Linux from my computer?, or to write to the list and explain me > step by step how can I do that? It's very easy, really. There are many options to

Re: Creating web server

2000-04-14 Thread David Tabachnikov (NetHunter)
1. Take Mandrake 7 2. Install it in a server configuration (not required) 3. Read the Apache docs 4. RTFM 5. Copy your .htmls in /home/httpd/html, and your .pl's in /home/httpd/cgi-bin 6. RTFM 7. Read security stuff. (SecutiryFocus, RedHat's security advisory, etc...) Boltyansky Boris wrote: > >

RE: Creating web server

2000-04-14 Thread Idan A.
Hi. Step 1: Install Apache Web Server on your Linux box. http://www.apache.org/ Step 2: RTFM. It has great documentation. Best Regards, Idan A. ** I haven't lost my mind.. ** It is backed up on a tape somewhere. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PRO