3. Connect to your Magento® Webserver using SSH
3 A. Connect
Run the following command in the terminal and enter the user password (please skip this step if you're installing expansion on the local machine):
ssh username@domain.com
3 B. Locate The RootChange your current directory to Magento 2 web root directory running this command:
cd /full_path_to_magento2
3 C. Start Setup
After that the extension is successfully downloaded, start the setup of the Feedback Company Reviews extension by running these commands:
php bin/magento module:enable Magmodules_FeedbackCompanySR
php bin/magento setup:upgrade
If Magento is running in production mode, recompile and deploy static content using the following commands:
php bin/magento setup:di:compile
php bin/magento setup:static-content:deploy
Now you've successfully executed the right commands and the extension is successfully installed, it's ready for configuration. Navigate to Stores ⇨ Configuration ⇨ Magmodules ⇨ Feedback Company Reviews to start the configuration.
Maintenance mode
You may want to enable the maintenance mode when installing or updating the module, especially when working on a production website. To do so, run the two commands below before and after running the other setup commands:
php bin/magento maintenance:enable
# Other setup commands
php bin/magento maintenance:disable