Skip to content

ILLiad Known Issues

  • Hot ideas
  • Top ideas
  • New ideas
  • My feedback

149 results found

  1. 0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Staff Client  ·  Admin →
  2. 0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Staff Client  ·  Admin →
  3. Dropped User/Staff/LenderAddresses tables need permissions added back

    The permissions for the dropped tables are not being added back/copied over and have to be done manually after the update.

    v9.0
    Bug#3903

    0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Staff Manager  ·  Admin →
  4. SLLoginFailed not showing up for invalid Username on Forgot Password

    The invalid username status line doesn't seem to be triggering the SLLoginFailed customization key on the Forgot Password page. The status line does appear if triggered on the logon pages.

    v9.0 & 8.7
    Bug#4147

    0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Web Interface  ·  Admin →
  5. 0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Staff Client  ·  Admin →
  6. SQL Alias Manager does not display properly with high DPI

    In SQL Alias Manager v1.2.2 the textboxes to enter a server address and the database name are not visible.

    Workaround: If you shrink the page splitter and move to the left, the textboxes will begin to appear.

    Bug#3792

    0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

  7. ILLiad print datasource using legacy headers

    When printing the PrintAddress.doc template from the client, the PrintAddress.xlsx data source file that is created has the Legacy style headers for both the Legacy queue and the Print queue.

    v8.7.2
    Bug#3797

    0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Printing  ·  Admin →
  8. BillingManagerPrintDataPath defaults to C:\illiad\print\ on Client install

    The data source for the Billing Manager printing process still defaults to C:\illiad\print\ in the Customization Manager, but newer installations of the ILLiad client don't create this folder. This only occurs for new installations who don't have the print folder from previous installations.

    v9.0 & 8.7
    Bug#3887

    0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Printing  ·  Admin →
  9. 0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Staff Client  ·  Admin →
  10. System addons that explicitly set FormNames can result in loading the addon multiple times

    If a system addon is created but FormNames are also entered, the addon will be loaded for both the system script environment and for each form script environment that is specified. An example where this causes errors is when registering system event handlers which can only be registered to a single addon.
     
    Forms are not relevent in Library, System, or Server addons.

    0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Addons  ·  Admin →
  11. 0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Reporting  ·  Admin →
  12. Lender Address form throws an error

    FormLenderAddresses will throw an exception when the request tab is opened without the lender being saved first.

    0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Staff Client  ·  Admin →
  13. 0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

  14. Odyssey Manager creates blank pdfs

    Odyssey Manager fails to convert large TIF files of approximately 1 GB to PDF. The log does not indicate a problem but shows the process occurring in just a few seconds.  The resulting PDF file is blank.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

  15. Unable to modify some ZServer configuration fields in Customization Manager for MARC records

    If a Z39.50 server configuration is set to use MARC  holdings, the availability fields become read-only. If you need to edit the availability fields, please contact your support representative so they can edit directly in database for you. v8.7 and v9.0

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

  16. Change Password form does not have correct tab ordering for the ForcePasswordReset checkbox

    The Force Password Reset checkbox does not have the focus prior to the Ok button for proper Top->Bottom & Left->Right expectations. v9.0.3

    0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Web Interface  ·  Admin →
  17. 3 of 9 barcode font missing after Version 9 update

    Some customers are experiencing issues with the 3 of 9 barcode font being removed during the 9.0 client update. This seems to be dependent on previous install/update scenarios.

    Workaround: The issue can be resolved by manually installing the font or re-running the client installer in repair mode.

    0 votes

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Printing  ·  Admin →
  18. Z39.50 YazLoader typo & wrong dependency loaded

    Repro Steps
    The YazLoader class (only used for loading Z39.50 in an addon) has a typo and should be libraryname. Also the YazLoader is not loading the zlib1.dll file despite the log indicating it has. It actually loads libxslt.dll a second time. zlib1.dll is a dependency of libxml2.dll and not a direct dependency of yaz3.dll which has allowed it to not work with bundling the zlib1.dll with addons using this. Currently the LendingAvailabilityAddon for Wisconsin is the only user of this code.

    [DllImport("kernel32", CharSet = CharSet.Unicode, SetLastError = true)]
    private extern static IntPtr LoadLibrary(string librayName);
    ....
    log.Debug("Loading zlib1.dll");
    LoadLibrary(System.IO.Path.Combine(path, "libxslt.dll"));

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Staff Client  ·  Admin →
  19. ILLiad Reports - Prior NVTGC Remembered if back button used

    Repro Steps
    ILLiad reports sometimes generate with more sites than were intended.

    Steps to Reproduce

    1. Find or set up an ILLiad server that has multiple sites
    2. Go to <illiad_server>/ILLiad/webreports
    3. Choose any report and select one of the sites that is not "ALL". Make sure that the selected site is the only site that is selected.
    4. Generate the report, notice that the

    Workaround

    If you use the menu links when navigating the WebReports module, this issues does not occur.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Reporting  ·  Admin →
  20. ILLiad- Statuses do not alert screen readers about the problem on the page (incorrect password, failed validation, etc)

    It is very confusing to fail validation while using a screen reader because it isn't apparent that validation failed.

    It should likely alert the user on page reload.

    1 vote

    We're glad you're here

    Please sign in to leave feedback

    Signed in as (Sign out)

    We’ll send you updates on this idea

    0 comments  ·  Web Interface  ·  Admin →

Feedback and Knowledge Base