Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

14
votes
13answers
2k views

What is the best way to do web scripting/web macros?

I'm trying to streamline some of our tasks at my place of work, and it seems that quite a lot of our developers' time is spent doing semi-mechanical tasks on the web (specifically, editing online ...
4
votes
1answer
82 views

Difference between Apache rules to block libwww-perl

I want to know the difference between these rules and which is most effective to block libwww-perl with the file .htaccess SetEnvIfNoCase User-Agent "libwww-perl" bad_bot Order Deny,Allow Deny from ...
1
vote
1answer
609 views

«HTTP::Message content must be bytes» error when trying to post

I have the following code: ... sub setImage { my $self=shift; my $filename=shift; unless(-r $filename) { warn "File $filename not found"; return; } my $imgn=shift; ...
0
votes
2answers
156 views

Why does HTTP::Message::decodable complain about “Can't use an undefined value as a HASH reference”?

I'm getting a Can't use an undefined value as a HASH reference error trying to call HTTP::Message::decodable() using Perl 5.10 / libwww installed on Debian Lenny OS using the aptitude package manager. ...