Hello,
I am trying to move our system (osTicket 1.18.1) to another new host with a new domain, both hosts webserver config total the same, before download all files with folder of osTicket that I've make a sqldump backup the old DB to a folder name is backups, and then backup all files from folder osTicket as an zip file.
Upload to the new host & unzip & folder permission, also restore the DB by using command line mysql -p -u db_user my_database < backups/osticket_bak.sql
and then fixed the VirtualHost on Apache2 - site-available
<VirtualHost *:80>
ServerName newdomain.example.com
ServerAdmin admin@localhost
DocumentRoot /var/www/html/osticket/upload
<Directory /var/www/html/osticket/upload>
Require all granted
Options FollowSymlinks
AllowOverride All
</Directory>
ErrorLog ${APACHE_LOG_DIR}/osticket.error.log
CustomLog ${APACHE_LOG_DIR}/osticket.access.log combined
</VirtualHost>
But the new host is not working
Question: Do I have to disable the function - Force all requests through HTTPS? before backup? The new host without an SSL certificate
Thank you.