Re: send a HUP signal

2005-07-24 Thread Peter Scott
On Sat, 23 Jul 2005 13:07:51 +0100, Dan wrote: i don't even know if this is going to be possible, but i'll ask anyway. my perl program runs as a constant process in the background. is there anyway i can make another program/script send a HUP, or any kind of, signal to the process, to say,

Image::Magick speed issue

2005-07-24 Thread Jan Eden
Hi, I thought about using Image::Magick to create thumbnails for image galleries (either 10 or 5 thumbnails per page) on the fly and tested the following: #!/usr/bin/perl use strict; use warnings; use Image::Magick; use CGI; my $q = new CGI; my %parameters = $q-Vars(); my $image =

Re: Image::Magick speed issue

2005-07-24 Thread Jan Eden
Hi, zentara wrote on 24.07.2005: On Sun, 24 Jul 2005 11:22:18 +0200, [EMAIL PROTECTED] (Jan Eden) wrote: Hi, I thought about using Image::Magick to create thumbnails for image galleries (either 10 or 5 thumbnails per page) on the fly and tested the following: ... Unfortunately, this is

Re: How to use % in MySQL SQL statement from Perl?

2005-07-24 Thread Bob Showalter
Siegfried Heintze wrote: The following code works with perl/MySQL. If I comment the second line, however, it does not work. No error messages and no results. If I use the MySQL Enterprise console and type in my first SELECT statement that includes the LIKE clause, it works. I'm stumped. There

IO::Scalar and Archive::Zip

2005-07-24 Thread Gerhard Meier
Hi, I want to fetch a zip file from the net with LWP::UserAgent and then use Archive::Zip to manipulate it. But I don't want to store the zip file on the disk (if possible). This is where IO::Scalar came in. But it seems that Archive::Zip doesn't work together with IO::Scalar. Here is a litte