I deloyed magento 2 on google cloud, it is just one click installation, how can i install my downloaded quick-start theme base on that or what can i do to install my own them package?
Solved! Go to Solution.
If you are looking to import ready made demo then you will required to create a new database into the mysql database.
Then import your theme database into the created database
then put whole quick start directory theme files into the magento 2 root directory
then run it for the same !
You will required to install the theme manually - where you will required to put specific theme files in to the app/design directory then you will required to put theme media files into the pub/media directory and you will required to put theme module files into the app/code directory !
Once everything will puted in your magento 2 respected directory same like downloaded theme directory structure.
you will required to run below command in sequence :
php bin/magento setup:upgrade php bin/magento setup:di:compile php bin/magento setup:static-content:deploy -f php bin/magento cache:clean php bin/magento cache:flush
After that you will able to see your theme at the backend of the magento panel - activate the theme for the same.
For more details refer this link - https://www.aitoc.com/blog/tutorial-install-new-magento-2-theme/
Hope it helps !
thank you
it works on theme, and the database in quick-start package did not work, i am sorry i am a newer, would you tell me how to make it work, thank you.
If you are looking to import ready made demo then you will required to create a new database into the mysql database.
Then import your theme database into the created database
then put whole quick start directory theme files into the magento 2 root directory
then run it for the same !
thank you