Re: CGI - re-writing the content of the cell on the web page

2004-12-15 Thread Joe Youngquist
I think what your after is: you'll need to have includes using exec turned on, I'm pretty sure that the default is off on most servers... - Original Message - From: "Greg Wardawy" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 15, 2004 1:28 PM Subject: Re: CGI -

Re: Microsoft's SP2 Firewall blocking Net::FTP

2004-09-03 Thread Joe Youngquist
Thanks Lee for the response, but it's a no go. I guess in SP2 they removed the ability of "fine grain control" of what applications have access to down to port ranges and I think this is where the Net::FTP is being blocked at. >From tests, each time I run the script the port on the local machine

Re: Any Suggestions

2004-05-20 Thread Joe Youngquist
wxPerl is also a solid option. If your only developing for Windows, then win32::GUI is an option too - though in my past experience, wxPerl is the better of the GUI options out there (not to create a flame - just mho). - Original Message - From: "Wong, Danny H." <[EMAIL PROTECTED]> To:

Re: MySQL/Perl

2004-04-09 Thread Joe Youngquist
from the DBI docs: the connect string is: $dbh = DBI->connect($data_source, $username, $auth, \%attr); where data_source = "DBI:mysql:NameOfDatabase:HostNameOrIP", where username = "allowable username" (try root first, root should always have permissions to databases, so the removes a possible us

Re: Unusual Tk question.

2004-02-06 Thread Joe Youngquist
Not to create a flame war on the best GUI tool kit to use, but are you stuck to using only Tk? If not, then take a look at wxPerl (http://wxperl.sourceforge.net/) you can tie output to a log window pretty easily... - Original Message - From: "Beckett Richard-qswi266" <[EMAIL PROTECTED]

Re: DBI Question

2004-01-30 Thread Joe Youngquist
What I think your looking for are the column names in order (the hash method returns the column names in a seemingly random order) So what you want to use is: my $sth = $dbh->prepare("SELECT col1, col2, col3 FROM table1 WHERE 1"); $sth->execute(); my $arrayref = $sth->{NAME}; foreach my $colName

SIG Help - "Terminating on signal SIGALARM(14)"

2004-01-27 Thread Joe Youngquist
Hello all,   This is my first time into trying to deal with SIGALARMS, mostly due to the fact that this is the first time I'm getting applications dieing out with a message :   "Terminating on signal SIGALARM(14)"   I did a dump of what is held in the %SIG and 14 is undef.   I'm not sure what

Re: parsing text

2003-12-10 Thread Joe Youngquist
a space between them. Once I do, this would be the first time I'd have the joy of contributing to the Perl community. JY - Original Message - From: "Lee Goddard" <[EMAIL PROTECTED]> To: "Joe Youngquist" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent:

Re: parsing text

2003-12-10 Thread Joe Youngquist
a than what I had thought of. JY - Original Message - From: "$Bill Luebkert" <[EMAIL PROTECTED]> To: "Joe Youngquist" <[EMAIL PROTECTED]> Sent: Wednesday, December 10, 2003 7:35 AM Subject: Re: parsing text > Joe Youngquist wrote: > > Hello li

parsing text

2003-12-09 Thread Joe Youngquist
Hello list,   I've been trying to figure out a generalized method of parsing space formatted text to outout into html tables.  The data is verly likely written out using Perl Reports and Pictures, has anyone come up with a general method?   Here's a few examplesof the text that I'd format to

Re: Threads In Perl?

2003-10-23 Thread Joe Youngquist
> I was wondering if there is any Thread support in Perl? Yes, Perl 5.8 > If there is any info on this topic, links would be appreciated. Try here: http://aspn.activestate.com/ASPN/docs/ActivePerl/lib/threads.html - Original Message - From: "Scott Purcell" <[EMAIL PROTECTED]> To: <[EMAIL

Re: newline...be gone

2003-10-08 Thread Joe Youngquist
your 'newline' character might be chr(13) so a chop might do better for you or my $newline = chr(13); $line =~ s/$newline//; ... HTH JY - Original Message - From: "David Byrne" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, October 08, 2003 3:08 PM Subject: newline...

Re: Automate data download from internet

2003-09-24 Thread Joe Youngquist
The LWP docs have an example of using Usernames and Passwords - Original Message - From: "Jonathan Epstein" <[EMAIL PROTECTED]> To: "Noushad Dawood" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, September 24, 2003 8:12 AM Subject: Re: Automate data download from internet

Re: counting files with a certain extension

2003-04-04 Thread Joe Youngquist
opendir(DIR, "path_to_/logon/input/") or die "\nCannot open Dir to read.\nError: $!"; my @contents = readdir DIR; closedir(DIR); my @log_files = grep (/\.log$/) @contents; foreach (@log_files) { rename("path_to_/login/inputs/$_", "path_to_/logon_logs/$_"); print "Moved: path_to_/login/inp