On 02-05-01 23:54:39 CEST, PavanKumar Sura wrote: > Hello friends, > > I guess ca script could not find the Configuration.pm because of my wrong > way of adding paths in use lib.
you shouldn't need to add any 'use lib's, the ca script has a 'use lib' that points to the installation dir already. > I am not good at perl, I was adding the additional paths this way > use lib '/.././some_directory /../../some_other_directory'; that's a directory with a space in its name, legal but probably non-existant. > Now I changed it to > use lib '/../../../some_dir'; > use lib '/../../../some_other_dir'; > and so on... this doesn't make sense. you start with /, the root dir. then you go one up, which is the root dir. and another one up, still the root dir. > So now I guess all the errors are due to the DB_File.pm and it's assocaites. > > Can some once advice me how to configure openca so that all the required > files are accessable by openca. For instance now it is looking for > auto/DB_File/autosplit.ix and obviously cannot locate it as autosplit.is is > is at /home/pki/perl/lib/5.6.1/auto/Getopt/Long/ so even if I add this path > to lib in ca script it is not happy as it is expecting the file under > auto/DB_File directory of > /home/pki/public_html/pavansura/openca-0.9/modules/perl5 'use lib' does some magic, it makes perl look into certain subdirectories as well. one doesn't have to add them manually. > I guess there is something that I need to configure... you should install your own additional modules into openca's perl5 directory, so that they can be found by the single 'use lib' that is in the scripts already. > Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp. why should i want to explore MSN? > MSN Photos is the easiest way to share and print your photos: > http://photos.msn.com/support/worldwide.aspx really? rj _______________________________________________________________ Have big pipes? SourceForge.net is looking for download mirrors. We supply the hardware. You get the recognition. Email Us: [EMAIL PROTECTED] _______________________________________________ Openca-Users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/openca-users
