Beefy Boxes and Bandwidth Generously Provided by pair Networks RobOMonk
XP is just a number
 
PerlMonks  

Re: Re: Re: Crontab error!

by davorg (Chancellor)
on Apr 04, 2001 at 10:45 UTC ( [id://69613]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Re: Re: Crontab error!
in thread Crontab error!

Both LWP::Simple and CGI try to export a function called head and they have different prototypes. This can lead to badness - as you've seen.

However, you don't actually use either of these subroutines, so you just need to stop importing them (or, at least, one of them). Quickest fix is to change the use LWP::Simple line to:

use LWP::Simple 'get';
--
<http://www.dave.org.uk>

"Perl makes the fun jobs fun
and the boring jobs bearable" - me

Replies are listed 'Best First'.
Re: Re: Re: Re: Crontab error!
by Ozoz (Initiate) on Apr 04, 2001 at 10:56 UTC
    Thanks Dave! Though I still receieve an email, it's empty; just informing that the cronjob is done I think. No errors. thx :)
Re: Re: Re: Re: Crontab error!
by Ozoz (Initiate) on Apr 04, 2001 at 11:09 UTC
    500 error.log for the script:
    /home/usr254/html/sa/Global symbol "$sonuc" requires explicit package +name at ok-filmler.cgi line 8. Global symbol "$elle1" requires explicit package name at ok-filmler.cg +i line 15.

      You'll need to predeclare both of these variables. This is a good thing and one of the best reasons for using use strict.

      my $sonuc="/home/usr254/html/sa/filmler/HeadLine.tlt"; my $elle1= get("http://www.ntvmsnbc.com/news/FILM_front.asp");
      --
      <http://www.dave.org.uk>

      "Perl makes the fun jobs fun
      and the boring jobs bearable" - me

Re: Re: Re: Re: Crontab error!
by dws (Chancellor) on Apr 04, 2001 at 16:20 UTC
    Or change   use CGI qw/:standard :netscape :html3/; to   #use CGI qw/:standard :netscape :html3/; or remove that line entirely, since the script doesn't really use anything from CGI.pm

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://69613]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.