Forum Replies Created

Viewing 15 replies - 376 through 390 (of 476 total)
  • Plugin Author Robert Heller

    (@robertpheller)

    AWS returns a lot of ‘random’ information, some of which is only meaningful if you are selling the items or something. The Web Librarian lumps all of the fields it does not understand (eg has someplace else to put it) into the description field. Yes, it makes sense to go through the fields, esp. the description field, and edit what gets put there from AWS, deleting unneeded text, etc. You probably should not ‘blindly’ click submit after inserting from AWS. It is possible to ‘look up’ an item and then *selectively* insert fields rather than do a gross ‘insert item’, which populates all of the fields with all of the information AWS returns. ‘Look Up’ and selective insertion is useful if there are a few pieces of information missing and the ‘insert item’ is useful to initially fill in the fields for a new (and thus ‘blank’) item, but the ‘insert item’ function should always be followed up and the fields (esp. the description) checked and extranious text removed.

    Plugin Author Robert Heller

    (@robertpheller)

    There are no limits in the code for Web Librarian. The description field type is set to ‘text’, which I *presumed* is unlimited, but I guess it isn’t.

    The long version of your description is 658 characters long and the short version is 483, so I am *guessing* the limit is 512 characters.

    I wonder if I should change the description field type to longtext. OTOH, I wonder if it really makes sense to have such a long description field. It *is* possible to simply have a regular WP page or post with as long and detailed a description as you like. It is also possible to use the weblib_itemdetail short code in a page or post that contains the long and detailed description to provide a hook to the collection database for the item, such as its barcode, status (checked out, due date, etc.), call number, hold request button, etc.

    Plugin Author Robert Heller

    (@robertpheller)

    I don’t understand how the description goes blank. I cannot replicate this error.

    What version of wordpress are you using?
    What version of web librarian are you using?

    What O/S is the server running? (If you are running a MS-Windows server, I can be of little help.)

    Plugin Author Robert Heller

    (@robertpheller)

    The ‘invalid type’ message has nothing to do with the date it has to do with the type field. You need to define one or more ‘types’ using the the collection type page. The collection types are used for statistics and to define the loan period (eg 3 weeks for books, 1 week for DVDs).

    Plugin Author Robert Heller

    (@robertpheller)

    YYYY-MM-DD should work (eg 1992-01-01).

    Plugin Author Robert Heller

    (@robertpheller)

    Just to be clear: in order to check something out, you need to open the patron’s circulation record. Web Librarian is not quite as ‘sophisticated’ as Open ILL (Evergreen), which has a screen where a patron’s barcode can be scanned (yes, Evergreen not only has barcodes for items, it also has them for people — the barcodes for people are on the back of their library cards). Once the patron’s record is opened, the circulation desk person can then scan the books, DVDs, etc. the patron wants to checkout. Web Librarian works something this.

    Plugin Author Robert Heller

    (@robertpheller)

    First, you need to login to the backend (dashboard) as a user who can ‘manage_circirlation’: either as a Librarian, Senior Aid, or a Volunteer.

    Then select the Circulation Desk page from the WP menu on the left.

    Next you have a couple of options. If you really have a barcode scanner and books with barcode stickers on them, you can just Lookup Patron or Find Patron, then make sure the insert focus is in the barcode entry, then scan the barcode and click on ‘Checkout Item’.

    Alternitively, you can first look up the item and <Select> it. *Then* find or look up a patron.

    Looking up or finding a patron changes the button next to the barcode entry to ‘Checkout Item’. Clicking on this button checks out the item.

    Plugin Author Robert Heller

    (@robertpheller)

    Argg! MS-Windows is *obviously* not a POSIX operating system. I’m guessing mess-windows does not bind stderr to anything — ALL POSIX/UNIX/Linux systems bind stderr to something, typically on a LAMP server this would be Apache’s errro_log. I’m guess IIS does not have an error log or else php under IIS does not bind stderr to anything. Dumb. How do they expect people to debug code? Or log errors?

    Plugin Author Robert Heller

    (@robertpheller)

    Were you able to solve your problem? Did upgrading 3.2.9.2 fix things?

    Plugin Author Robert Heller

    (@robertpheller)

    OK, if you use the example short code page from the manual:

    [weblib_searchform]
    [weblib_itemlist holdbutton=1 inlinemoreinfo=1]

    You will get a search form with the search results. The *default* search results are all books in barcode (‘system’) order.

    If you want a search form without default search results, you need to create a ‘public’ page with just:

    [weblib_searchform actionurl='resultsurl']

    and another page (at ‘resultsurl’) containing:

    [weblib_searchform]
    [weblib_itemlist holdbutton=1 inlinemoreinfo=1]

    Don’t provide a regular navigation link to the second page (eg use a custom menu and leave this page out of the menu tree), if you don’t want people to land there and get the ‘default’ search results.

    Note: if your pages are using the default permalinks (eg ‘?p=id’), you should set method to ‘post’:

    [weblib_searchform actionurl='/?p=id' method='post']

    As for checkout, this is done on the back end by a user with at least ‘manage_circulation’ priviledge using the Circulation Desk admin page.

    Plugin Author Robert Heller

    (@robertpheller)

    If you got 3.2.9.3, the bug should be fixed. (I released 3.2.9.3 today at 13:45 Eastern time.)

    Plugin Author Robert Heller

    (@robertpheller)

    OK, this is a small bug. Fixed in 3.2.9.3. You should update the plugin.

    Plugin Author Robert Heller

    (@robertpheller)

    OK, first of all a “Reference collection” is not quite the correct thing. Normally a “Reference collection” would be *physical* items that must not leave the library: things like encylopedia volumes or historical documents. At least that is the traditional meaning associated with a “Reference collection”. What you are talking about is something new. I am not sure how it would fit with Web Librarian and just what sort of accounting (if any) would be useful. It will require some thought.

    Plugin Author Robert Heller

    (@robertpheller)

    I think you have some confusion going on here. There are two *separate* concepts here. ‘library’ is something of an ambibious word. *Normally* (and I believe originally) there where two kinds of libraries: *lending* libraries and non-lending libraries. Both dealth with physical assets (books, scrolls, etc.). These days most libraries are lending libraries, which might also have some items that are not lendable, items that can only be used in the library, usually rare books or things like reference materials (like encylopedias).

    More modernly, people have started using the word library in a *different* sense relating to digital assets, as is a ‘library of downloadable software or documents’. This is really something different, since the assets in question can be infinitately replicated (copied), and thus the idea of lending makes no sense.

    The Web Librarian is really only meant for physical assets that can be loaned out. The download manager is not really meant as a searchable database. It sounds like what is needed is a completely different sort of plugin, something that is something of a hybrid of the two. I don’t believe such a plugin exists.

    Plugin Author Robert Heller

    (@robertpheller)

    So, esentially, you are ‘giving away’ the PDFs — that is, people can download them and simply keep them. I am not sure what sorts of ‘management’ of this you are looking for. I guess having a searchable database makes sense. Is there some sort of access control being imposed — that is can anyone download the files or is this restricted to only library patrons?

    There is a WP plugin, named “Download Manager” which can be used to manage downloadable files, including with access restrictions.

    The Web Librarian is specificly intended for physical items (eg books, DVDs, etc.) that can be loaned out.

Viewing 15 replies - 376 through 390 (of 476 total)