https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37416
--- Comment #3 from David Nind <[email protected]> --- Some things to work out: 1. How to identify the cause of the 500 error: 1.1 Check the Koha logs on the server (which ones, where?) 1.2 Use the web browser web developer tools to see if there are any errors in the console 2. SQL queries for reports to identify item data issues: 2.1 Items not having a home library and current library (both are required) 2.2 Item date fields that have 0000-00-00 - these need to be an actual date or NULL (MARC21 date fields are defined in 952, UNIMARC date fields are in 995). 2.3 Invalid entries for any of the item fields that use authorized values - the values need to match the authorized values lists. 3. Check for other data issues: 3.1 Check if bibliographic frameworks have any errors: Administration > Catalog > MARC Bibliographic framework test2. 3.2 Command line scripts to help identify any issues: - misc/maintenance/audit_database.pl - checks to see if there are any database structure issues (added in 23.11) - misc/maintenance/search_for_data_inconsistencies.pl- checks for some data inconsistencies (but doesn't fix them), including: . items that have undefined home libraries (homebranch) and holding library (holdingbranch) . authorities with undefined authority types (authtypecodes) . issues with item types (item type codes must match with what is defined in Administration > Basic parameters > Item types; also includes issues when the 'item-level_itypes' system preference is set to 'specific item') . invalid MARCXML in bibliographic records (this now shows on record details pages) . patrons with invalid category types for their age (not relevant to item data) . bibliographic records without a title . patron guarantee/guarantor issues -- You are receiving this mail because: You are watching all bug changes. You are the assignee for the bug. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
