[Koha] TMP directory configuration

2018-10-19 Thread Przemek Kosiński

Hi,
In Koha 18.05.04.000 in menu About Koha - tab System Information I hava 
a message:



XML configuration file
Warning	You are missing the  entry in your koha-conf.xml file. 
Please add it, pointing to the configured temporary directory for your 
Koha instance. The effective temporary directory is '/tmp'.


But I already set this entry in koha xml file

/tmp/biblio-mian

Memcached also running

Memcached:	Servers: 127.0.0.1:11211 | Namespace: koha_biblio-main | 
Status: running. | Config read from: koha-conf.xml


Koha version:   18.05.04.000
OS version ('uname -a'):	Linux bandicoot 4.15.0-36-generic #39-Ubuntu 
SMP Mon Sep 24 16:19:09 UTC 2018 x86_64

Perl interpreter:   /usr/bin/perl
Perl version:   5.026001
Perl @INC:  /usr/share/koha/lib
/usr/share/koha/installer
/usr/share/koha/lib/installer
/etc/perl
/usr/local/lib/x86_64-linux-gnu/perl/5.26.1
/usr/local/share/perl/5.26.1
/usr/lib/x86_64-linux-gnu/perl5/5.26
/usr/share/perl5
/usr/lib/x86_64-linux-gnu/perl/5.26
/usr/share/perl/5.26
/usr/local/lib/site_perl
/usr/lib/x86_64-linux-gnu/perl-base
/var/lib/koha/biblio-main/plugins
MySQL version:	mysql Ver 15.1 Distrib 10.1.34-MariaDB, for 
debian-linux-gnu (x86_64) using readline 5.2

Apache version: Server version: Apache/2.4.29 (Ubuntu)
PSGI:   Plack (deployment)
Memcached:	Servers: 127.0.0.1:11211 | Namespace: koha_biblio-main | 
Status: running. | Config read from: koha-conf.xml
Zebra version:	Zebra 2.0.59 (C) 1994-2014, Index Data Zebra is free 
software, covered by the GNU General Public License, and you are welcome 
to change it and/or distribute copies of it under certain conditions. 
SHA1 ID: c00bfddbf0f3608340d61298acc61dafb167f9b2 Using ICU

Date and time:  19/10/2018 09:47
Time zone:	Used: Europe/Warsaw | Config: Undefined | Environment (TZ): 
Undefined


Regards,
Przemek Kosiński
--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha running slow

2018-07-19 Thread Przemek Kosiński

Hello,

What server configuration - memory, cpu, etc.?
Do you have PLACK and memcached enabled?
Show info from: About Koha> tab Server and tab System information.

Regards
Przemek Kosiński

W dniu 20.07.2018 o 08:38, shankar reddy Kolle pisze:

Dear sir/madam

We have installed Koha 17.11.05 in the Ubuntu 16.04 using package method
and the system is running slow and it is not possible to work.
Please can anyone tell how to over come this problem.

Yours sincerely
Dr. Shankar Reddy Kolle
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha




--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Checkin issues

2018-06-28 Thread Przemek Kosiński

I think that this is the problem described in this link:
https://wiki.koha-community.org/wiki/DBMS_auto_increment_fix

apply this patch and everything should work as it should.

Best regards

Przemek Kosiński

W dniu 28.06.2018 o 10:23, Nalisha Tamang pisze:

I m unable to check-in book... the problem shows :the ids exist both in
issues and old issues table :1 .. And I m new into koha and Ubuntu.. Please
help me out
Thanks!
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha




--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Migration problem

2018-06-12 Thread Przemek Kosiński

Hi Jonathan,
In version 17.11.05 there was no problem when I tried to import the 
base. Everthing was ok.


The problem appeared in 17.11.06. The solution proposed by Jon Turner 
works very well:

Execute two queries in mysql:

CREATE TABLE IF NOT EXISTS club_enrollments (
  id int(11) NOT NULL AUTO_INCREMENT,
  club_id int(11) NOT NULL,
  borrowernumber int(11) NOT NULL,
  date_enrolled timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  date_canceled timestamp NULL DEFAULT NULL,
  date_created timestamp NULL DEFAULT NULL,
  date_updated timestamp NULL DEFAULT NULL,
  branchcode varchar(10) NULL DEFAULT NULL,
  PRIMARY KEY (id),
  KEY club_id (club_id),
  KEY borrowernumber (borrowernumber),
  KEY branchcode (branchcode),
  CONSTRAINT club_enrollments_ibfk_1 FOREIGN KEY (club_id) 
REFERENCES clubs (id) ON DELETE CASCADE ON UPDATE CASCADE,
  CONSTRAINT club_enrollments_ibfk_2 FOREIGN KEY 
(borrowernumber) REFERENCES borrowers (borrowernumber) ON DELETE CASCADE 
ON UPDATE CASCADE,
  CONSTRAINT club_enrollments_ibfk_3 FOREIGN KEY (branchcode) 
REFERENCES branches (branchcode) ON DELETE SET NULL ON UPDATE CASCADE

) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

CREATE TABLE IF NOT EXISTS club_enrollment_fields (
  id int(11) NOT NULL AUTO_INCREMENT,
   club_enrollment_id int(11) NOT NULL,
   club_template_enrollment_field_id int(11) NOT NULL,
   `value` text NOT NULL,
   PRIMARY KEY (id),
   KEY club_enrollment_id (club_enrollment_id),
   KEY club_template_enrollment_field_id 
(club_template_enrollment_field_id),
   CONSTRAINT club_enrollment_fields_ibfk_1 FOREIGN KEY 
(club_enrollment_id) REFERENCES club_enrollments (id) ON DELETE CASCADE 
ON UPDATE CASCADE,
   CONSTRAINT club_enrollment_fields_ibfk_2 FOREIGN KEY 
(club_template_enrollment_field_id) REFERENCES 
club_template_enrollment_fields (id) ON DELETE CASCADE ON UPDATE CASCADE

 ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;

With the koha schema update there were no problems or errors.

I have'nt any tables with club*

Migrate was very simple - on old server I dump with koha-dump data from 
database koha 3.20  -> on new server (Ubuntu 16.04) I cerated new 
instance koha and import from file database.sql to new base.
Then I run koha-update-schema and run koha-rebulid-zebra. That's all. In 
koha 17.11.05 work without problems in 17.11.06 two trys and two failed.



Redgards,
Przemek
W dniu 12.06.2018 o 14:52, Jonathan Druart pisze:

Hi,

The table club_enrollments has been added in 16.12.00.027
Do you have other tables with names starting with club_*?

How did you migrate? Are you sure there were no errors during the DB 
upgrade process?


Regards,
Jonathan


On Tue, 12 Jun 2018 at 06:48 Przemek Kosiński 
mailto:p.kosin...@biblioteka24.eu>> wrote:


Hi everyone,

I tried to do a base migration from 3.20 to 17.11.06. The conversion of
the database to the new schema and indexation has gone ok - everything
works except the possibility of a full preview of the patron - after
choosing one they receive such an error:

Template process failed: undef error -
DBIx::Class::Storage::DBI::_dbh_execute(): Table
'koha_biblio-main.club_enrollments' doesn't exist at
/usr/share/koha/lib/Koha/Objects.pm line 269

I did two attempts and this problem appeared every time.

System: Ubuntu 16.04LTS
DataBase: MariaDB 10.0.34
Plack not enabled - when enable plack I get an error: Internal
Server Error

In the version of koha 17.11.05 there was no such error - the earlier
attempt to migrate to this version was successful.

I have a question about what I can do about it.
Alternatively, how to withdrawal to an earlier version 17.11.05 to
check
whether this error can be invoked.

    Best regards
Przemek Kosiński

-- 
*

Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu <http://www.biblioteka24.eu>
mail: p.kosin...@biblioteka24.eu <mailto:p.kosin...@biblioteka24.eu>
*
___
Koha mailing list http://koha-community.org
Koha@lists.katipo.co.nz <mailto:Koha@lists.katipo.co.nz>
https://lists.katipo.co.nz/mailman/listinfo/koha




--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Migration problem

2018-06-12 Thread Przemek Kosiński

Hi everyone,

I tried to do a base migration from 3.20 to 17.11.06. The conversion of 
the database to the new schema and indexation has gone ok - everything 
works except the possibility of a full preview of the patron - after 
choosing one they receive such an error:


Template process failed: undef error - 
DBIx::Class::Storage::DBI::_dbh_execute(): Table 
'koha_biblio-main.club_enrollments' doesn't exist at 
/usr/share/koha/lib/Koha/Objects.pm line 269


I did two attempts and this problem appeared every time.

System: Ubuntu 16.04LTS
DataBase: MariaDB 10.0.34
Plack not enabled - when enable plack I get an error: Internal Server Error

In the version of koha 17.11.05 there was no such error - the earlier 
attempt to migrate to this version was successful.


I have a question about what I can do about it.
Alternatively, how to withdrawal to an earlier version 17.11.05 to check 
whether this error can be invoked.


Best regards
Przemek Kosiński

--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Some questions about virtualization.

2017-09-18 Thread Przemek Kosiński

Hi
I have some questions about virtualization.

1. Does anyone use KOHA on virtualized servers?
2. What solution did you choose KVM, LXC / LDX, VMVare, ProxmoxVE or 
Docker containers?

3. Does it work on production servers or only on test servers?
4. Problems, challenges, thoughts?

Tips, hints, guides welcome;)
Przemek Kosinski
--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Problem with migration from KOHA 3.20 to 16.11.11

2017-09-18 Thread Przemek Kosiński

Hi,

Thanks for the hints. This explained a lot to me.
The data transfer attempt was made only for testing. I tested how 
migration works and whether there will be problems. Now I know what to 
expect.
I plan to migrate data to KOHA 17.05 on Ubuntu server 16.04 in the near 
future.


Thank you and best regards
Przemek

W dniu 15.09.2017 o 15:31, Jonathan Druart pisze:

Paul,

I am sure you understood what I meant: the Koha debian packages are based
on Jessie (and so Ubuntu 16.04).
We had problems with Apache versions (2.4) and other Perl libs that were
not packaged/packagable easily for Wheezy.
Debian packages are generated by only 1 guy (Mirko) and developers are
(almost) all working on the same system. Same for the CI, we only run tests
on Ubuntu 16.04 and Jessie. If someone need Wheezy support (or any other
linux distro support), they can contact us and propose their help.

 From the wiki page:
"""
As of November 2016, the Debian packages for Koha are based on Jessie
(Debian 8). Xenial (Ubuntu 16.04 LTS) is based on Jessie.
That means Ubuntu 14.04 LTS is no longer supported.
"""
+ http://lists.koha-community.org/pipermail/koha-devel/2016-July/042874.html

Regards,
Jonathan

On Thu, 14 Sep 2017 at 20:38 Paul A  wrote:


On 2017-09-14 09:51 AM, someone wrote:


Note that Ubuntu 14.04 is not longer supported.


Please note that Ubuntu 14.04 LTS is supported until April 2019 --
. Koha tends to be very
pro-active with enhancements (a potentially marvelous thing) but
possibly might leave stable operating systems in the dust.
--
Paul
Tired old sys-admin
[just celebrated 78 years of life, 62 years of FORTRAN, and 58 years of
COBOL]
[now ducking the inevitable flames]
[ ;=} ]
[still running Koha 3.8.24 on 14.04LTS as a reference, non-lending,
library at very respectable speeds on copper wire]
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha




--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Problem with migration from KOHA 3.20 to 16.11.11

2017-09-14 Thread Przemek Kosiński

Hello,
I have some problems with migration to new server and migrate to new 
version koha.



On the old  server with KOHA 3.20 I made the command "koha-dump 
biblio-main" (it's an instance name) - everything is fine - backup done.


and

On new test server with KOHA 16.11 execute command koha-restore 
biblio-main-2017-09-13.sql.gz biblio-main-2017-09-13.tar.gz


Serwer parameters:
Server: Ubuntu 14.04 LST
Mysql: mysql Ver 14.14 Distrib 5.5.57, for debian-linux-gnu (x86_64) 
using readline 6.3

Apache: Server version: Apache/2.4.7 (Ubuntu)


Restored? Not!  It didn't work.  After the above command - I received 
such output at the terminal:



ERROR 1396 (HY000) at line 1: Operation DROP USER failed for 
'koha_biblio-main'@'%'

ERROR 1046 (3D000) at line 2: No database selected
DBI 
connect('database=koha_biblio-main;host=localhost;port=3306','koha_biblio-main',...) 
failed: Access denied for user 'koha_biblio-main'@'%' to database 
'koha_biblio-main' at /usr/share/perl5/DBIx/Class/Storage/DBI.pm line 1395.
DBI 
connect('database=koha_biblio-main;host=localhost;port=3306','koha_biblio-main',...) 
failed: Access denied for user 'koha_biblio-main'@'%' to database 
'koha_biblio-main' at /usr/share/perl5/DBIx/Class/Storage/DBI.pm line 1395.
DBI 
connect('database=koha_biblio-main;host=localhost;port=3306','koha_biblio-main',...) 
failed: Access denied for user 'koha_biblio-main'@'%' to database 
'koha_biblio-main' at /usr/share/perl5/DBIx/Class/Storage/DBI.pm line 1395.
DBI 
connect('database=koha_biblio-main;host=localhost;port=3306','koha_biblio-main',...) 
failed: Access denied for user 'koha_biblio-main'@'%' to database 
'koha_biblio-main' at /usr/share/perl5/DBIx/Class/Storage/DBI.pm line 1395.
DBIx::Class::Storage::DBI::catch {...} (): DBI Connection failed: Access 
denied for user 'koha_biblio-main'@'%' to database 'koha_biblio-main' at 
/usr/share/perl5/DBIx/Class/Storage/DBI.pm line 1398. at 
/usr/share/koha/lib/Koha/Database.pm line 90

Something went wrong rebuilding biblio indexes for biblio-main
DBI 
connect('database=koha_biblio-main;host=localhost;port=3306','koha_biblio-main',...) 
failed: Access denied for user 'koha_biblio-main'@'%' to database 
'koha_biblio-main' at /usr/share/perl5/DBIx/Class/Storage/DBI.pm line 1395.
DBI 
connect('database=koha_biblio-main;host=localhost;port=3306','koha_biblio-main',...) 
failed: Access denied for user 'koha_biblio-main'@'%' to database 
'koha_biblio-main' at /usr/share/perl5/DBIx/Class/Storage/DBI.pm line 1395.
DBI 
connect('database=koha_biblio-main;host=localhost;port=3306','koha_biblio-main',...) 
failed: Access denied for user 'koha_biblio-main'@'%' to database 
'koha_biblio-main' at /usr/share/perl5/DBIx/Class/Storage/DBI.pm line 1395.
DBI 
connect('database=koha_biblio-main;host=localhost;port=3306','koha_biblio-main',...) 
failed: Access denied for user 'koha_biblio-main'@'%' to database 
'koha_biblio-main' at /usr/share/perl5/DBIx/Class/Storage/DBI.pm line 1395.
DBIx::Class::Storage::DBI::catch {...} (): DBI Connection failed: Access 
denied for user 'koha_biblio-main'@'%' to database 'koha_biblio-main' at 
/usr/share/perl5/DBIx/Class/Storage/DBI.pm line 1398. at 
/usr/share/koha/lib/Koha/Database.pm line 90

Something went wrong rebuilding authority indexes for biblio-main
 * Restarting web server apache2 
 [Thu Sep 14 
13:53:41.069404 2017] [core:warn] [pid 30685] AH00111: Config variable 
${instance} is not defined
[Thu Sep 14 13:53:41.069560 2017] [core:warn] [pid 30685] AH00111: 
Config variable ${instance} is not defined
[Thu Sep 14 13:53:41.070842 2017] [core:warn] [pid 30685] AH00111: 
Config variable ${instance} is not defined
[Thu Sep 14 13:53:41.070867 2017] [core:warn] [pid 30685] AH00111: 
Config variable ${instance} is not defined


  [ OK ]

After open url with koha - browser show:

Software error:

DBIx::Class::Storage::DBI::catch {...} (): DBI Connection failed: Access 
denied for user 'koha_biblio-main'@'%' to database 'koha_biblio-main' at 
/usr/share/perl5/DBIx/Class/Storage/DBI.pm line 1398. at 
/usr/share/koha/lib/Koha/Database.pm line 90
Compilation failed in require at 
/usr/share/koha/intranet/cgi-bin/mainpage.pl line 31.
BEGIN failed--compilation aborted at 
/usr/share/koha/intranet/cgi-bin/mainpage.pl line 31.



I tried changing database password or adding user with privileges via 
mysql console - it did not work. Any solution, idea, help?


Best regards,
Przemek Kosiński



--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha on Debian Stretch?

2017-08-08 Thread Przemek Kosiński

Hi,
Look at 
http://kohageek.blogspot.com/2017/06/install-koha-on-debian-9-stretch.html


Best regards
Przemek

W dniu 08.08.2017 o 12:22, Chris Brown pisze:

Hello,

Does anyone have any experience (good or bad) of installing Koha on Debian
9.1 ("Stretch")? Anything I need to watch out for?

Thanks!

Chris Brown
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha




--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Koha Report Library problem

2017-03-08 Thread Przemek Kosiński

Hi.

I noticed that on the website Koha reports 
(https://wiki.koha-community.org/wiki/SQL_Reports_Library) gone wrong 
formatting SQL reports.

All reports now look like this:


SELECT biblioclass="sy0">.title, biblioclass="sy0">.author, issuesclass="sy0">



Any chance to correct this?

Best regards,
Przemek Kosinski
--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] translate site down

2016-11-03 Thread Przemek Kosiński

Not available from Poland
Maybe Level 3 servers down or lagging?
10. 162.97.148.7411.1%10  333.0 316.1 309.0


W dniu 02.11.2016 o 11:39, Anthony Mao pisze:

Hi,
Anyone can confirm that the translate site is don now? I can not reach
http://translate.koha-community.org from Taiwan.





--
Przemek Kosiński
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Marcedit on Linux ubuntu

2016-08-10 Thread Przemek Kosiński

Hi, try this: http://www.dptripathi.in/download/installmarcedit.pdf



Regards
W dniu 10.08.2016 o 17:41, Monisa Aslam pisze:





Hello everyone.
Can someone help me through teamviewer. I wish to install marcedit on Linux 
ubuntu. I tried a lot but failed.
RegardsMonisa Aslam
Sent from my Samsung device
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha




Regards
Przemek Kosiński--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Marcedit on Linux

2016-02-02 Thread Przemek Kosiński

Works fine on Linux Mint 17.3 too.
If marcedit runs in terminal, you can attach this command (mono 
/home/programs/marcedit/MarcEdit.exe)  to  icon  and start like any 
other program


Best regards
Przemek Kosiński

--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Mail Configuration in Koha

2016-01-13 Thread Przemek Kosiński

Hi Ganesha, try this:
http://kohageek.blogspot.com/2012/09/configure-gmail-with-postfix-to-send_17.html



W dniu 13.01.2016 o 06:05, Ganesha H pisze:

Hi Everyone,
  I am Ganesha working as Librarian in Pvt Corporate Company. I have
installed Live DVD of  koha 3.22 in Ubuntu 14.04. I have uploaded data and
i started circulation also , but am unable do the Mail configuration  we
have our own domain and official mail. how to configure it , I have
installed Exim4 & Postfix .




--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Checked books - list.

2015-12-29 Thread Przemek Kosiński

W dniu 29.12.2015 o 09:02, Przemek Kosiński pisze:

Hi,

After upgrading KOHA from 3.20.06.000 to 3.20.07.000 - koha not showing
books list after "checked out"  on patron account - display only info
"Loading... you may continue scanning"
But books are borrowed - after logging in to patron account in OPAC -
see them on the list.
Also work "check in" after returning the list of returned items is visible.

Bug? any suggestions what to do?

I have test instance Koha - 3.20.06.000 everything works as it should.

best regards,
Przemek Kosiński


Hi,
small update:

in intranet-error.log I find this:

[Tue Dec 29 10:04:15.854456 2015] [cgi:error] [pid 21103] [client 
10.0.0.85:1368] AH01215: [Tue Dec 29 10:04:15 2015] checkouts: Execution 
of /usr/share/koha/intranet/cgi-bin/svc/checkouts aborted due to 
compilation errors., referer: 
http://10.0.0.64:8080/cgi-bin/koha/circ/circulation.pl



regards,
Przemek Kosiński

--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


[Koha] Checked books - list.

2015-12-29 Thread Przemek Kosiński

Hi,

After upgrading KOHA from 3.20.06.000 to 3.20.07.000 - koha not showing 
books list after "checked out"  on patron account - display only info 
"Loading... you may continue scanning"
But books are borrowed - after logging in to patron account in OPAC - 
see them on the list.

Also work "check in" after returning the list of returned items is visible.

Bug? any suggestions what to do?

I have test instance Koha - 3.20.06.000 everything works as it should.

best regards,
Przemek Kosiński

--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha


Re: [Koha] Koha 3.12 Installation

2015-12-21 Thread Przemek Kosiński

W dniu 21.12.2015 o 09:28, Balaji Ravichandran pisze:

Hi,

Can anyone send the link on how to install Koha 3.12 in CentOS 6.6?
Thank You



Maybe this link help:
http://knowgate.niscair.res.in/blogs/-/blogs/test

Best regards:
Przemek Kosinski
--
*
Powiatowa i Miejska Biblioteka
Publiczna w Skarżysku-Kamiennej
www: www.biblioteka24.eu
mail: p.kosin...@biblioteka24.eu
*
___
Koha mailing list  http://koha-community.org
Koha@lists.katipo.co.nz
https://lists.katipo.co.nz/mailman/listinfo/koha