Hello, Actually the question is not directly related to Perl. But it can be used if the thing is clear. How people are managing news at e.g. cnn, BBC, etc....
6039
Nick Chirca
terra@...
Jul 1, 2000 10:33 am
I tried to run and I got this: Button search not included in form at /usr/lib/perl5/site_perl/5.005/HTTP/Request/Form.pm line 306. How do I fix this ? Can...
6040
Varatharajah, Pathman...
VaratharajaP@...
Jul 2, 2000 12:08 am
Unsubscribe...
6041
Robert L. Harris
Robert.L.Harris@...
Jul 3, 2000 1:47 pm
I need a perl script that can load a web page, enter 3 form entries, hit the submit button (java script I believe). Click a button under that page, fill...
6042
Jim Kinsey
jim.kinsey@...
Jul 3, 2000 3:49 pm
Hi; I am currently using a script which mirrors a file from a URL using the LWP::UserAgent mirror function, but which needs to supply credentials to access...
6043
Bernie Aua
bernie@...
Jul 3, 2000 4:37 pm
I've experienced problems using $ua->credentials(). Try using $request->authorization_basic($username, $password) which seems to work much better. Bernie ... ...
6044
Rajil Saraswat
rajil@...
Jul 3, 2000 7:27 pm
I am developing an application in which the users have to login thru a cgi script. onced logged they need to download certain files wherein i have placed...
6045
Gary Nielson
gnielson@...
Jul 4, 2000 1:28 am
I have installed libwww on other Linux systems. I encountered an error when running make test on this new system, that just causes make test to stop. I went...
6046
Rajil Saraswat
rajil@...
Jul 4, 2000 4:19 pm
thanks for this. but there are certain problems. once logged in how will i log them out. currently i am using cookies for authentication which i can change any...
6047
stujin
stujin@...
Jul 4, 2000 5:58 pm
are you using apache? have you looked into mod_perl (http://perl.apache.org/)? -j Tuesday, July 04, 2000, 9:20:50 AM, Rajil Saraswat wrote: RS> thanks for...
6048
Junichi
jfujino@...
Jul 5, 2000 3:11 pm
I'm trying to access URL with SSL + basic authentication. I wrote a script as follows; ************************************** #!/usr/local/bin/perl use...
6049
Jack Barnett
jbarnett@...
Jul 5, 2000 4:16 pm
What you probably want is http://cpan.org/authors/id/K/KW/KWILLIAMS/Apache-AuthCookie-2.011.tar.gz It is kinda tricky to use (ie. make sure you have a couple...
6050
Rajil Saraswat
rajil@...
Jul 5, 2000 4:27 pm
thanks for the help. i will check them outright....
6051
Robert Carl Rice
macbob@...
Jul 5, 2000 7:40 pm
Help: I recently purchased and installed Mac OS X Server - partly because I thought it would be a good platform for my Perl scripts. Perl runs but I'm having...
6052
Sean M. Burke
sburke@...
Jul 5, 2000 7:52 pm
... It may be. What /is/ the trouble, specifically? In my experience, many Perl installs on Rhapsody (or whatever they're calling it now) boxes are from a...
6053
Yewen Tang
yewent@...
Jul 5, 2000 11:26 pm
I want to program SSL over socket communication using Perl. Is IO::Socket::SSL a right module?...
6054
Yewen Tang
yewent@...
Jul 6, 2000 9:27 pm
Sampo said in the README file of his Perl Module Net_SSLeay that HP-UX will give some problems when installing. I've got them when install a Perl Module...
6055
PQ
nymeian@...
Jul 6, 2000 10:37 pm
Hi, I was using LWP::UserAgent to acess "html". I need to access "htmls". Could anybody tell me how? Thanks, __________________________________________________...
6056
Yewen Tang
yewent@...
Jul 7, 2000 6:48 pm
Has anybody ever installed Crypto-SSLeay module on HP-UX? I got error when it links with OpenSSL library. yewen...
6057
Hugo Haas
hugo@...
Jul 7, 2000 10:28 pm
Hi. The man page says about handlers: Events Handlers for the following events can be registered: [..] default This event is triggered for events that do not...
6058
Michael A. Chase
mchase@...
Jul 8, 2000 3:18 am
Perhaps you could give us an example of the text you are trying to parse that includes a comment that gets passed to the 'comment' event handler, but doesn't...
6059
Hugo Haas
hugo@...
Jul 8, 2000 4:06 am
... Sorry, I realized that I sent my example without enough details but you replied before I could submit an example. ... I was running a test on an excerpt of...
6060
Michael A. Chase
mchase@...
Jul 8, 2000 4:17 am
I quote: If new() is called without any arguments, it will create a parser that uses callback methods compatible with version 2 of C<HTML::Parser>. See the...
6061
Hugo Haas
hugo@...
Jul 8, 2000 4:51 am
... I missed that! Sorry for the trouble. It works much better like that indeed. Thanks, Hugo...
6062
Reiner Buehl
reiner_buehl@...
Jul 10, 2000 6:43 am
I did it successfuly. What errors do you get? You should double-check that you have used the -fpic flag if you compiled openssl with gcc. For HP cc the same is...
6063
Benjamin Franks
bsf@...
Jul 10, 2000 6:57 pm
There was talk some a few weeks back about locking down on a solution for SSL Posting with LWP. One of the messages showed code for using NET::SSL to do the...
6064
Chris Dunn
Chris.Dunn@...
Jul 10, 2000 7:15 pm
I have been able to do SSL posts with cookies using Red Hat secure server (basically apache with ssl) as a proxy. I never have tried to explicitly create a...
6065
tony@...
Jul 10, 2000 10:25 pm
Hey Chris, My version of UserAgent.pm has redirect_ok returning a 0 if the method is POST, do you know why this is in the default behavior? I've been having...
6066
. Hima
himahari@...
Jul 10, 2000 11:34 pm
Hi, I will be obliged if you can tell me how to get a list of all the source URLs to a particular webpage. In other words, given a URL how can we get a list of...
6067
Michael A. Chase
mchase@...
Jul 11, 2000 12:52 am
It is fairly simple to parse a web page to see all the pages it points to. That's one of the things you do with HTML-Parser or HTML-Tree. To know _all_ web...