From: Tom G. <tg...@da...> - 2003-04-13 21:50:45
|
Hello all, I am trying to get IDS installed on web server at an ISP with no luck. ImageMagick-5.4.3.11 and IDS-0.82 are installed. Both ids/index.cgi and ids/admin/index.cgi causes a Internal Server Error from a browser. The ids/admin/preferences.cgi works fine though. Running them from a bash prompt gives: bash-2.05a$ perl index.cgi perl: constitute.c:2015: ReadImage: Assertion `image_info->signature == 0xabacadab' failed. Aborted (core dumped) I tried to google my way out of this but nothing seemed to apply. Any thoughts? Thanks Tom |
From: Ashley M. K. <as...@pc...> - 2003-04-14 00:34:03
|
Tom Galvin wrote: >bash-2.05a$ perl index.cgi >perl: constitute.c:2015: ReadImage: Assertion `image_info->signature == >0xabacadab' failed. >Aborted (core dumped) > > What version of Image::Info? -- H| I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner <mailto:as...@pc...> . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. |
From: Tom G. <tg...@da...> - 2003-04-14 01:09:52
|
> > > > > What version of Image::Info? > > Ashley M. Kirchner > > Operating System Linux Kernel Version 2.4.18-19.7.xsmp Apache Version 1.3.27 (Unix) Perl Version 5.006001 Image::Info Version 1.12 |
From: Ashley M. K. <as...@pc...> - 2003-04-14 07:07:06
|
On Sun, 13 Apr 2003, Tom Galvin wrote: > Image::Info Version 1.12 1.12 is known to have problems. Downgrade to 1.11 which is in the delegates section on SF. -- A |
From: Tom G. <tg...@da...> - 2003-04-14 08:05:11
|
> > Image::Info Version 1.12 > > 1.12 is known to have problems. Downgrade to 1.11 > which is in the delegates section on SF. > > -- A Got it, but the problem is that this server is at an ISP. I don't know if I can have them downgrade the module just for me. Is this a known compatibility issue with IDS? Thanks in advance Tom |
From: Ashley M. K. <as...@pc...> - 2003-04-14 09:03:41
|
Tom Galvin wrote: >Got it, but the problem is that this server is at an ISP. I don't know >if I can have them downgrade the module just for me. Is this a known >compatibility issue with IDS? > > This is an issue with Image::Info - it fails its own internal EXIF tests. I haven't had a chance to try installing the one library they're pointing at. Maybe they switched libraries, I don't know. -- H| I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner <mailto:as...@pc...> . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. |
From: Jeff M. <jef...@vi...> - 2003-04-14 14:05:26
|
On Mon, 2003-04-14 at 04:04, Tom Galvin wrote: > > > Image::Info Version 1.12 > > > > 1.12 is known to have problems. Downgrade to 1.11 > > which is in the delegates section on SF. > > > > -- A > > Got it, but the problem is that this server is at an ISP. I don't know > if I can have them downgrade the module just for me. You may want to try the Makefile I posted last night. It installs the modules in the same directory as ids. > Is this a known > compatibility issue with IDS? > > Thanks in advance > Tom > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > IDS-devel mailing list > IDS...@li... > https://lists.sourceforge.net/lists/listinfo/ids-devel -- Jeff Macdonald <jef...@vi...> Into birding? Check out http://www.migratus.com |
From: Bruno T. <ba...@is...> - 2003-04-14 19:44:39
|
Try this: download the 1.11 version from here http://search.cpan.org/author/GAAS/Image-Info-1.11/ unpack it to , lets say, ~you/image_info/lib/Image/Info.pm". replace in every IDS module the string "use Image::Info" for "require /home/you/image_info/lib/ Should make your IDS use the right version of Image::Info without making your ISP downgrade it. Hope it works. On Mon, 2003-04-14 at 09:04, Tom Galvin wrote: > > > Image::Info Version 1.12 > > > > 1.12 is known to have problems. Downgrade to 1.11 > > which is in the delegates section on SF. > > > > -- A > > Got it, but the problem is that this server is at an ISP. I don't know > if I can have them downgrade the module just for me. Is this a known > compatibility issue with IDS? > > Thanks in advance > Tom > > > > ------------------------------------------------------- > This sf.net email is sponsored by:ThinkGeek > Welcome to geek heaven. > http://thinkgeek.com/sf > _______________________________________________ > IDS-devel mailing list > IDS...@li... > https://lists.sourceforge.net/lists/listinfo/ids-devel -- Bruno Tavares <bru...@is...> Novis Telecom, S.A. - Engenharia / ISP <http://www.novis.pt> Edifício Novis Estrada da Outurela, 118 - A 2795-606 Carnaxide Tel +351-210104521 - Fax: +351-210104301 |
From: Jeff M. <jef...@vi...> - 2003-04-14 19:57:00
|
On Mon, 2003-04-14 at 15:44, Bruno Tavares wrote: > Try this: > > download the 1.11 version from here > http://search.cpan.org/author/GAAS/Image-Info-1.11/ > > unpack it to , lets say, ~you/image_info/lib/Image/Info.pm". > > replace in every IDS module the string "use Image::Info" for "require > /home/you/image_info/lib/ > > Should make your IDS use the right version of Image::Info without making > your ISP downgrade it. > > Hope it works. Installing CPAN modules in a location outside of the main perl tree is usually done like so: 1) wget cpan-module 2) untar it 3) cd to cpan module directory created by tar 4) perl Makefile.PL PREFIX=/path/to/writable_dir/lib LIB=/path/to/writable_dir/lib (all on one line) 5) make && make test && make install 6) modify code it include /path/to/writable_dir/lib example: use lib qw(/path/to_writable_dir/lib) My posting yesterday with the subject "makefile to install delegates" touches on this. So far no comments. -- Jeff Macdonald <jef...@vi...> Into birding? Check out http://www.migratus.com |
From: Ashley M. K. <as...@pc...> - 2003-04-14 20:01:53
|
Jeff Macdonald wrote: >Installing CPAN modules in a location outside of the main perl tree is >usually done like so: > >1) wget cpan-module >2) untar it >3) cd to cpan module directory created by tar >4) perl Makefile.PL PREFIX=/path/to/writable_dir/lib >LIB=/path/to/writable_dir/lib (all on one line) >5) make && make test && make install >6) modify code it include /path/to/writable_dir/lib >example: use lib qw(/path/to_writable_dir/lib) > >My posting yesterday with the subject "makefile to install delegates" >touches on this. So far no comments. > > It's monday...I'm tied up with a down network... Care to wrote a README titled 'In case you have no other choice but to do things the hard way, this is how..." <grin> I'll go over your stuff tonight and hopefully commit them (to the looney bin - I mean SF). -- W | I haven't lost my mind; it's backed up on tape somewhere. +-------------------------------------------------------------------- Ashley M. Kirchner <mailto:as...@pc...> . 303.442.6410 x130 IT Director / SysAdmin / WebSmith . 800.441.3873 x130 Photo Craft Laboratories, Inc. . 3550 Arapahoe Ave. #6 http://www.pcraft.com ..... . . . Boulder, CO 80303, U.S.A. |