Backup database and files: On the current server, export the database (mysqldump -u user -p database_name > dump.sql) and archive the application files (tar czf app-backup.tar.gz /path/to/application).
Prepare new server: Install the same PHP version and extensions (openssl, gd, mbstring, etc.). Create an empty database and user.
Transfer files: Copy the archive to the new server (scp app-backup.tar.gz root@:/var/www/) and extract it (tar xzf app-backup.tar.gz -C /var/www/html).
Import database:
```bash
mysql -u user -p new_database < dump.sql
```
Update configuration: In config.php or .env, change the database host, name, user, and password to the new environment. If your license key is domain/IP-locked, contact support to transfer the license to the new domain or IP.
Thank you for your feedback.
Sorry about that :( We'll work to make it better.
You voted before.
1 times viewed | 0 people fount it helpful