Anyone have success in installing PHP version 8.2 even from source code for imscp 1.5.3 ?
PHP 8.2
- sanitariu
- Thread is marked as Resolved.
-
-
You must have Debian 10... to use Suri repository...
You will be able to install any version
-
-
You must have Debian 10... to use Suri repository...
You will be able to install any version
Hello, I know this. But i can not upgrade from debian 9. I have tried debian 10 but imscp was buggy and not working properly. Also maintenance version 1.5.3 is buggy too. It should fix bugs not add features. So i am stuck
-
I use the version
i-MSCP 1.5.3
Build: 2018120800
Codename: Ennio Morricone
Migrating i-mscp to new server is not difficult, you mount a new server on debian 10.
Dump all of your databases
-mysqldump -u root -p --all-databases > alldb.sql
Restore everything back to your debian 10 server
mysql -u root -p < alldb.sql
With this operation you now have all the data stored on your i-mscp system.
Then verify the integrity of the exported data
# mysql -u root -p<your_password>
> use imscp;
> UPDATE admin SET admin_sys_name = null, admin_sys_uid = 0, admin_sys_gname = null, admin_sys_gid = 0, admin_status = 'ok';
> UPDATE domain SET domain_status = 'ok';
> UPDATE subdomain SET subdomain_status = 'ok';
> UPDATE domain_aliasses SET alias_status = 'ok';
> UPDATE subdomain_alias SET subdomain_alias_status = 'ok'; > UPDATE subdomain_alias SET subdomain_alias_status = 'ok';
> UPDATE mail_users SET status = 'ok';
Regenerate the configs simulating an installation
perl imscp-autoinstall -d
With this you will have a fully operational system without data and now pass the data in bulk with rsync.
Just copy /var/www/virtual and /var/mail/virutal.
Once this is all done you just have to change the ip panel.
perl /var/www/imscp/engine/setup/imscp-reconfigure --reconfigure primary_ip
And you will be able to put everything you need on a debian 10 and using sury repo
Put it in practice on a small vps without data so you can manage your panel to test and adapt some data you have configured manually.
s2
-