X-Git-Url: http://git.rot13.org/?a=blobdiff_plain;f=koha-tmpl%2Fintranet-tmpl%2Fprog%2Fen%2Fmodules%2Fabout.tt;h=a3758ae26a33690b4538fd510c85dbc7cef1d74a;hb=3c5a368db8d6cae4219d03b0a84f63c36f48cc81;hp=ad5eabd83849e24487eb00f098a9f014238ac180;hpb=1a2d804a8094ea05199803593698b4294f029913;p=koha.git diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt index ad5eabd838..a3758ae26a 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/about.tt @@ -1,14 +1,9 @@ +[% USE HtmlTags %] +[% USE Koha %] +[% SET footerjs = 1 %] [% INCLUDE 'doc-head-open.inc' %] Koha › About Koha [% INCLUDE 'doc-head-close.inc' %] - [% INCLUDE 'header.inc' %] @@ -51,6 +46,65 @@ [% IF (is_psgi) %] PSGI: [% psgi_server |html %] [% END %] + [% IF Koha.Preference('SearchEngine') == 'Elasticsearch' %] + + Elasticsearch: + [% IF elasticsearch_fatal_config_error %] + [% elasticsearch_fatal_config_error %] + [% ELSE %] + + Nodes: + [% elasticsearch_status.nodes.join(' / ') %] + | + Status: + [% IF elasticsearch_status.running %] + running + | + Indices: + [% FOREACH index IN elasticsearch_status.indexes %] + [% index.index_name %] (count: [% index.count %])[% UNLESS loop.last %], [% END %] + [% END %] + [% ELSE %] + not running + [% END %] + + [% END %] + + [% END %] + Memcached: + + Servers: [% IF memcached_servers %][% memcached_servers | html %] + [% ELSE %]undefined[% END %] | + Namespace: [% IF memcached_namespace %][% memcached_namespace | html %] + [% ELSE %]undefined[% END %] | + Status: [% IF memcached_servers %] + [% IF memcached_running and is_memcached_still_active %] + running. + [% ELSE %] + not running. + [% IF is_psgi %] + Remember memcached needs to be started before Plack. + [% END %] + [% END %] + [% ELSE %] + unknown + [% END %] | + Config read from: + [% SWITCH where_is_memcached_config %] + [% CASE 'config_only' %] + koha-conf.xml + [% CASE 'ENV_only' %] + ENV Note that the right place to define the memcached config is in your $KOHA_CONF file + [% CASE 'both' %] + ENV and koha-conf.xml Note that the right place to define the memcached config is in your $KOHA_CONF file. To avoid any misunderstanding you should not export the memcached config from ENV. + [% CASE # nowhere %] + Nowhere Note that the right place to define the memcached config is in your $KOHA_CONF file. Currently you do not have a valid memcached configuration defined. + [% END %] + [% IF effective_caching_method != 'Cache::Memcached::Fast' %] + | Effective caching method: [% effective_caching_method %] + [% END %] + + Zebra version: [% zebraVersion |html %] [% IF (errZebraConnection == 10000) %] Error Zebra server seems not to be available. Is it started? @@ -103,16 +157,52 @@
- [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatron || warnPrefAnonymousPatron_PatronDoesNotExist || - warnNoActiveCurrency || QueryParserError || warnIsRootUser || xml_config_warnings.size || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError %] + [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatron || warnPrefAnonymousPatron_PatronDoesNotExist || warnNoActiveCurrency || QueryParserError || warnIsRootUser || xml_config_warnings.size || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration || has_ai_issues %] [% IF (warnIsRootUser) %]

Warning regarding current user

You are logged in as the database administrative user. This is not recommended because some parts of Koha will not function as expected when using this account.

Please log in instead with a regular staff account. To create a staff account, create a library, a patron category 'Staff' and add a new patron. Then give this patron permissions from 'More' in the toolbar.

[% END %] - [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatron || warnPrefAnonymousPatron_PatronDoesNotExist || - warnNoActiveCurrency || QueryParserError || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError%] + [% IF has_ai_issues %] +

Data problems

+

Some of your tables have problems with their auto_increment values which may lead to data loss.

+

You should not ignore this warning.

+

The problem is that InnoDB does not keep auto_increment across SQL server restarts (it is only set in memory). So on server startup the auto_increment values are set to max(table.id)+1.

+

To know how to avoid this problem see the related wiki page: + DBMS auto increment fix +

+ +

Problems found

+ [% IF ai_patrons %] +

Patrons

+

The following ids exist in both tables [% "borrowers" | $HtmlTags tag="strong" %] and [% "deletedborrowers" | $HtmlTags tag="strong" %]:

+

[% FOR p IN ai_patrons %][% p.borrowernumber %][% UNLESS loop.last %], [% END %][% END %]

+ [% END %] + [% IF ai_biblios %] +

Biblios

+

The following ids exist in both tables [% "biblio" | $HtmlTags tag="strong" %] and [% "deletedbiblio" | $HtmlTags tag="strong" %]:

+

[% FOR b IN ai_biblios %][% b.biblionumber %][% UNLESS loop.last %], [% END %][% END %]

+ [% END %] + [% IF ai_items %] +

Items

+

The following ids exist in both tables [% "items" | $HtmlTags tag="strong" %] and [% "deleteditems" | $HtmlTags tag="strong" %]:

+

[% FOR i IN ai_items %][% i.itemnumber %][% UNLESS loop.last %], [% END %][% END %]

+ [% END %] + [% IF ai_checkouts %] +

Checkouts

+

The following ids exist in both tables [% "issues" | $HtmlTags tag="strong" %] and [% "old_issues" | $HtmlTags tag="strong" %]:

+

[% FOR c IN ai_checkouts %][% c.issue_id %][% UNLESS loop.last %], [% END %][% END %]

+ [% END %] + [% IF ai_holds %] +

Holds

+

The following ids exist in both tables [% "holds" | $HtmlTags tag="strong" %] and [% "old_reserves" | $HtmlTags tag="strong" %]:

+

[% FOR h IN ai_holds %][% h.reserve_id %][% UNLESS loop.last %], [% END %][% END %]

+ [% END %] +
+ [% END %] + + [% IF warnPrefBiblioAddsAuthorities || warnPrefEasyAnalyticalRecords || warnPrefAnonymousPatron || warnPrefAnonymousPatron_PatronDoesNotExist || warnNoActiveCurrency || QueryParserError || AutoSelfCheckPatronDoesNotHaveSelfCheckPerm || AutoSelfCheckPatronHasTooManyPerm || warnStatisticsFieldsError || warnNoTemplateCaching || warnILLConfiguration %]

Warnings regarding the system configuration

@@ -156,6 +246,29 @@ The patron used for the self checkout module at the OPAC has too many permissions. They should only have circulate => self_checkout. [% END %] + [% IF warnNoTemplateCaching %] + + [% END %] + [% IF warnILLConfiguration %] + [% IF no_ill_backends %] + + [% END %] + [% IF ill_partner_code_not_defined %] + + [%END %] + [% IF ill_partner_code_doesnt_exist %] + + [% END %] + [% END %]
Preferences and parameters
Warning + You are missing the <template_cache_dir> entry in your koha-conf.xml file. + That will bring a performance boost to enable it. +
Warning + The ILL module is enabled, but there are no backends available. +
Warning + The ILL module is enabled, but no 'partner_code' defined in koha-conf.xml. Falling back to the hardcoded 'ILLLIBS'. +
Warning + The ILL module is enabled, but the configured 'partner_code' ([% ill_partner_code_doesnt_exist %]) is not defined on the system. +
[% END %] @@ -204,8 +317,8 @@ Warning The <zebra_bib_index_mode> entry is set to 'grs1'. GRS-1 support is now deprecated and will be removed in future releases. - Please use DOM instead by setting <zebra_bib_index_mode> to - 'dom' (full reindex required). + Please use DOM instead. To switch follow this page of wiki: + Switching to dom indexing [% ELSIF config_entry.error == 'zebra_bib_index_mode_mismatch_warn' %] @@ -218,8 +331,8 @@ Warning The <zebra_auth_index_mode> entry is set to 'grs1'. GRS-1 support is now deprecated and will be removed in future releases. - Please use DOM instead by setting <zebra_auth_index_mode> to - 'dom' (full reindex required). + Please use DOM instead. To switch follow this page of wiki: + Switching to dom indexing [% ELSIF config_entry.error == 'zebra_auth_index_mode_mismatch_warn' %] @@ -295,44 +408,49 @@
  • Albany Senior High School, Auckland, New Zealand (OPAC 'star-ratings' sponsorship)
  • -

    Koha 16.05 release team

    +

    Koha 17.11 release team

    @@ -860,4 +1032,13 @@
    + +[% MACRO jsinclude BLOCK %] + +[% END %] + [% INCLUDE 'intranet-bottom.inc' %]