Kernel Panic because of Perl?

2001-06-13 Thread Bruno Veldeman
Hi all, Since I have been writing Perl scripts for CGI and non-CGI I have been experiencing strange things on my server. It always says: Trying to kill the idle proccess. and then : Kernel Panic with a lot of numbers which are not logged. Can Perl cause this kind of side effects? Bruno.

Re: CGI parser and stuff

2001-06-10 Thread Bruno Veldeman
to vi, vin, emacs,... you name it. mc really does the job for me. Bruno Veldeman A Perl newbie, yes, but a quick learning one!

Re: CGI parser and stuff

2001-06-10 Thread Bruno Veldeman
> Is there a shareware/freeware Perl development environment? (As in comments > are this color, constants are that color, a real-time debugger, etc?) I use midnight commander. Does syntax highlighting. On a RH Linux install it starts with mc. Some usefull keys: ctrl-o : switch between 2 line

Re: Re: Regex question

2001-06-09 Thread Bruno Veldeman
he array. So what is the "#" for? Is it like ($dirs-1) or something? ---- - Original Message - From: "fliptop" <[EMAIL PROTECTED]> To: "Bruno Veldeman" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Saturday, June 09, 20

Re: How to truncate a string?

2001-06-06 Thread Bruno Veldeman
Thanks, that was quick. The funny thing is that I looked at the function and didn't see it :-) Bruno - Original Message - From: "Eduard Grinvald" <[EMAIL PROTECTED]> To: "Bruno Veldeman"

How to truncate a string?

2001-06-06 Thread Bruno Veldeman
Hi, I have been looking for a function to truncate a string at a given lenght, but am lost. None of the functions seen to do this, I remember BASIC having A$ = left$("1234567890",5). Does perl have this function? What I want is to cut off all strings at a given lenght if the string exeeds it,

Re: Link check problem.

2001-06-06 Thread Bruno Veldeman
Bruno. - Original Message - From: "Chris Lott" <[EMAIL PROTECTED]> To: "'Bruno Veldeman'" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, June 06, 2001 8:45 PM Subject: RE: Li

Re: What is this?

2001-06-06 Thread Bruno Veldeman
Hi does not look like perl to me! Bruno - Original Message - From: "Sara Strader" <[EMAIL PROTECTED]> To: "Perl List" <[EMAIL PROTECTED]> Sent: Wednesday, June 06, 2001 8:02 PM Subject: What is this? > Is this a Perl Script?

Re: Link check problem.

2001-06-06 Thread Bruno Veldeman
lost, any ideas? Bruno - Original Message - From: "Bruno Veldeman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, June 06, 2001 1:38 PM Subject: Link check problem. > Hi, > > I am do

Re: Perl & the web

2001-06-06 Thread Bruno Veldeman
Hi, > Can anyone tell me of some uses of perl on the web. I know that guestbooks > and forms can be done in perl but I'd like to know of more, Perl can do what you want! Just write the code I am writing a program for automated link management. It gives the visitor the posibility to add links,

Re: Re:Link check problem

2001-06-06 Thread Bruno Veldeman
Hi, I just want to know if the link is working, so I can mark the link as bad if needed. What response code should I look for? I thought 200 was OK code as the ->is_success returns 1 if response is 2xx. Thanks for the responses, Bruno

Link check problem.

2001-06-06 Thread Bruno Veldeman
>request($request); if ( $response->is_success ){ return(1); } else { return(0); } } If I try it on http://www.grn.es it works ($response->code = 200) But with http://encarta.msn.es it returns 0. ($response->code = 500) Am I missing something? Bruno Veldeman linkpagegen.pl