Patching guide

App Patching
Step

login to the server
extract the content to root dir (C:\caddy\html) (use application like 7z for windows to extract).

DB Patching
Step

login to server
open terminal,
cd to mysql bin directory

cd "C:\Program Files\MySQL\MySQL Server 8.0\bin"

login to the mysql server using (the password in C:\ in text file mysql_pass.txt)

mysql.exe -u root -p

drop the existing database

DROP DATABASE ukas;

create the database

CREATE DATABASE ukas;

logout from mysql server

exit

import the new sql

mysql -u root -p ukas < path_to_sql_file.sql

