| Summary: | 'Check out' tab search for patron gives perl error | ||
|---|---|---|---|
| Product: | Koha | Reporter: | Katrin Fischer <katrin.fischer> | 
| Component: | Patrons | Assignee: | Bugs List <koha-bugs> | 
| Status: | CLOSED WONTFIX | QA Contact: | Testopia <testopia> | 
| Severity: | normal | ||
| Priority: | P5 - low | CC: | gmcharlt, jonathan.druart, kyle, robin | 
| Version: | unspecified | ||
| Hardware: | All | ||
| OS: | All | ||
| See Also: | http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=11385 | ||
| GIT URL: | Initiative type: | --- | |
| Sponsorship status: | --- | Crowdfunding goal: | 0 | 
| Patch complexity: | --- | Documentation contact: | |
| Documentation submission: | Text to go in the release notes: | ||
| Version(s) released in: | Circulation function: | ||
| 
 
        
          Description
        
        
          Katrin Fischer
        
        
        
        
          2014-12-11 13:57:07 UTC
        
       
    Hm, I can see this in 2 different installations done from packages, but not in my dev environment, others can't reproduce so far... all ideas welcome. Ok, found the problem, in our koha-conf.xml file, there were some entries causing the problem: <memcached_servers>__MEMCACHED_SERVERS__</memcached_servers> <memcached_namespace>__MEMCACHED_NAMESPACE__</memcached_namespace> Emptying them out fixed the problem: <memcached_servers></memcached_servers> <memcached_namespace></memcached_namespace> Maybe should we add a check in the about page? Not sure how common the problem is - I think it happened because we tried to manually complete/change it. It's a bug.
It comes from SQLHelper
koha@koha-qa:~/src (BZ8306↑⚡)% git grep memcache | grep config
C4/SQLHelper.pm:    my $servers = C4::Context->config('memcached_servers');
C4/SQLHelper.pm:            key_prefix  => C4::Context->config('memcached_namespace') || 'koha',
    Reopened, but not critical now.  |