2010-07-05T06:05:23 *** dbs has joined #evergreen 2010-07-05T06:07:20 *** cerpy has joined #evergreen 2010-07-05T07:12:59 *** dbs has quit IRC 2010-07-05T07:29:19 *** artunit has quit IRC 2010-07-05T07:59:36 *** mck9 has joined #evergreen 2010-07-05T08:08:34 *** artunit has joined #evergreen 2010-07-05T08:09:33 *** granitize has joined #evergreen 2010-07-05T08:14:46 *** natschil has joined #evergreen 2010-07-05T08:24:21 *** collum has joined #evergreen 2010-07-05T08:25:47 *** alxp has joined #evergreen 2010-07-05T08:34:08 *** natschil has quit IRC 2010-07-05T08:55:14 *** dbs has joined #evergreen 2010-07-05T09:08:38 *** _bott_ has quit IRC 2010-07-05T09:09:03 *** _bott_ has joined #evergreen 2010-07-05T10:40:04 *** picmoon has joined #evergreen 2010-07-05T11:04:04 *** shadowspar has quit IRC 2010-07-05T11:08:41 *** shadowspar has joined #evergreen 2010-07-05T11:28:29 *** picmoon has quit IRC 2010-07-05T11:35:45 *** collum has quit IRC 2010-07-05T11:46:20 *** shadowspar has quit IRC 2010-07-05T11:48:08 *** cerpy has quit IRC 2010-07-05T11:57:28 *** dbs has quit IRC 2010-07-05T12:13:47 *** picmoon has joined #evergreen 2010-07-05T12:58:36 *** Granitize1 has joined #evergreen 2010-07-05T13:05:16 *** Granitize1 has left #evergreen 2010-07-05T13:20:33 *** jeffdavis has joined #evergreen 2010-07-05T13:24:21 *** picmoon has quit IRC 2010-07-05T13:28:01 *** shadowspar has joined #evergreen 2010-07-05T13:41:35 *** agJohn has joined #evergreen 2010-07-05T13:51:26 Anyone else fiddling w/ 1.6.1.1? I'm not getting the Apache httpd to start with this line in /etc/apache2/startup.pl (not sure how important this is for the present, but is this a deployment problem or what?) 2010-07-05T13:51:28 use OpenILS::WWW::PasswordReset ('/openils/conf/opensrf_core.xml'); 2010-07-05T13:51:29 apache2/error.log says: 2010-07-05T13:51:31 [Mon Jul 05 11:21:24 2010] [error] "/openils/conf/opensrf_core.xml" is not exported by the OpenILS::WWW::PasswordReset module\nCan't 2010-07-05T13:51:32 continue after import errors at /etc/apache2/startup.pl line 9\nBEGIN failed--compilation aborted at /etc/apache2/startup.pl line 9 2010-07-05T13:51:34 2010-07-05T13:55:37 you should be safe to comment that line out -- you won't have password reset support, though. i'm wondering what led to that problem, though. 2010-07-05T13:57:02 oh! you probably want this line instead: 2010-07-05T13:57:22 er, no... nevermind. 2010-07-05T14:05:45 i think PasswordReset.pm needs an import sub, perhaps as simple as this: 2010-07-05T14:05:46 sub import { 2010-07-05T14:05:46 my $self = shift; 2010-07-05T14:05:46 $bootstrap = shift; 2010-07-05T14:05:46 } 2010-07-05T14:08:45 it currently has no import sub, and i don't think there's anything that implicitly grants it one. 2010-07-05T14:10:11 all of the other modules called from startup.pl have an import subroutine. I still think I must be missing something, though. 2010-07-05T14:10:47 commenting out that line in startup.pl should be safe (but you won't have fully-working self-serve password resets), or adding that import subroutine to WWW/PasswordReset.pm 2010-07-05T14:14:18 jeff: import is usually inherited from a module like Exporter 2010-07-05T14:15:40 is a custom-defined import sub required to support the way that the use statements in startup.pl pass a single argument (the opensrf_core.xml path)? 2010-07-05T14:16:05 i don't know enough to say there.... 2010-07-05T14:16:22 all of the other modules called from startup.pl define their own import sub that shifts the arguments into their named variables, so i'm wondering how PasswordReset.pm even works in testing. 2010-07-05T14:17:02 (could be as simple as 'it inherits a reasonable default, except in [some environment where it doesn't]') 2010-07-05T14:17:19 peeking at dbs' trunk image to see if there's a clue there. 2010-07-05T15:08:31 Yeah, I just commented it out for the moment, but I'm thinking this is something that ought to be fixed before 1.6.1.1 goes GA. 2010-07-05T15:09:31 agJohn: can you pastebin your complete startup.pl here? http://paste.lisp.org/new/evergreen 2010-07-05T15:09:46 Sure thing. Just a sec... 2010-07-05T15:10:22 thanks. gotta' run! 2010-07-05T15:11:53 agJohn pasted "startup.pl" at http://paste.lisp.org/display/112167 2010-07-05T15:17:33 agJohn: what version of perl is this? 2010-07-05T15:20:56 Hmmm. Good question.... The base of the install is Ubuntu 8.04 and I just did all the basic upgrades to everything.... Here's what I ended up with: 2010-07-05T15:20:58 root@nclarc-ub4:/var/log# perl -v 2010-07-05T15:20:59 This is perl, v5.8.8 built for x86_64-linux-gnu-thread-multi 2010-07-05T15:22:42 and the 1.6.1.1 is from http://evergreen-ils.org/downloads/Evergreen-ILS-1.6.1.1.tar.gz or from somewhere else? 2010-07-05T15:24:48 Same Perl version is in use on working 1.6.0.4 install (same underlying OS) 2010-07-05T15:24:50 EG is from: http://www.evergreen-ils.org/downloads/Evergreen-ILS-1.6.1.1.tar.gz (same as your link) 2010-07-05T15:25:21 Well, it's got a www. on the front of the host name.... 2010-07-05T15:25:43 should be the same file. i just wondered if you had the tarball, or pulled from svn, etc. 2010-07-05T15:25:51 resolves to the same IP (of course). 2010-07-05T15:26:08 Me and BP, we're into tarballs.... 2010-07-05T15:26:36 well, commenting out the line should get you to a point of being able to test the rest, and i think adding an import sub is the correct fix, but i'm still confused as to why you're seeing what you're seeing. i'll dig/learn some more later. 2010-07-05T15:26:46 thanks for mentioning it! 2010-07-05T15:26:56 NP. Sorry you're working on the holiday too! 2010-07-05T15:27:26 the holiday was yesterday. ;-) 2010-07-05T15:27:51 Riiiight... 2010-07-05T15:29:15 You know the vote and signing of the D of I was on the 2nd? John Adams wrote to Abigail that the 2nd would be remembered and celebrated; ah well. So much for "original intent".... 2010-07-05T15:39:51 *** alxp has quit IRC 2010-07-05T15:50:56 *** jeffdavis has left #evergreen 2010-07-05T16:01:31 unsurprisingly, we celebrate the date of publication 2010-07-05T16:09:25 *** granitize has quit IRC 2010-07-05T16:23:05 *** pmplett has joined #evergreen 2010-07-05T19:37:53 *** artunit has quit IRC 2010-07-05T19:38:13 *** artunit has joined #evergreen 2010-07-05T21:08:33 *** JMCraig has joined #evergreen 2010-07-05T21:08:34 *** agJohn has quit IRC 2010-07-05T21:08:34 *** JMCraig is now known as agJohn 2010-07-05T21:17:30 *** pmplett is now known as pmpafk 2010-07-05T21:17:45 *** agJohn has quit IRC 2010-07-05T22:20:30 *** artunit_ has joined #evergreen 2010-07-05T22:20:33 *** artunit has quit IRC 2010-07-05T22:20:41 *** artunit_ is now known as artunit 2010-07-05T22:31:54 *** mrpeters-isl has quit IRC