DK
Database Not Uploaded
DK
Please anyone for it
ML
Changing default settings of PHP works for your website but not for phpMyAdmin which is why you’re still unable to upload database. there is a way to increase upload size for phpMyAdmin. But, I suggest you upload .sql file in root directory of your website and use shell to upload your database like this:
sudo mysql -u database_username -p database_name < /home/domain.tld/database_file.sql
Example: sudo mysql -u mysite_db -p mysite_db < /home/mysite.com/sql_backup2022.sql
when you enter this command it will ask for a password, enter password of same database user you put in the command.