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 -
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
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:
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
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]
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
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
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:
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
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
> 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
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...
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
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
14 matches
Mail list logo