The following commands are allowed to edit on SFTP/FTP
sudo find /etc/koha/ -type d -exec chmod 777 {} \;
sudo find /etc/koha/ -type f -exec chmod 666 {} \;
The following commands are allowed to edit on SFTP/FTP
sudo find /etc/koha/ -type d -exec chmod 777 {} \;
sudo find /etc/koha/ -type f -exec chmod 666 {} \;
Open terminal [ctrl+T] and hit
sudo ufw status
Apache Full                ALLOW       Anywhere
22                         ALLOW       Anywhere
3306                       ALLOW       161.202.20.0/24
3306 on eth1               ALLOW       Anywhere
3306                       ALLOW       Anywhere
Apache Full (v6)           ALLOW       Anywhere (v6)
22 (v6)                    ALLOW       Anywhere (v6)
3306 (v6) on eth1          ALLOW       Anywhere (v6)
3306 (v6)                  ALLOW       Anywhere (v6)There is no 8080 port in above listNow allow 8080 port sudo ufw allowsudo mysql -uroot -p koha_library < koha_library.sql sudo systemctl restart apache2.service sudo systemctl restart koha-common sudo ...