From: John M. <mo...@mu...> - 2001-07-02 20:44:37
|
OK, you can get the untested, may-change-at-any-time, unoptimized,=20 developmental version of IDS 1.0 here: http://arwen.hn.org/~john/ids-devel/ There is no support for comments, no admin CGI, and the previewmaker and=20= updater scripts don't work. I doubt you'll see good performance on a P166. ImageMagick requires a=20 lot of horsepower and eats quite a bit of RAM. This version of IDS runs _a lot_ faster under mod_perl=96 I think it's=20= currently slower than 0.711 when not under mod_perl. Here's the appropriate section from my httpd.conf: ________________ Alias /ids/ /usr/local/apache/ids/ PerlModule Apache::Registry <Location /ids> SetHandler perl-script PerlHandler Apache::Registry Options ExecCGI <IfModule mod_dir.c> DirectoryIndex index.cgi </IfModule> allow from all PerlSendHeader On </Location> <Location /ids/albums> SetHandler default-handler </Location> <Location /ids/data> SetHandler default-handler </Location> <Location /ids/cache> SetHandler default-handler </Location> <Location /ids/themes> SetHandler default-handler </Location> PerlRequire /usr/local/apache/conf/startup.pl ________________ and startup.pl: ________________ #!/usr/bin/perl use strict; # Extend @INC if needed use lib qw(/usr/local/apache/ids/lib); # Make sure we are in a sane environment. $ENV{MOD_PERL} or die "not running under mod_perl!"; use Apache::Registry; use CGI::Application; use Config::General::Extended (); use POSIX (); use FileHandle (); use File::Basename (); use Time::Local (); use File::Find (); use File::Path (); use Image::Magick (); use Image::Info qw(image_info); # Tell me more about warnings use Carp (); $SIG{__WARN__} =3D \&Carp::cluck; # Load CGI.pm and call its compile() method to precompile # (but not to import) its autoloaded methods. use CGI qw(-compile :all); 1; ________________ Enjoy! John On Sunday, July 1, 2001, at 05:26 PM, Brian Wellington wrote: > Is there any chance of getting a snapshot of the IDS 1.0 rewrite? I=20= > just > found IDS today, and it looks really cool, but the current release = runs > very slowly on my old (P166) web server. I'd be very interested in=20 > trying > out the new code, even if it's not finished yet. > > Thanks, > Brian > > > _______________________________________________ > IDS-devel mailing list > IDS...@li... > http://lists.sourceforge.net/lists/listinfo/ids-devel |