Forum: Perl Jul 13th, 2007 |
| Replies: 6 Views: 3,596 Thnx Kevin.
tht was informative but i did it other way bcoz i also had to extract other patterns.
thnx again...... |
Forum: Perl Jul 12th, 2007 |
| Replies: 6 Views: 3,596 Hi guys,
i need help extracting e-mail id from the text file
can anybody please tell me how can i extract e-mail id and store it in a vaiable using perl regex.
(e-mail id is not always bound to... |
Forum: Perl Jun 21st, 2007 |
| Replies: 3 Views: 3,855 Just Use perl WWW::Mechanize module.
google for mwchanize perl.it will take you to cpan where u can download WWW::Mechanize module. Unzip it in cgi-bin and use it
like
$mech->get($url);
... |
Forum: Perl Jun 20th, 2007 |
| Replies: 12 Views: 4,409 problem solved...
i modified the script to logout after downloading every 100 files and log in again Now it is working fine.
thnx for suggestions. |
Forum: Perl Jun 19th, 2007 |
| Replies: 12 Views: 4,409 does Not make any difference.... |
Forum: Perl Jun 16th, 2007 |
| Replies: 12 Views: 4,409 tried with different ranges but same problem.
ranges tried (200-500, 235-500, 300-450). |
Forum: Perl Jun 15th, 2007 |
| Replies: 12 Views: 4,409 Here is my script
#!c:\perl\bin\perl.exe -w
print "done</br>";
#######################
use WWW::Mechanize; |
Forum: Perl Jun 15th, 2007 |
| Replies: 12 Views: 4,409 >>>First random guess is you've reached the max number of open files you're allowed to have because you're not closing any of them.
_____________________________
i dont hv any file descriptor... |
Forum: Perl Jun 13th, 2007 |
| Replies: 12 Views: 4,409 hi this is devesh,
i have a perl cgi script that downloads files from other site.
but i got this weired problem that the script stops responding after downloading exactly 100 files (any browser... |
Forum: Perl Jun 5th, 2007 |
| Replies: 4 Views: 4,123 neways i got it.........
$mech->get( "http://google.com", ":content_file" => "d:/google.htm");
thts how i could save tht page......
thnx for ur suggestion.
u were very near...
bye........ |
Forum: Perl Jun 5th, 2007 |
| Replies: 4 Views: 4,123 thnx lordspace,
but i want to automate saving page(ie. i want to save google or any other page to my hard drive.)
and i think mechanize should work for tht.
hope 2 c ur reply...
thnx... |
Forum: Perl Jun 4th, 2007 |
| Replies: 4 Views: 4,123 #!/perl/bin/perl -w
print "Content-type: text/html\n\n";
use WWW::Mechanize;
my $mech = WWW::Mechanize->new( );
$mech->agent_alias("Windows Mozilla");
use LWP::Simple;
use... |
Forum: Perl Apr 19th, 2007 |
| Replies: 5 Views: 2,440 i've created tht id for this hing only.........
thr r only 2 mails in tht inbox........
now wud u plz come 2 real world and understand wat the actual proble is !!!!!!!!!! |
Forum: Perl Apr 18th, 2007 |
| Replies: 5 Views: 2,440 c'mon man.
if u try 2 login with tht id and pwd u can login..
they do exist. |
Forum: Perl Apr 18th, 2007 |
| Replies: 5 Views: 2,440 Hi
i'm lil new to perl
wat i want to do is to login to my gmail account and click on the "Search mail" button using the perl script.
this is my script, but thr is a problem tht when i click on the... |