# More
Each of the following solutions has been proven to be effective and we hope to be helpful to you.
# Domain binding
The precondition for Domain binding is have completed the Domain resolution for PrestaShop Instance.
From the perspective of server security and subsequent maintenance considerations, the Domain Binding step cannot be omitted.
PrestaShop domain name binding steps:
- Connect your Cloud Server
- Modify vhost configuration file, change the domain name item for you
#### PrestaShop (LAMP) bind domain #### <VirtualHost *:80> ServerName prestaShop.mydomain.com # modify it for you DocumentRoot "/data/wwwroot/PrestaShop" ... #### PrestaShop (LEMP) bind domain #### server { listen 80; server_name prestaShop.example.com; # modify it for you ...
- Save it and restart Web Service
# PrestaShop Maintenance mode
Log in PrestaShop console, open:【Shop Parameters】>【General】>【Maintenance】
# Prestashop change domain
If you want to change domain for PrestaShop, these steps you need to do:
- Completed domain resolution and domain binding
- Enable PrestaShop's Maintenance mode
- Edit the PrestaShop's configuration file(path), modify the domain
- Log in PrestaShop console, open:【Shop Parameters】>【Traffic&SEO】, modify the shop URL
# PrestaShop import
Log in PrestaShop console, open:【Advanced Parameters】>【Import】
# PrestaShop Modules
Modules is a very import function for PrestaShop to extend the business requirement
- Log in PrestaShop console,
- Open:【Modules】>【Module Catalog】, find the module you want to install and click the【Install】button
- Open:【Modules】>【Module Manager】, find the module you want to upgrade and click the【Upgrade】button
# Prestashop connect Marketplace
Completed installation of PrestaShop, suggest you make your PrestaShop system connect PrestaShop's Marketplace. Once you have connected it, you can use many resourses on Marketplace.
- Log in PrestaShop Console as administrator
- Open 【Modules】>【Module Manager】, click【Connect to Addons marketplace】
- Register an account if you don't have it
- Connect to Marketplace using your Marketplace's account
# PrestaShop language
Prestashop's multi-language support is very mature. The system has a multi-language system built in the background. You only need to select the corresponding language and import it online to your PrestaShop system.
# Import language
- Log in PrestaShop console, open:【International】>【Localization】>【language】, enter the interface of language settings
- Select the language you want to use and click【import】 icon to import online
- Click 【language】 tab, you can see all language packages been installed successfully
When add new language for PrestaShop, it will add redirects rules in the
.htaccess
file of PrestaShop root directory.
# Delete language
- Log in PrestaShop console, open:【International】>【Localization】>【language】,edit your language
- Set the Status to 【No】
- Click 【language】 tab, you can delete the language you have disabled
# PrestaShop API (Web Service)
PrestaShop enables merchants to give third-party tools access to their shop's database through a CRUD API, otherwise called a web service.
Refer to official docs: PrestaShop API (opens new window)