Certain records reluctant to Checkin due to DBMS auto increment problem. In such cases, the transaction remains in the tables. Developers still working on the solution. Here is a temporary solution. I tried this steps on Koha installed on Debian 8,9 and Ubuntu 16.04 with MySQL and MariaDB Server.
Delete one by one in php Myadmin page
Check Koha > About > System Information
Installation PHPMyAdmin.
We need to access the database table "old_issues" where all old circulation entries store. Need to install phpMyAdmin tool to access the database table. Open a terminal and apply the following command to install the phpMyAdmin.
Open terminal apply the command
sudo apt-get install phpmyadmin
Enter Your Confirmation mysql password
Another important configuration file is /etc/phpmyadmin/apache.conf, this file is symlinked to /etc/apache2/conf-available/phpmyadmin.conf, and, once enabled, is used to configure Apache2 to serve the phpMyAdmin site. The file contains directives for loading PHP, directory permissions, etc. From a terminal type:
Open terminal apply the following command
sudo ln -s /etc/phpmyadmin/apache.conf /etc/apache2/conf-available/phpmyadmin.conf
sudo systemctl reload apache2.service
Login phpMyAdmin
http://localhost/phpmyadmin
Username: root (your sql username)
Password: mysqlroot (sql password )
3. Search the particular ID Number to delete the circulation entry reluctant to check-in.
Successfully removed all auto increment entry's.
If you have any error in mysql password, use the following method
If you have any error in PHP, use the following method
1 Comments
If you want to know that How to find database username and password in phpMyAdmin then click this link for more information:
ReplyDeleteHow to find database username and password in phpMyAdmin