troubleshooting:problems_with_the_catalog
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revision | |||
| troubleshooting:problems_with_the_catalog [2008/12/02 23:21] – format long line dbs | troubleshooting:problems_with_the_catalog [2022/02/10 13:34] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ======Troubleshooting problems with the catalog====== | ||
| + | |||
| + | =====Problem: | ||
| + | There are a number of reasons that can cause searches to never return results. | ||
| + | |||
| + | ====autogen.sh has not been run recently==== | ||
| + | Every time you change your org_unit hierarchy, you have to run '' | ||
| + | |||
| + | ====Check your org unit hierarchy==== | ||
| + | Run the following query in '' | ||
| + | SELECT aou.id, aou.parent_ou, | ||
| + | FROM actor.org_unit aou | ||
| + | INNER JOIN actor.org_unit_type aout | ||
| + | ON (aou.ou_type = aout.id) | ||
| + | ORDER BY aout.depth; | ||
| + | </ | ||
| + | |||
| + | **Sample output**< | ||
| + | id | parent_ou | shortname | ||
| + | ----+-----------+------------+-------+-------------------- | ||
| + | 1 | | CONIFER | ||
| + | 2 | 1 | LUSYS | 1 | System | ||
| + | 3 | 2 | JND | 1 | Branch | ||
| + | </ | ||
| + | |||
| + | If you meant for your hierarchy to look like this:< | ||
| + | Consortium (CONIFER) | ||
| + | | | ||
| + | | ||
| + | | | ||
| + | |-> Branch (JND) | ||
| + | </ | ||
| + | =====XMLENT XML Parse Error in Apache error logs===== | ||
| + | If your Apache error log contains the following line, you probably have '' | ||
| + | < | ||
| + | XMLENT XML Parse Error: not well-formed (invalid token) at line 1: | ||
| + | parsing / | ||
| + | referer: http:// | ||
| + | You need to disable '' | ||
| + | a2dismod deflate</ | ||