Hi I am new to perl I would like your help for the following I want to write a script which would poll a web page,indefintely, say every two minutes, and...
Hi, A question about regexp (in perl) : I have two regexp'es : 1) ^[\x2D_%a-z\x91\x9B\x86A-Z\x92\x9D\x8F0-9]+$ 2) ^unknown$ I want (for good reasons) to...
Well, I hacked up a workaround using : $Filter = ^([^\x2D_%a-z\x91\x9B\x86A-Z\x92\x9D\x8F0-9]+)|(UnKnown)$ and reversing the test as: next if ( $Field =~...
... Adam> Frankly, I was influenced also a bit by exasperation. Adam> I have something that I need to do that *requires* Adam> me to either (a) know how to use...
Hi, this script should check whether a string contains an IP address or not. When I run it everything seems OK, but I miss the values of $ip and $string in the...
Hi Jeff, This was just the solution i was lookung for, thanks a bucket! The problem with reversing a logically straight forward regexp (as you have to, not...
Hi Leif Try: ____________________________________________________________________ #!/usr/bin/perl #ip_address.plx use warnings; use strict; my ($ip, $string); ...
Hello Does someone here have a way to use SQLs (or whatever else) between Perl and Microsoft Access? Thanks, Nadav Hareven P.S. Please don't tell me not to use...
... How are you accessing the db? CGI, command line, etc. What operating system are you using? IIS, Win32, *nix, etc. Do you have access to ODBC? Will you be...
First, you can "use DBI" and connect to your access DB if you have it registered on the server. That is what I am doing right now. Second, why is it not good,...
Hi I am trying to use the Module WWW::Mechanize. The aim is to scrape info from a web page and put it into an MySql Table. The info available on the web page...
From: Dustin Smith AKA GIDustin <dustin@...> ... Access was originaly designed as a "one user" database and has been known to break under heavy load...
... Sorry for not replying, but what help do you need exactly? I mean, what's wrong with your script? -- eman calso http://www.bloodpet.tk/ After living in New...
Hi all. a cgi script post data to a perl script located in a different network. that perl script address a module which opens a directory on that network and...
Hiya, I have two Perl scripts whose functionality I'd like to amalgamate. I've been using the first script to send mass mail to our users. It was fine for...
... I couldn't download your scripts (your server appears to be trying to execute them), so I'm not sure if your problem is how to send attachments or how to...
... How to send attachments is not the problem. I played with MIME-Lite and saw how it is done, albeit in a simple way. What I want is to combine the...
From: "roish1973" <roi__@...> ... If something works from the command line, but does not via CGI the most likely culprit is permissions (and the second...
Hi All, I have about 15 items in a flat file that I have set into an array and a template file that have the spots for each item marked off with the name in...
... Have you looked at the Text::Template module? It can do this. The docs are fairly straight forward. HTH, Charles K. Clarkson -- Mobile Homes Specialist 254...
... can ... as ... roi: Hi. thanks for your help. what i'm tring to do is to read a directory of a network server, and select one of the folder files. the...
... To access admin shares the easiest way is probably to add the web server user to the Administrators group. For non-admin shares you could add the web...
well I installed 5.8.4 Perl and tried to use alarm on win32 with strange results. $SIG{ALRM} = sub { die "Alarm!\n" }; alarm 2; my $ans = <STDIN>; chomp($ans);...
Obviously I have and tested the situation on my Solaris build of Perl 5.8.4. The code I supplied works as expected on Solaris Perl 5.8.4 but not on my Windows...
I get permission denied when trying to chmod a nfs mounted file or directory. I know I'm running as 'nobody' and that's the problem but what can I do? I'm in a...