errors

2002-08-02 Thread Kyle Babich
My error log is giving me this: [Fri Aug 2 07:02:39 2002] [error] [client 63.208.116.140] Premature end of script headers: /home/sites/kmb/www/public_html/njindenial/index.pl syntax error at /home/sites/kmb/www/public_html/njindenial/index.pl line 20, near my Global symbol $con requires

errors

2002-08-02 Thread Kyle Babich
My error log is giving me this: [Fri Aug 2 07:02:39 2002] [error] [client 63.208.116.140] Premature end of script headers: /home/sites/kmb/www/public_html/njindenial/index.pl syntax error at /home/sites/kmb/www/public_html/njindenial/index.pl line 20, near my Global symbol $con requires

get data over ssh

2002-08-02 Thread Rob
Hi, I don't have any relevant code to post but what I would like to do is; from a server behind a firewall I would like to ssh to an Internet server and grep a line out of the password file into my script running behind the firewall. Any ideas if this is possible or what category on the CPAN

Fwd: errors

2002-08-02 Thread Kyle Babich
Sorry, forgot to attach it. On Fri, 2 Aug 2002 12:18:54 UT, Kyle Babich [EMAIL PROTECTED] said: My error log is giving me this: [Fri Aug 2 07:02:39 2002] [error] [client 63.208.116.140] Premature end of script headers: /home/sites/kmb/www/public_html/njindenial/index.pl syntax error at

Re: Fwd: errors

2002-08-02 Thread Felix Geerinckx
on Fri, 02 Aug 2002 12:24:29 GMT, [EMAIL PROTECTED] (Kyle Babich) wrote: Sorry, forgot to attach it. Please don't attach files to your posts. You can always cut and paste the relevant code directly into your message body. Your error is in line 13, where you write: [one line wrapped] print

RE: get data over ssh

2002-08-02 Thread Joel Hughes
Hi Rob, I'm not a 100% sure of the setup your trying to achieve here but if you are asking can I perform an HTTP request over an SSH connection then I believe the answer is yes and is achieved via SSH port forwarding which basically means that you connect to the SSH server on your local machine

Re: To upload file from client to Appache server (WNNT)

2002-08-02 Thread Bruce Ambraal
Check out the errors I am getting when I run the bruce.html on my Appache (Apache/1.3.26 Server at 165.25.207.246 Port 80) my Perl have been install in dir c:/program files/perl/bin. When I view any Perl program via the web then I get the same errors. What am I doing wrong. Please help

Re: flock(); with strict subs

2002-08-02 Thread Steve Grazzini
Kyle Babich [EMAIL PROTECTED] wrote: How do I flock(); with strict subs in effect? flock is a builtin. flock($fh, 2); If you want the symbolic constants, you need to use Fcntl qw/:flock/; flock($fh, LOCK_EX); -- Steve perldoc -qa.j | perl -lpe '($_)=m((.*))' -- To unsubscribe,

Re: To upload file from client to Appache server (WNNT)

2002-08-02 Thread Connie Chan
I didn't read the rest of your code, but I found a very visible error You say your perl(perhaps you mean the comipler) is installed at C:/progra~1/perl/... but your code write it as : #!E:/Perl/bin/perl -wT So I guess everything will going wrong Rgds, Connie - Original