Screenshot instructions:
Windows
Mac
Red Hat Linux
Ubuntu
Click URL instructions:
Right-click on ad, choose "Copy Link", then paste here →
(This may not be possible with some types of ads)
You can subscribe to this list here.
2007 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(3) |
Aug
(5) |
Sep
(39) |
Oct
(18) |
Nov
(16) |
Dec
(14) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2008 |
Jan
(15) |
Feb
(90) |
Mar
(41) |
Apr
(129) |
May
(69) |
Jun
(112) |
Jul
(153) |
Aug
(82) |
Sep
(95) |
Oct
(111) |
Nov
(39) |
Dec
(50) |
2009 |
Jan
(11) |
Feb
(63) |
Mar
(51) |
Apr
(45) |
May
(68) |
Jun
(84) |
Jul
(114) |
Aug
(149) |
Sep
(259) |
Oct
(179) |
Nov
(132) |
Dec
(87) |
2010 |
Jan
(59) |
Feb
(88) |
Mar
(145) |
Apr
(130) |
May
(24) |
Jun
(36) |
Jul
(143) |
Aug
(94) |
Sep
(125) |
Oct
(142) |
Nov
(100) |
Dec
(103) |
2011 |
Jan
(76) |
Feb
(105) |
Mar
(145) |
Apr
(112) |
May
(74) |
Jun
(157) |
Jul
(95) |
Aug
(191) |
Sep
(75) |
Oct
(91) |
Nov
(100) |
Dec
(102) |
2012 |
Jan
(100) |
Feb
(126) |
Mar
(97) |
Apr
(74) |
May
(161) |
Jun
(135) |
Jul
(161) |
Aug
(132) |
Sep
(266) |
Oct
(212) |
Nov
(114) |
Dec
(87) |
2013 |
Jan
(101) |
Feb
(254) |
Mar
(236) |
Apr
(244) |
May
(144) |
Jun
(156) |
Jul
(203) |
Aug
(242) |
Sep
(118) |
Oct
(206) |
Nov
(140) |
Dec
(108) |
2014 |
Jan
(141) |
Feb
(88) |
Mar
(167) |
Apr
(61) |
May
(109) |
Jun
(105) |
Jul
(218) |
Aug
(125) |
Sep
(152) |
Oct
(217) |
Nov
(129) |
Dec
(63) |
2015 |
Jan
(121) |
Feb
(78) |
Mar
(156) |
Apr
(92) |
May
(91) |
Jun
(118) |
Jul
(114) |
Aug
(236) |
Sep
(75) |
Oct
(112) |
Nov
(106) |
Dec
(74) |
2016 |
Jan
(121) |
Feb
(165) |
Mar
(127) |
Apr
(145) |
May
(142) |
Jun
(113) |
Jul
(66) |
Aug
(61) |
Sep
(46) |
Oct
(120) |
Nov
(59) |
Dec
(49) |
2017 |
Jan
(67) |
Feb
(55) |
Mar
(79) |
Apr
(28) |
May
(49) |
Jun
(50) |
Jul
(119) |
Aug
(72) |
Sep
(40) |
Oct
(45) |
Nov
(66) |
Dec
(60) |
2018 |
Jan
(63) |
Feb
(52) |
Mar
(48) |
Apr
(23) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
S | M | T | W | T | F | S |
---|---|---|---|---|---|---|
|
|
|
|
|
1
(14) |
2
(2) |
3
(3) |
4
(6) |
5
(13) |
6
(5) |
7
(17) |
8
(10) |
9
|
10
|
11
(5) |
12
(3) |
13
(3) |
14
(6) |
15
(24) |
16
(2) |
17
|
18
(19) |
19
(18) |
20
(7) |
21
(13) |
22
(16) |
23
(1) |
24
|
25
(23) |
26
(8) |
27
(11) |
28
(6) |
29
(1) |
30
|
31
|
|
|
|
|
|
|
From: Demian Katz <demian.katz@vi...> - 2013-03-07 20:11:20
|
You should include the original closing curly brace where I had it -- that block should stand alone as I sent it. Feel free to resend your NewItems.php if you are still having trouble getting it to parse. (You can do that off-list if you like). - Demian > -----Original Message----- > From: Nathan Tallman [mailto:ntallman@...] > Sent: Thursday, March 07, 2013 3:01 PM > To: Demian Katz > Cc: vufind-tech > Subject: Re: [VuFind-Tech] New Items Without Driver > > Thanks, Demian. That solved the PHP error, but now I'm getting the "no > driver connection" error again (Notice: Undefined index: driver in > /usr/local/vufind/web/sys/ConnectionManager.php on line 57). > > I'm wondering if it has to do with the first snippet you sent. I > didn't include you last closing curly bracket, it didn't seem to end > there. When I do, I get an error about an unexpected else statement. > Pasting code snippet below. > > Thanks! > > if ($searchSettings['NewItem']['use_ils_driver']) { > $catalog = ConnectionManager::connectToCatalog(); > if (!$catalog || !$catalog->status) { > PEAR::raiseError(new PEAR_Error('Cannot Load > Catalog Driver')); > } > $tmp = $searchObject->getResultSummary(); > $limit = $tmp['perPage']; > if (isset($searchSettings['NewItem']['result_pages'])) { > $resultPages = > intval($searchSettings['NewItem']['result_pages']); > if ($resultPages < 1) { > $resultPages = 10; > } > } else { > $resultPages = 10; > } > $newItems = $catalog->getNewItems( > 1, $limit * $resultPages, $_GET['range'], > isset($_GET['department']) ? $_GET['department'] : null > ); > // Special case -- if no new items were found, don't > bother hitting > // the index engine: > if ($newItems['count'] > 0) { > // Query Index for BIB Data > $bibIDs = array(); > for ($i=0; $i<count($newItems['results']); $i++) { > $bibIDs[] = $newItems['results'][$i]['id']; > } > > } > if (!$searchObject->setQueryIDs($bibIDs)) { > $interface->assign('infoMsg', 'too_many_new_items'); > } > } else if ($searchObject->getView() == 'rss') { > // Special case -- empty RSS feed: > > // Throw the XML to screen > echo $searchObject->buildRSS( > array( > 'response' => array('numFound' => 0), > 'responseHeader' => array('params' => > array('rows' => 0)), > ) > ); > // And we're done > exit(); > } > } else { > $days = intval($_GET['range']); > $query = 'first_indexed:[NOW-' . $days .'DAY TO NOW]'; > $searchObject->setQueryString($query); > $searchObject->setSort('first_indexed desc'); > } > > // Build RSS Feed for Results (if requested) > if ($searchObject->getView() == 'rss') { > // Throw the XML to screen > echo $searchObject->buildRSS(); > // And we're done > exit(); > } > > On Thu, Mar 7, 2013 at 2:09 PM, Demian Katz <demian.katz@...> wrote: > > Sorry, my fault -- remove the "if" from that line; I was carelessly cutting > and pasting. > > > >> -----Original Message----- > >> From: Nathan Tallman [mailto:ntallman@...] > >> Sent: Thursday, March 07, 2013 1:12 PM > >> To: Demian Katz > >> Cc: vufind-tech > >> Subject: Re: [VuFind-Tech] New Items Without Driver > >> > >> One step closer. Now I'm getting a PHP error, "Parse error: syntax > >> error, unexpected T_IF in > >> /usr/local/vufind/web/services/Search/NewItem.php on line 205". Line > >> 205 is $list = if ($searchSettings['NewItem']['use_ils_driver']). > >> > >> @Tuan, yes I did reindex with change tracking turned on. > >> > >> Thanks! > >> Nathan > >> > >> On Thu, Mar 7, 2013 at 12:35 PM, Demian Katz <demian.katz@...> > >> wrote: > >> > It looks like the code connects to the ILS whether or not use_ils_driver > is > >> true. You may be able to fix this by adding addition if statements around > the > >> code dealing with the $catalog variable. Near the top: > >> > > >> > if ($searchSettings['NewItem']['use_ils_driver']) { > >> > $catalog = ConnectionManager::connectToCatalog(); > >> > if (!$catalog || !$catalog->status) { > >> > PEAR::raiseError(new PEAR_Error('Cannot Load Catalog > >> Driver')); > >> > } > >> > } > >> > > >> > And farther down: > >> > > >> > $list = if ($searchSettings['NewItem']['use_ils_driver']) > >> > ? $catalog->getFunds() : array(); > >> > $interface->assign('fundList', $list); > >> > > >> > - Demian > >> > > >> >> -----Original Message----- > >> >> From: Nathan Tallman [mailto:ntallman@...] > >> >> Sent: Thursday, March 07, 2013 12:26 PM > >> >> To: Demian Katz > >> >> Cc: vufind-tech > >> >> Subject: Re: [VuFind-Tech] New Items Without Driver > >> >> > >> >> Yes, it is set to false. Just in case I may have made a bonehead > mistake, > >> >> searches.ini and NewItem.php are attached. > >> >> > >> >> Thanks, > >> >> Nathan > >> >> > >> >> On Thu, Mar 7, 2013 at 12:09 PM, Demian Katz <demian.katz@...> > >> >> wrote: > >> >> > Did you make sure that the new [NewItem] / use_ils_driver setting in > >> >> searches.ini is set to false? > >> >> > > >> >> >> -----Original Message----- > >> >> >> From: Nathan Tallman [mailto:ntallman@...] > >> >> >> Sent: Thursday, March 07, 2013 11:52 AM > >> >> >> To: Demian Katz > >> >> >> Cc: vufind-tech > >> >> >> Subject: Re: [VuFind-Tech] New Items Without Driver > >> >> >> > >> >> >> There do seem to be problems, it's not working as is (for me, > >> >> >> anyways). When turning debug on, it seems its still trying to load > >> >> >> via ILS drivers. It's showing this message, "Notice: Undefined index: > >> >> >> driver in /usr/local/vufind/web/sys/ConnectionManager.php on line > 57". > >> >> >> > >> >> >> Unfortunately, I'm not skilled enough to determine what's going > wrong. > >> >> >> > >> >> >> Nathan > >> >> >> > >> >> >> > >> >> >> > >> >> >> On Thu, Mar 7, 2013 at 10:14 AM, Demian Katz > >> >> >> <demian.katz@...> > >> >> >> wrote: > >> >> >> > There is a JIRA patch to implement the feature using the change > >> >> >> > tracking > >> >> >> functionality of VuFind (you have to turn on change tracking as part > >> >> >> of the import process to make it work): > >> >> >> > > >> >> >> > http://vufind.org/jira/browse/VUFIND-624 > >> >> >> > > >> >> >> > I think there may be some problems with the patch, however -- I > >> >> >> > haven't had > >> >> >> time to thoroughly test it and get it ready for the trunk/master. I > >> >> >> plan to when I have a bit more time, though, as this is a valuable > >> >> >> feature. If you're able to test it out in the meantime and provide > >> >> feedback, that would be great! > >> >> >> > > >> >> >> > - Demian > >> >> >> > > >> >> >> >> -----Original Message----- > >> >> >> >> From: Nathan Tallman [mailto:ntallman@...] > >> >> >> >> Sent: Thursday, March 07, 2013 10:10 AM > >> >> >> >> To: vufind-tech > >> >> >> >> Subject: [VuFind-Tech] New Items Without Driver > >> >> >> >> > >> >> >> >> Is it possible to dynamically generate a New Item listing (30 days > >> >> >> >> maybe) with out using an ILS driver? We don't use a driver, but > >> >> >> >> are interested in this feature. > >> >> >> >> > >> >> >> >> Thanks, > >> >> >> >> Nathan > >> >> >> >> > >> >> >> >> ------------------------------------------------------------------ > >> >> >> >> --------- > >> >> >> --- > >> >> >> >> Symantec Endpoint Protection 12 positioned as A LEADER in The > >> >> >> >> Forrester > >> >> >> >> Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" > >> >> >> >> in the endpoint security space. For insight on selecting the right > >> >> >> >> partner to tackle endpoint security challenges, access the full > >> report. > >> >> >> >> http://p.sf.net/sfu/symantec-dev2dev > >> >> >> >> _______________________________________________ > >> >> >> >> Vufind-tech mailing list > >> >> >> >> Vufind-tech@... > >> >> >> >> https://lists.sourceforge.net/lists/listinfo/vufind-tech |
From: Nathan Tallman <ntallman@gm...> - 2013-03-07 20:01:10
|
Thanks, Demian. That solved the PHP error, but now I'm getting the "no driver connection" error again (Notice: Undefined index: driver in /usr/local/vufind/web/sys/ConnectionManager.php on line 57). I'm wondering if it has to do with the first snippet you sent. I didn't include you last closing curly bracket, it didn't seem to end there. When I do, I get an error about an unexpected else statement. Pasting code snippet below. Thanks! if ($searchSettings['NewItem']['use_ils_driver']) { $catalog = ConnectionManager::connectToCatalog(); if (!$catalog || !$catalog->status) { PEAR::raiseError(new PEAR_Error('Cannot Load Catalog Driver')); } $tmp = $searchObject->getResultSummary(); $limit = $tmp['perPage']; if (isset($searchSettings['NewItem']['result_pages'])) { $resultPages = intval($searchSettings['NewItem']['result_pages']); if ($resultPages < 1) { $resultPages = 10; } } else { $resultPages = 10; } $newItems = $catalog->getNewItems( 1, $limit * $resultPages, $_GET['range'], isset($_GET['department']) ? $_GET['department'] : null ); // Special case -- if no new items were found, don't bother hitting // the index engine: if ($newItems['count'] > 0) { // Query Index for BIB Data $bibIDs = array(); for ($i=0; $i<count($newItems['results']); $i++) { $bibIDs[] = $newItems['results'][$i]['id']; } } if (!$searchObject->setQueryIDs($bibIDs)) { $interface->assign('infoMsg', 'too_many_new_items'); } } else if ($searchObject->getView() == 'rss') { // Special case -- empty RSS feed: // Throw the XML to screen echo $searchObject->buildRSS( array( 'response' => array('numFound' => 0), 'responseHeader' => array('params' => array('rows' => 0)), ) ); // And we're done exit(); } } else { $days = intval($_GET['range']); $query = 'first_indexed:[NOW-' . $days .'DAY TO NOW]'; $searchObject->setQueryString($query); $searchObject->setSort('first_indexed desc'); } // Build RSS Feed for Results (if requested) if ($searchObject->getView() == 'rss') { // Throw the XML to screen echo $searchObject->buildRSS(); // And we're done exit(); } On Thu, Mar 7, 2013 at 2:09 PM, Demian Katz <demian.katz@...> wrote: > Sorry, my fault -- remove the "if" from that line; I was carelessly cutting and pasting. > >> -----Original Message----- >> From: Nathan Tallman [mailto:ntallman@...] >> Sent: Thursday, March 07, 2013 1:12 PM >> To: Demian Katz >> Cc: vufind-tech >> Subject: Re: [VuFind-Tech] New Items Without Driver >> >> One step closer. Now I'm getting a PHP error, "Parse error: syntax >> error, unexpected T_IF in >> /usr/local/vufind/web/services/Search/NewItem.php on line 205". Line >> 205 is $list = if ($searchSettings['NewItem']['use_ils_driver']). >> >> @Tuan, yes I did reindex with change tracking turned on. >> >> Thanks! >> Nathan >> >> On Thu, Mar 7, 2013 at 12:35 PM, Demian Katz <demian.katz@...> >> wrote: >> > It looks like the code connects to the ILS whether or not use_ils_driver is >> true. You may be able to fix this by adding addition if statements around the >> code dealing with the $catalog variable. Near the top: >> > >> > if ($searchSettings['NewItem']['use_ils_driver']) { >> > $catalog = ConnectionManager::connectToCatalog(); >> > if (!$catalog || !$catalog->status) { >> > PEAR::raiseError(new PEAR_Error('Cannot Load Catalog >> Driver')); >> > } >> > } >> > >> > And farther down: >> > >> > $list = if ($searchSettings['NewItem']['use_ils_driver']) >> > ? $catalog->getFunds() : array(); >> > $interface->assign('fundList', $list); >> > >> > - Demian >> > >> >> -----Original Message----- >> >> From: Nathan Tallman [mailto:ntallman@...] >> >> Sent: Thursday, March 07, 2013 12:26 PM >> >> To: Demian Katz >> >> Cc: vufind-tech >> >> Subject: Re: [VuFind-Tech] New Items Without Driver >> >> >> >> Yes, it is set to false. Just in case I may have made a bonehead mistake, >> >> searches.ini and NewItem.php are attached. >> >> >> >> Thanks, >> >> Nathan >> >> >> >> On Thu, Mar 7, 2013 at 12:09 PM, Demian Katz <demian.katz@...> >> >> wrote: >> >> > Did you make sure that the new [NewItem] / use_ils_driver setting in >> >> searches.ini is set to false? >> >> > >> >> >> -----Original Message----- >> >> >> From: Nathan Tallman [mailto:ntallman@...] >> >> >> Sent: Thursday, March 07, 2013 11:52 AM >> >> >> To: Demian Katz >> >> >> Cc: vufind-tech >> >> >> Subject: Re: [VuFind-Tech] New Items Without Driver >> >> >> >> >> >> There do seem to be problems, it's not working as is (for me, >> >> >> anyways). When turning debug on, it seems its still trying to load >> >> >> via ILS drivers. It's showing this message, "Notice: Undefined index: >> >> >> driver in /usr/local/vufind/web/sys/ConnectionManager.php on line 57". >> >> >> >> >> >> Unfortunately, I'm not skilled enough to determine what's going wrong. >> >> >> >> >> >> Nathan >> >> >> >> >> >> >> >> >> >> >> >> On Thu, Mar 7, 2013 at 10:14 AM, Demian Katz >> >> >> <demian.katz@...> >> >> >> wrote: >> >> >> > There is a JIRA patch to implement the feature using the change >> >> >> > tracking >> >> >> functionality of VuFind (you have to turn on change tracking as part >> >> >> of the import process to make it work): >> >> >> > >> >> >> > http://vufind.org/jira/browse/VUFIND-624 >> >> >> > >> >> >> > I think there may be some problems with the patch, however -- I >> >> >> > haven't had >> >> >> time to thoroughly test it and get it ready for the trunk/master. I >> >> >> plan to when I have a bit more time, though, as this is a valuable >> >> >> feature. If you're able to test it out in the meantime and provide >> >> feedback, that would be great! >> >> >> > >> >> >> > - Demian >> >> >> > >> >> >> >> -----Original Message----- >> >> >> >> From: Nathan Tallman [mailto:ntallman@...] >> >> >> >> Sent: Thursday, March 07, 2013 10:10 AM >> >> >> >> To: vufind-tech >> >> >> >> Subject: [VuFind-Tech] New Items Without Driver >> >> >> >> >> >> >> >> Is it possible to dynamically generate a New Item listing (30 days >> >> >> >> maybe) with out using an ILS driver? We don't use a driver, but >> >> >> >> are interested in this feature. >> >> >> >> >> >> >> >> Thanks, >> >> >> >> Nathan >> >> >> >> >> >> >> >> ------------------------------------------------------------------ >> >> >> >> --------- >> >> >> --- >> >> >> >> Symantec Endpoint Protection 12 positioned as A LEADER in The >> >> >> >> Forrester >> >> >> >> Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" >> >> >> >> in the endpoint security space. For insight on selecting the right >> >> >> >> partner to tackle endpoint security challenges, access the full >> report. >> >> >> >> http://p.sf.net/sfu/symantec-dev2dev >> >> >> >> _______________________________________________ >> >> >> >> Vufind-tech mailing list >> >> >> >> Vufind-tech@... >> >> >> >> https://lists.sourceforge.net/lists/listinfo/vufind-tech |
From: Demian Katz <demian.katz@vi...> - 2013-03-07 19:09:18
|
Sorry, my fault -- remove the "if" from that line; I was carelessly cutting and pasting. > -----Original Message----- > From: Nathan Tallman [mailto:ntallman@...] > Sent: Thursday, March 07, 2013 1:12 PM > To: Demian Katz > Cc: vufind-tech > Subject: Re: [VuFind-Tech] New Items Without Driver > > One step closer. Now I'm getting a PHP error, "Parse error: syntax > error, unexpected T_IF in > /usr/local/vufind/web/services/Search/NewItem.php on line 205". Line > 205 is $list = if ($searchSettings['NewItem']['use_ils_driver']). > > @Tuan, yes I did reindex with change tracking turned on. > > Thanks! > Nathan > > On Thu, Mar 7, 2013 at 12:35 PM, Demian Katz <demian.katz@...> > wrote: > > It looks like the code connects to the ILS whether or not use_ils_driver is > true. You may be able to fix this by adding addition if statements around the > code dealing with the $catalog variable. Near the top: > > > > if ($searchSettings['NewItem']['use_ils_driver']) { > > $catalog = ConnectionManager::connectToCatalog(); > > if (!$catalog || !$catalog->status) { > > PEAR::raiseError(new PEAR_Error('Cannot Load Catalog > Driver')); > > } > > } > > > > And farther down: > > > > $list = if ($searchSettings['NewItem']['use_ils_driver']) > > ? $catalog->getFunds() : array(); > > $interface->assign('fundList', $list); > > > > - Demian > > > >> -----Original Message----- > >> From: Nathan Tallman [mailto:ntallman@...] > >> Sent: Thursday, March 07, 2013 12:26 PM > >> To: Demian Katz > >> Cc: vufind-tech > >> Subject: Re: [VuFind-Tech] New Items Without Driver > >> > >> Yes, it is set to false. Just in case I may have made a bonehead mistake, > >> searches.ini and NewItem.php are attached. > >> > >> Thanks, > >> Nathan > >> > >> On Thu, Mar 7, 2013 at 12:09 PM, Demian Katz <demian.katz@...> > >> wrote: > >> > Did you make sure that the new [NewItem] / use_ils_driver setting in > >> searches.ini is set to false? > >> > > >> >> -----Original Message----- > >> >> From: Nathan Tallman [mailto:ntallman@...] > >> >> Sent: Thursday, March 07, 2013 11:52 AM > >> >> To: Demian Katz > >> >> Cc: vufind-tech > >> >> Subject: Re: [VuFind-Tech] New Items Without Driver > >> >> > >> >> There do seem to be problems, it's not working as is (for me, > >> >> anyways). When turning debug on, it seems its still trying to load > >> >> via ILS drivers. It's showing this message, "Notice: Undefined index: > >> >> driver in /usr/local/vufind/web/sys/ConnectionManager.php on line 57". > >> >> > >> >> Unfortunately, I'm not skilled enough to determine what's going wrong. > >> >> > >> >> Nathan > >> >> > >> >> > >> >> > >> >> On Thu, Mar 7, 2013 at 10:14 AM, Demian Katz > >> >> <demian.katz@...> > >> >> wrote: > >> >> > There is a JIRA patch to implement the feature using the change > >> >> > tracking > >> >> functionality of VuFind (you have to turn on change tracking as part > >> >> of the import process to make it work): > >> >> > > >> >> > http://vufind.org/jira/browse/VUFIND-624 > >> >> > > >> >> > I think there may be some problems with the patch, however -- I > >> >> > haven't had > >> >> time to thoroughly test it and get it ready for the trunk/master. I > >> >> plan to when I have a bit more time, though, as this is a valuable > >> >> feature. If you're able to test it out in the meantime and provide > >> feedback, that would be great! > >> >> > > >> >> > - Demian > >> >> > > >> >> >> -----Original Message----- > >> >> >> From: Nathan Tallman [mailto:ntallman@...] > >> >> >> Sent: Thursday, March 07, 2013 10:10 AM > >> >> >> To: vufind-tech > >> >> >> Subject: [VuFind-Tech] New Items Without Driver > >> >> >> > >> >> >> Is it possible to dynamically generate a New Item listing (30 days > >> >> >> maybe) with out using an ILS driver? We don't use a driver, but > >> >> >> are interested in this feature. > >> >> >> > >> >> >> Thanks, > >> >> >> Nathan > >> >> >> > >> >> >> ------------------------------------------------------------------ > >> >> >> --------- > >> >> --- > >> >> >> Symantec Endpoint Protection 12 positioned as A LEADER in The > >> >> >> Forrester > >> >> >> Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" > >> >> >> in the endpoint security space. For insight on selecting the right > >> >> >> partner to tackle endpoint security challenges, access the full > report. > >> >> >> http://p.sf.net/sfu/symantec-dev2dev > >> >> >> _______________________________________________ > >> >> >> Vufind-tech mailing list > >> >> >> Vufind-tech@... > >> >> >> https://lists.sourceforge.net/lists/listinfo/vufind-tech |
From: Nathan Tallman <ntallman@gm...> - 2013-03-07 18:13:03
|
One step closer. Now I'm getting a PHP error, "Parse error: syntax error, unexpected T_IF in /usr/local/vufind/web/services/Search/NewItem.php on line 205". Line 205 is $list = if ($searchSettings['NewItem']['use_ils_driver']). @Tuan, yes I did reindex with change tracking turned on. Thanks! Nathan On Thu, Mar 7, 2013 at 12:35 PM, Demian Katz <demian.katz@...> wrote: > It looks like the code connects to the ILS whether or not use_ils_driver is true. You may be able to fix this by adding addition if statements around the code dealing with the $catalog variable. Near the top: > > if ($searchSettings['NewItem']['use_ils_driver']) { > $catalog = ConnectionManager::connectToCatalog(); > if (!$catalog || !$catalog->status) { > PEAR::raiseError(new PEAR_Error('Cannot Load Catalog Driver')); > } > } > > And farther down: > > $list = if ($searchSettings['NewItem']['use_ils_driver']) > ? $catalog->getFunds() : array(); > $interface->assign('fundList', $list); > > - Demian > >> -----Original Message----- >> From: Nathan Tallman [mailto:ntallman@...] >> Sent: Thursday, March 07, 2013 12:26 PM >> To: Demian Katz >> Cc: vufind-tech >> Subject: Re: [VuFind-Tech] New Items Without Driver >> >> Yes, it is set to false. Just in case I may have made a bonehead mistake, >> searches.ini and NewItem.php are attached. >> >> Thanks, >> Nathan >> >> On Thu, Mar 7, 2013 at 12:09 PM, Demian Katz <demian.katz@...> >> wrote: >> > Did you make sure that the new [NewItem] / use_ils_driver setting in >> searches.ini is set to false? >> > >> >> -----Original Message----- >> >> From: Nathan Tallman [mailto:ntallman@...] >> >> Sent: Thursday, March 07, 2013 11:52 AM >> >> To: Demian Katz >> >> Cc: vufind-tech >> >> Subject: Re: [VuFind-Tech] New Items Without Driver >> >> >> >> There do seem to be problems, it's not working as is (for me, >> >> anyways). When turning debug on, it seems its still trying to load >> >> via ILS drivers. It's showing this message, "Notice: Undefined index: >> >> driver in /usr/local/vufind/web/sys/ConnectionManager.php on line 57". >> >> >> >> Unfortunately, I'm not skilled enough to determine what's going wrong. >> >> >> >> Nathan >> >> >> >> >> >> >> >> On Thu, Mar 7, 2013 at 10:14 AM, Demian Katz >> >> <demian.katz@...> >> >> wrote: >> >> > There is a JIRA patch to implement the feature using the change >> >> > tracking >> >> functionality of VuFind (you have to turn on change tracking as part >> >> of the import process to make it work): >> >> > >> >> > http://vufind.org/jira/browse/VUFIND-624 >> >> > >> >> > I think there may be some problems with the patch, however -- I >> >> > haven't had >> >> time to thoroughly test it and get it ready for the trunk/master. I >> >> plan to when I have a bit more time, though, as this is a valuable >> >> feature. If you're able to test it out in the meantime and provide >> feedback, that would be great! >> >> > >> >> > - Demian >> >> > >> >> >> -----Original Message----- >> >> >> From: Nathan Tallman [mailto:ntallman@...] >> >> >> Sent: Thursday, March 07, 2013 10:10 AM >> >> >> To: vufind-tech >> >> >> Subject: [VuFind-Tech] New Items Without Driver >> >> >> >> >> >> Is it possible to dynamically generate a New Item listing (30 days >> >> >> maybe) with out using an ILS driver? We don't use a driver, but >> >> >> are interested in this feature. >> >> >> >> >> >> Thanks, >> >> >> Nathan >> >> >> >> >> >> ------------------------------------------------------------------ >> >> >> --------- >> >> --- >> >> >> Symantec Endpoint Protection 12 positioned as A LEADER in The >> >> >> Forrester >> >> >> Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" >> >> >> in the endpoint security space. For insight on selecting the right >> >> >> partner to tackle endpoint security challenges, access the full report. >> >> >> http://p.sf.net/sfu/symantec-dev2dev >> >> >> _______________________________________________ >> >> >> Vufind-tech mailing list >> >> >> Vufind-tech@... >> >> >> https://lists.sourceforge.net/lists/listinfo/vufind-tech |
From: Demian Katz <demian.katz@vi...> - 2013-03-07 17:35:47
|
It looks like the code connects to the ILS whether or not use_ils_driver is true. You may be able to fix this by adding addition if statements around the code dealing with the $catalog variable. Near the top: if ($searchSettings['NewItem']['use_ils_driver']) { $catalog = ConnectionManager::connectToCatalog(); if (!$catalog || !$catalog->status) { PEAR::raiseError(new PEAR_Error('Cannot Load Catalog Driver')); } } And farther down: $list = if ($searchSettings['NewItem']['use_ils_driver']) ? $catalog->getFunds() : array(); $interface->assign('fundList', $list); - Demian > -----Original Message----- > From: Nathan Tallman [mailto:ntallman@...] > Sent: Thursday, March 07, 2013 12:26 PM > To: Demian Katz > Cc: vufind-tech > Subject: Re: [VuFind-Tech] New Items Without Driver > > Yes, it is set to false. Just in case I may have made a bonehead mistake, > searches.ini and NewItem.php are attached. > > Thanks, > Nathan > > On Thu, Mar 7, 2013 at 12:09 PM, Demian Katz <demian.katz@...> > wrote: > > Did you make sure that the new [NewItem] / use_ils_driver setting in > searches.ini is set to false? > > > >> -----Original Message----- > >> From: Nathan Tallman [mailto:ntallman@...] > >> Sent: Thursday, March 07, 2013 11:52 AM > >> To: Demian Katz > >> Cc: vufind-tech > >> Subject: Re: [VuFind-Tech] New Items Without Driver > >> > >> There do seem to be problems, it's not working as is (for me, > >> anyways). When turning debug on, it seems its still trying to load > >> via ILS drivers. It's showing this message, "Notice: Undefined index: > >> driver in /usr/local/vufind/web/sys/ConnectionManager.php on line 57". > >> > >> Unfortunately, I'm not skilled enough to determine what's going wrong. > >> > >> Nathan > >> > >> > >> > >> On Thu, Mar 7, 2013 at 10:14 AM, Demian Katz > >> <demian.katz@...> > >> wrote: > >> > There is a JIRA patch to implement the feature using the change > >> > tracking > >> functionality of VuFind (you have to turn on change tracking as part > >> of the import process to make it work): > >> > > >> > http://vufind.org/jira/browse/VUFIND-624 > >> > > >> > I think there may be some problems with the patch, however -- I > >> > haven't had > >> time to thoroughly test it and get it ready for the trunk/master. I > >> plan to when I have a bit more time, though, as this is a valuable > >> feature. If you're able to test it out in the meantime and provide > feedback, that would be great! > >> > > >> > - Demian > >> > > >> >> -----Original Message----- > >> >> From: Nathan Tallman [mailto:ntallman@...] > >> >> Sent: Thursday, March 07, 2013 10:10 AM > >> >> To: vufind-tech > >> >> Subject: [VuFind-Tech] New Items Without Driver > >> >> > >> >> Is it possible to dynamically generate a New Item listing (30 days > >> >> maybe) with out using an ILS driver? We don't use a driver, but > >> >> are interested in this feature. > >> >> > >> >> Thanks, > >> >> Nathan > >> >> > >> >> ------------------------------------------------------------------ > >> >> --------- > >> --- > >> >> Symantec Endpoint Protection 12 positioned as A LEADER in The > >> >> Forrester > >> >> Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" > >> >> in the endpoint security space. For insight on selecting the right > >> >> partner to tackle endpoint security challenges, access the full report. > >> >> http://p.sf.net/sfu/symantec-dev2dev > >> >> _______________________________________________ > >> >> Vufind-tech mailing list > >> >> Vufind-tech@... > >> >> https://lists.sourceforge.net/lists/listinfo/vufind-tech |
From: Tuan Nguyen <tuan@yo...> - 2013-03-07 17:34:07
|
Nathan, you probably already did this, but in case you haven't, you need to reindex with the change tracking turned on. On 2013-03-07, at 12:26 PM, Nathan Tallman wrote: > Yes, it is set to false. Just in case I may have made a bonehead > mistake, searches.ini and NewItem.php are attached. > > Thanks, > Nathan > > On Thu, Mar 7, 2013 at 12:09 PM, Demian Katz <demian.katz@...> wrote: >> Did you make sure that the new [NewItem] / use_ils_driver setting in searches.ini is set to false? >> >>> -----Original Message----- >>> From: Nathan Tallman [mailto:ntallman@...] >>> Sent: Thursday, March 07, 2013 11:52 AM >>> To: Demian Katz >>> Cc: vufind-tech >>> Subject: Re: [VuFind-Tech] New Items Without Driver >>> >>> There do seem to be problems, it's not working as is (for me, >>> anyways). When turning debug on, it seems its still trying to load via >>> ILS drivers. It's showing this message, "Notice: Undefined index: >>> driver in /usr/local/vufind/web/sys/ConnectionManager.php on line 57". >>> >>> Unfortunately, I'm not skilled enough to determine what's going wrong. >>> >>> Nathan >>> >>> >>> >>> On Thu, Mar 7, 2013 at 10:14 AM, Demian Katz <demian.katz@...> >>> wrote: >>>> There is a JIRA patch to implement the feature using the change tracking >>> functionality of VuFind (you have to turn on change tracking as part of the >>> import process to make it work): >>>> >>>> http://vufind.org/jira/browse/VUFIND-624 >>>> >>>> I think there may be some problems with the patch, however -- I haven't had >>> time to thoroughly test it and get it ready for the trunk/master. I plan to >>> when I have a bit more time, though, as this is a valuable feature. If you're >>> able to test it out in the meantime and provide feedback, that would be great! >>>> >>>> - Demian >>>> >>>>> -----Original Message----- >>>>> From: Nathan Tallman [mailto:ntallman@...] >>>>> Sent: Thursday, March 07, 2013 10:10 AM >>>>> To: vufind-tech >>>>> Subject: [VuFind-Tech] New Items Without Driver >>>>> >>>>> Is it possible to dynamically generate a New Item listing (30 days >>>>> maybe) with out using an ILS driver? We don't use a driver, but are >>>>> interested in this feature. >>>>> >>>>> Thanks, >>>>> Nathan >>>>> >>>>> --------------------------------------------------------------------------- >>> --- >>>>> Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester >>>>> Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" in the >>>>> endpoint security space. For insight on selecting the right partner to >>>>> tackle endpoint security challenges, access the full report. >>>>> http://p.sf.net/sfu/symantec-dev2dev >>>>> _______________________________________________ >>>>> Vufind-tech mailing list >>>>> Vufind-tech@... >>>>> https://lists.sourceforge.net/lists/listinfo/vufind-tech > <searches.ini><NewItem.php>------------------------------------------------------------------------------ > Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester > Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" in the > endpoint security space. For insight on selecting the right partner to > tackle endpoint security challenges, access the full report. > http://p.sf.net/sfu/symantec-dev2dev_______________________________________________ > Vufind-tech mailing list > Vufind-tech@... > https://lists.sourceforge.net/lists/listinfo/vufind-tech |
From: Nathan Tallman <ntallman@gm...> - 2013-03-07 17:27:05
|
Yes, it is set to false. Just in case I may have made a bonehead mistake, searches.ini and NewItem.php are attached. Thanks, Nathan On Thu, Mar 7, 2013 at 12:09 PM, Demian Katz <demian.katz@...> wrote: > Did you make sure that the new [NewItem] / use_ils_driver setting in searches.ini is set to false? > >> -----Original Message----- >> From: Nathan Tallman [mailto:ntallman@...] >> Sent: Thursday, March 07, 2013 11:52 AM >> To: Demian Katz >> Cc: vufind-tech >> Subject: Re: [VuFind-Tech] New Items Without Driver >> >> There do seem to be problems, it's not working as is (for me, >> anyways). When turning debug on, it seems its still trying to load via >> ILS drivers. It's showing this message, "Notice: Undefined index: >> driver in /usr/local/vufind/web/sys/ConnectionManager.php on line 57". >> >> Unfortunately, I'm not skilled enough to determine what's going wrong. >> >> Nathan >> >> >> >> On Thu, Mar 7, 2013 at 10:14 AM, Demian Katz <demian.katz@...> >> wrote: >> > There is a JIRA patch to implement the feature using the change tracking >> functionality of VuFind (you have to turn on change tracking as part of the >> import process to make it work): >> > >> > http://vufind.org/jira/browse/VUFIND-624 >> > >> > I think there may be some problems with the patch, however -- I haven't had >> time to thoroughly test it and get it ready for the trunk/master. I plan to >> when I have a bit more time, though, as this is a valuable feature. If you're >> able to test it out in the meantime and provide feedback, that would be great! >> > >> > - Demian >> > >> >> -----Original Message----- >> >> From: Nathan Tallman [mailto:ntallman@...] >> >> Sent: Thursday, March 07, 2013 10:10 AM >> >> To: vufind-tech >> >> Subject: [VuFind-Tech] New Items Without Driver >> >> >> >> Is it possible to dynamically generate a New Item listing (30 days >> >> maybe) with out using an ILS driver? We don't use a driver, but are >> >> interested in this feature. >> >> >> >> Thanks, >> >> Nathan >> >> >> >> --------------------------------------------------------------------------- >> --- >> >> Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester >> >> Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" in the >> >> endpoint security space. For insight on selecting the right partner to >> >> tackle endpoint security challenges, access the full report. >> >> http://p.sf.net/sfu/symantec-dev2dev >> >> _______________________________________________ >> >> Vufind-tech mailing list >> >> Vufind-tech@... >> >> https://lists.sourceforge.net/lists/listinfo/vufind-tech |
From: Demian Katz <demian.katz@vi...> - 2013-03-07 17:09:46
|
Did you make sure that the new [NewItem] / use_ils_driver setting in searches.ini is set to false? > -----Original Message----- > From: Nathan Tallman [mailto:ntallman@...] > Sent: Thursday, March 07, 2013 11:52 AM > To: Demian Katz > Cc: vufind-tech > Subject: Re: [VuFind-Tech] New Items Without Driver > > There do seem to be problems, it's not working as is (for me, > anyways). When turning debug on, it seems its still trying to load via > ILS drivers. It's showing this message, "Notice: Undefined index: > driver in /usr/local/vufind/web/sys/ConnectionManager.php on line 57". > > Unfortunately, I'm not skilled enough to determine what's going wrong. > > Nathan > > > > On Thu, Mar 7, 2013 at 10:14 AM, Demian Katz <demian.katz@...> > wrote: > > There is a JIRA patch to implement the feature using the change tracking > functionality of VuFind (you have to turn on change tracking as part of the > import process to make it work): > > > > http://vufind.org/jira/browse/VUFIND-624 > > > > I think there may be some problems with the patch, however -- I haven't had > time to thoroughly test it and get it ready for the trunk/master. I plan to > when I have a bit more time, though, as this is a valuable feature. If you're > able to test it out in the meantime and provide feedback, that would be great! > > > > - Demian > > > >> -----Original Message----- > >> From: Nathan Tallman [mailto:ntallman@...] > >> Sent: Thursday, March 07, 2013 10:10 AM > >> To: vufind-tech > >> Subject: [VuFind-Tech] New Items Without Driver > >> > >> Is it possible to dynamically generate a New Item listing (30 days > >> maybe) with out using an ILS driver? We don't use a driver, but are > >> interested in this feature. > >> > >> Thanks, > >> Nathan > >> > >> --------------------------------------------------------------------------- > --- > >> Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester > >> Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" in the > >> endpoint security space. For insight on selecting the right partner to > >> tackle endpoint security challenges, access the full report. > >> http://p.sf.net/sfu/symantec-dev2dev > >> _______________________________________________ > >> Vufind-tech mailing list > >> Vufind-tech@... > >> https://lists.sourceforge.net/lists/listinfo/vufind-tech |
From: Nathan Tallman <ntallman@gm...> - 2013-03-07 16:52:26
|
There do seem to be problems, it's not working as is (for me, anyways). When turning debug on, it seems its still trying to load via ILS drivers. It's showing this message, "Notice: Undefined index: driver in /usr/local/vufind/web/sys/ConnectionManager.php on line 57". Unfortunately, I'm not skilled enough to determine what's going wrong. Nathan On Thu, Mar 7, 2013 at 10:14 AM, Demian Katz <demian.katz@...> wrote: > There is a JIRA patch to implement the feature using the change tracking functionality of VuFind (you have to turn on change tracking as part of the import process to make it work): > > http://vufind.org/jira/browse/VUFIND-624 > > I think there may be some problems with the patch, however -- I haven't had time to thoroughly test it and get it ready for the trunk/master. I plan to when I have a bit more time, though, as this is a valuable feature. If you're able to test it out in the meantime and provide feedback, that would be great! > > - Demian > >> -----Original Message----- >> From: Nathan Tallman [mailto:ntallman@...] >> Sent: Thursday, March 07, 2013 10:10 AM >> To: vufind-tech >> Subject: [VuFind-Tech] New Items Without Driver >> >> Is it possible to dynamically generate a New Item listing (30 days >> maybe) with out using an ILS driver? We don't use a driver, but are >> interested in this feature. >> >> Thanks, >> Nathan >> >> ------------------------------------------------------------------------------ >> Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester >> Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" in the >> endpoint security space. For insight on selecting the right partner to >> tackle endpoint security challenges, access the full report. >> http://p.sf.net/sfu/symantec-dev2dev >> _______________________________________________ >> Vufind-tech mailing list >> Vufind-tech@... >> https://lists.sourceforge.net/lists/listinfo/vufind-tech |
From: Brad Busenius <bbusenius@uc...> - 2013-03-07 16:23:33
|
Fantastic! That seemed to clear things up. Thank you very much! Brad On 3/7/13 8:24 AM, Demian Katz wrote: > > I had time to look more closely at this -- definitely a bug. Fixed here: > > http://vufind.git.sourceforge.net/git/gitweb.cgi?p=vufind/vufind;a=commitdiff;h=82c77d1bafd451a6272cbd40d9ee772fe312a4e4 > > - Demian > > *From:*Bryon Czoch [mailto:bczoch@...] > *Sent:* Wednesday, March 06, 2013 6:32 PM > *To:* vufind-tech@... > *Subject:* [VuFind-Tech] Trouble with > VuFind/src/VuFind/Config/SearchSpecsReader.php ?? > > Any idea why I would be getting this error? > > Could this have anything to do with creating our own Chicago module? > > Bryon > > > > ------------------------------------------------------------------------------ > Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester > Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" in the > endpoint security space. For insight on selecting the right partner to > tackle endpoint security challenges, access the full report. > http://p.sf.net/sfu/symantec-dev2dev > > > _______________________________________________ > Vufind-tech mailing list > Vufind-tech@... > https://lists.sourceforge.net/lists/listinfo/vufind-tech |
From: Nathan Tallman <ntallman@gm...> - 2013-03-07 16:02:43
|
Thanks, Demian. I'll try this out and report back. Nathan On Thu, Mar 7, 2013 at 10:14 AM, Demian Katz <demian.katz@...> wrote: > There is a JIRA patch to implement the feature using the change tracking functionality of VuFind (you have to turn on change tracking as part of the import process to make it work): > > http://vufind.org/jira/browse/VUFIND-624 > > I think there may be some problems with the patch, however -- I haven't had time to thoroughly test it and get it ready for the trunk/master. I plan to when I have a bit more time, though, as this is a valuable feature. If you're able to test it out in the meantime and provide feedback, that would be great! > > - Demian > >> -----Original Message----- >> From: Nathan Tallman [mailto:ntallman@...] >> Sent: Thursday, March 07, 2013 10:10 AM >> To: vufind-tech >> Subject: [VuFind-Tech] New Items Without Driver >> >> Is it possible to dynamically generate a New Item listing (30 days >> maybe) with out using an ILS driver? We don't use a driver, but are >> interested in this feature. >> >> Thanks, >> Nathan >> >> ------------------------------------------------------------------------------ >> Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester >> Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" in the >> endpoint security space. For insight on selecting the right partner to >> tackle endpoint security challenges, access the full report. >> http://p.sf.net/sfu/symantec-dev2dev >> _______________________________________________ >> Vufind-tech mailing list >> Vufind-tech@... >> https://lists.sourceforge.net/lists/listinfo/vufind-tech |
From: Demian Katz <demian.katz@vi...> - 2013-03-07 15:15:07
|
There is a JIRA patch to implement the feature using the change tracking functionality of VuFind (you have to turn on change tracking as part of the import process to make it work): http://vufind.org/jira/browse/VUFIND-624 I think there may be some problems with the patch, however -- I haven't had time to thoroughly test it and get it ready for the trunk/master. I plan to when I have a bit more time, though, as this is a valuable feature. If you're able to test it out in the meantime and provide feedback, that would be great! - Demian > -----Original Message----- > From: Nathan Tallman [mailto:ntallman@...] > Sent: Thursday, March 07, 2013 10:10 AM > To: vufind-tech > Subject: [VuFind-Tech] New Items Without Driver > > Is it possible to dynamically generate a New Item listing (30 days > maybe) with out using an ILS driver? We don't use a driver, but are > interested in this feature. > > Thanks, > Nathan > > ------------------------------------------------------------------------------ > Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester > Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" in the > endpoint security space. For insight on selecting the right partner to > tackle endpoint security challenges, access the full report. > http://p.sf.net/sfu/symantec-dev2dev > _______________________________________________ > Vufind-tech mailing list > Vufind-tech@... > https://lists.sourceforge.net/lists/listinfo/vufind-tech |
From: Nathan Tallman <ntallman@gm...> - 2013-03-07 15:10:06
|
Is it possible to dynamically generate a New Item listing (30 days maybe) with out using an ILS driver? We don't use a driver, but are interested in this feature. Thanks, Nathan |
From: Demian Katz <demian.katz@vi...> - 2013-03-07 14:24:23
|
I had time to look more closely at this - definitely a bug. Fixed here: http://vufind.git.sourceforge.net/git/gitweb.cgi?p=vufind/vufind;a=commitdiff;h=82c77d1bafd451a6272cbd40d9ee772fe312a4e4 - Demian From: Bryon Czoch [mailto:bczoch@...] Sent: Wednesday, March 06, 2013 6:32 PM To: vufind-tech@... Subject: [VuFind-Tech] Trouble with VuFind/src/VuFind/Config/SearchSpecsReader.php ?? Any idea why I would be getting this error? Could this have anything to do with creating our own Chicago module? Bryon |
From: Demian Katz <demian.katz@vi...> - 2013-03-07 13:49:57
|
It is possible that the problem is related to the mixed slashes in C:\vufind-1.4\solr/biblio. I can't remember exactly where that is coming from -- probably either the VUFIND_HOME environment variable or a setting in the import/import.properties file. You might want to check both your environment setting and your import.properties and change the backslashes (\) to forward slashes (/). If that doesn't help, a couple other questions: 1.) Have you recently tried to erase your Solr index? 2.) Are all MARC imports failing, or is it just related to this file? - Demian > -----Original Message----- > From: Ashok Yakkaldevi [mailto:editortmrj@...] > Sent: Thursday, March 07, 2013 5:52 AM > To: vufind-tech@... > Subject: [VuFind-Tech] I had got following error while executing .mrc file , > plz help me? > > C:\vufind-1.4>import-marc.bat ee_2010_march_all.mrc > Now Importing ee_2010_march_all.mrc ... > "C:\Program Files\Java\jdk1.7.0_15\bin\java" -Xms512m -Xmx512m > -Dsolr.core.name= > biblio -Dsolrmarc.path=C:\vufind-1.4\import -jar > C:\vufind-1.4\import\SolrMarc. > jar C:\vufind-1.4\import\import.properties ee_2010_march_all.mrc > Mar 07, 2013 3:57:34 PM org.solrmarc.marc.MarcImporter main > INFO: Starting SolrMarc indexing. > Mar 07, 2013 3:57:35 PM org.solrmarc.tools.Utils getPropertyFileAbsoluteURL > INFO: Opening file: C:\vufind-1.4\import\import.properties > Mar 07, 2013 3:57:35 PM org.solrmarc.marc.MarcImporter getSolrServerProxy > INFO: Updating to Solr index at C:\vufind-1.4\solr > Mar 07, 2013 3:57:35 PM org.solrmarc.marc.MarcImporter getSolrServerProxy > INFO: Using Solr core biblio > Mar 07, 2013 3:57:35 PM org.solrmarc.solr.SolrCoreLoader loadEmbeddedCore > INFO: Using the multicore schema file at : C:\vufind-1.4\solr\solr.xml > Mar 07, 2013 3:57:35 PM org.solrmarc.solr.SolrCoreLoader loadEmbeddedCore > INFO: Using the biblio core > Mar 07, 2013 3:57:35 PM org.solrmarc.solr.SolrCoreLoader loadEmbeddedCore > INFO: Using the data directory of: C:\vufind-1.4\solr/biblio > Mar 07, 2013 3:57:36 PM org.apache.solr.common.SolrException log > SEVERE: java.lang.RuntimeException: java.io.IOException: The filename, > directory > name, or volume label syntax is incorrect > at org.apache.solr.core.SolrCore.initIndex(SolrCore.java:409) > at org.apache.solr.core.SolrCore.<init>(SolrCore.java:554) > at org.apache.solr.core.CoreContainer.create(CoreContainer.java:463) > at org.apache.solr.core.CoreContainer.load(CoreContainer.java:316) > at org.apache.solr.core.CoreContainer.load(CoreContainer.java:207) > at org.apache.solr.core.CoreContainer.<init>(CoreContainer.java:177) > at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > Method) > > at > sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct > orAccessorImpl.java:57) > at > sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC > onstructorAccessorImpl.java:45) > at java.lang.reflect.Constructor.newInstance(Constructor.java:525) > at > org.solrmarc.solr.SolrCoreLoader.loadEmbeddedCore(SolrCoreLoader.java > :231) > at > org.solrmarc.marc.MarcImporter.getSolrServerProxy(MarcImporter.java:8 > 39) > at > org.solrmarc.marc.MarcImporter.loadLocalProperties(MarcImporter.java: > 202) > at > org.solrmarc.marc.MarcHandler.loadProperties(MarcHandler.java:171) > at org.solrmarc.marc.MarcHandler.init(MarcHandler.java:119) > at org.solrmarc.marc.MarcImporter.main(MarcImporter.java:857) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl. > java:57) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces > sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at com.simontuffs.onejar.Boot.run(Boot.java:334) > at com.simontuffs.onejar.Boot.main(Boot.java:170) > Caused by: java.io.IOException: The filename, directory name, or volume > label sy > ntax is incorrect > at java.io.WinNTFileSystem.canonicalize0(Native Method) > at java.io.Win32FileSystem.canonicalize(Win32FileSystem.java:414) > at java.io.File.getCanonicalPath(File.java:589) > at org.apache.solr.core.SolrCore.initIndex(SolrCore.java:380) > ... 21 more > > Mar 07, 2013 3:57:36 PM org.apache.solr.common.SolrException log > SEVERE: java.lang.RuntimeException: java.io.IOException: The filename, > directory > name, or volume label syntax is incorrect > at org.apache.solr.core.SolrCore.initIndex(SolrCore.java:409) > at org.apache.solr.core.SolrCore.<init>(SolrCore.java:554) > at org.apache.solr.core.CoreContainer.create(CoreContainer.java:463) > at org.apache.solr.core.CoreContainer.load(CoreContainer.java:316) > at org.apache.solr.core.CoreContainer.load(CoreContainer.java:207) > at org.apache.solr.core.CoreContainer.<init>(CoreContainer.java:177) > at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > Method) > > at > sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct > orAccessorImpl.java:57) > at > sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC > onstructorAccessorImpl.java:45) > at java.lang.reflect.Constructor.newInstance(Constructor.java:525) > at > org.solrmarc.solr.SolrCoreLoader.loadEmbeddedCore(SolrCoreLoader.java > :231) > at > org.solrmarc.marc.MarcImporter.getSolrServerProxy(MarcImporter.java:8 > 39) > at > org.solrmarc.marc.MarcImporter.loadLocalProperties(MarcImporter.java: > 202) > at > org.solrmarc.marc.MarcHandler.loadProperties(MarcHandler.java:171) > at org.solrmarc.marc.MarcHandler.init(MarcHandler.java:119) > at org.solrmarc.marc.MarcImporter.main(MarcImporter.java:857) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl. > java:57) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces > sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at com.simontuffs.onejar.Boot.run(Boot.java:334) > at com.simontuffs.onejar.Boot.main(Boot.java:170) > Caused by: java.io.IOException: The filename, directory name, or volume > label sy > ntax is incorrect > at java.io.WinNTFileSystem.canonicalize0(Native Method) > at java.io.Win32FileSystem.canonicalize(Win32FileSystem.java:414) > at java.io.File.getCanonicalPath(File.java:589) > at org.apache.solr.core.SolrCore.initIndex(SolrCore.java:380) > ... 21 more > > Mar 07, 2013 3:57:37 PM org.apache.solr.common.SolrException log > SEVERE: java.lang.RuntimeException: java.io.IOException: The filename, > directory > name, or volume label syntax is incorrect > at org.apache.solr.core.SolrCore.initIndex(SolrCore.java:409) > at org.apache.solr.core.SolrCore.<init>(SolrCore.java:554) > at org.apache.solr.core.CoreContainer.create(CoreContainer.java:463) > at org.apache.solr.core.CoreContainer.load(CoreContainer.java:316) > at org.apache.solr.core.CoreContainer.load(CoreContainer.java:207) > at org.apache.solr.core.CoreContainer.<init>(CoreContainer.java:177) > at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > Method) > > at > sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct > orAccessorImpl.java:57) > at > sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC > onstructorAccessorImpl.java:45) > at java.lang.reflect.Constructor.newInstance(Constructor.java:525) > at > org.solrmarc.solr.SolrCoreLoader.loadEmbeddedCore(SolrCoreLoader.java > :231) > at > org.solrmarc.marc.MarcImporter.getSolrServerProxy(MarcImporter.java:8 > 39) > at > org.solrmarc.marc.MarcImporter.loadLocalProperties(MarcImporter.java: > 202) > at > org.solrmarc.marc.MarcHandler.loadProperties(MarcHandler.java:171) > at org.solrmarc.marc.MarcHandler.init(MarcHandler.java:119) > at org.solrmarc.marc.MarcImporter.main(MarcImporter.java:857) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl. > java:57) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces > sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at com.simontuffs.onejar.Boot.run(Boot.java:334) > at com.simontuffs.onejar.Boot.main(Boot.java:170) > Caused by: java.io.IOException: The filename, directory name, or volume > label sy > ntax is incorrect > at java.io.WinNTFileSystem.canonicalize0(Native Method) > at java.io.Win32FileSystem.canonicalize(Win32FileSystem.java:414) > at java.io.File.getCanonicalPath(File.java:589) > at org.apache.solr.core.SolrCore.initIndex(SolrCore.java:380) > ... 21 more > > Error: Problem instantiating SolrCore > Mar 07, 2013 3:57:37 PM org.solrmarc.solr.SolrCoreLoader loadEmbeddedCore > SEVERE: Error: Problem instantiating SolrCore > java.lang.reflect.InvocationTargetException > at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native > Method) > > at > sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstruct > orAccessorImpl.java:57) > at > sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingC > onstructorAccessorImpl.java:45) > at java.lang.reflect.Constructor.newInstance(Constructor.java:525) > at > org.solrmarc.solr.SolrCoreLoader.loadEmbeddedCore(SolrCoreLoader.java > :297) > at > org.solrmarc.marc.MarcImporter.getSolrServerProxy(MarcImporter.java:8 > 39) > at > org.solrmarc.marc.MarcImporter.loadLocalProperties(MarcImporter.java: > 202) > at > org.solrmarc.marc.MarcHandler.loadProperties(MarcHandler.java:171) > at org.solrmarc.marc.MarcHandler.init(MarcHandler.java:119) > at org.solrmarc.marc.MarcImporter.main(MarcImporter.java:857) > at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) > at > sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl. > java:57) > at > sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces > sorImpl.java:43) > at java.lang.reflect.Method.invoke(Method.java:601) > at com.simontuffs.onejar.Boot.run(Boot.java:334) > at com.simontuffs.onejar.Boot.main(Boot.java:170) > Caused by: java.lang.NullPointerException > at > org.solrmarc.solr.embedded.SolrServerEmbeddedImpl.<init>(SolrServerEm > beddedImpl.java:41) > ... 16 more > > > > > -- > View this message in context: http://vufind.2307425.n4.nabble.com/I-had-got- > following-error-while-executing-mrc-file-plz-help-me-tp4661477.html > Sent from the vufind-tech mailing list archive at Nabble.com. > > ------------------------------------------------------------------------------ > Symantec Endpoint Protection 12 positioned as A LEADER in The Forrester > Wave(TM): Endpoint Security, Q1 2013 and "remains a good choice" in the > endpoint security space. For insight on selecting the right partner to > tackle endpoint security challenges, access the full report. > http://p.sf.net/sfu/symantec-dev2dev > _______________________________________________ > Vufind-tech mailing list > Vufind-tech@... > https://lists.sourceforge.net/lists/listinfo/vufind-tech |
From: Demian Katz <demian.katz@vi...> - 2013-03-07 00:40:02
|
Check the [Cache] type setting in your searches.ini -- if it is missing, it might cause that problem. (See the code in the constructor of \VuFind\Cache\Manager to see how the searchspecs cache is initialized). We should probably add code to disable caching if the setting is missing rather than throwing a fatal error -- I'll try to take care of that later in the week. - Demian ________________________________ From: Bryon Czoch [bczoch@...] Sent: Wednesday, March 06, 2013 6:31 PM To: vufind-tech@... Subject: [VuFind-Tech] Trouble with VuFind/src/VuFind/Config/SearchSpecsReader.php ?? Any idea why I would be getting this error? Could this have anything to do with creating our own Chicago module? Bryon |