Notice: You are browsing the documentation for PrestaShop 9, which is currently in development.
You might want to read the documentation for the current version, PrestaShop 8. Read the current version of this page
If you want to develop or experiment with PrestaShop, you should install it locally on your machine. The main advantage is that it makes it possible for you to entirely bypass the process of uploading your files to your online server in order to test it.
Another advantage is that a local test environment enables you to test code without risking breaking your production store. Having a local environment is the essential first step in the path of web development.
Installing any web application locally requires installing an adequate environment, namely the Apache web server, the PHP language interpreter, the MySQL database server, and ideally, a MySQL admin tool such as the phpMyAdmin tool.
This is called an *AMP stack: Apache+MySQL+PHP and the operating system, giving WAMP (Windows+Apache+MySQL+PHP), MAMP (macOS…), and LAMP (Linux+…). Since all of the items packaged are open-source, these installers are, most of the time, free.
Whatever your operating system, you can install this *AMP stack on your operating system or use Docker
.
You have three options:
*AMP
stack locally on your operating system, and run PrestaShop there.Docker
, and run PrestaShop in containers managed by Docker
.Virtual Machine
software, and run a LAMP
stack in a Virtual Machine
(not discussed here).Depending on your experience, you will choose the method you are most at ease with.
If you have no experience, it can be easier to begin with Docker
, since you will not need to install the *AMP
stack and simply install Docker
, create a manifest
file, and start the containers with a CLI
(Command Line Interface) command.
Read System Requirements.
If you install PrestaShop on a web server, you must create the database and give access to a privileged user. You will need this user’s credentials to configure PrestaShop during the installation process.
We assume you have root access to phpMyAdmin
, and you’re using version 4.x.
phpMyAdmin
as the root userUser accounts
, and then click on Add user account
User name
and the Password
Database for user account
, select Create database
and Grant all privileges
utf8mb4_general_ci
The database must be created with 4-Byte UTF-8 encoding (utf8mb4_general_ci
).
For information on installation and configuring MySQL, see the MySQL 5.6 documentation.
Connect as root to your MySQL server. In this example our root user is called adminusername
:
$ mysql -u adminusername -p
Create the database and give it a name like “prestashop”:
> CREATE DATABASE prestashop COLLATE utf8mb4_general_ci;
Grant privileges to that database to a new user (the one that PrestaShop will use to connect to the database). Let’s call it “prestashopuser”.
> CREATE USER "prestashopuser"@"hostname" IDENTIFIED BY "somepassword";
> GRANT ALL PRIVILEGES ON prestashop.* TO "prestashopuser"@"hostname";
In the example above,
prestashop
is the name of the new databasehostname
is usually localhost (127.0.0.1
or localhost
), if you don’t know the value, check with a system administratorsomepassword
must be a strong password and of course, only known by youFinally, flush privileges:
> FLUSH PRIVILEGES;
The source code of PrestaShop is hosted on the Official PrestaShop GitHub Repository.
You can find all the released versions of PrestaShop here: PrestaShop releases.
Nightly releases of PrestaShop are also generated daily. Their details can be found on a public Google Cloud storage.
PrestaShop comes in two “flavors”:
Prefer cloning the repository using git for the development version.
If you intend to work on PrestaShop itself, we suggest using Git to clone the source code of PrestaShop from the GitHub repository.
As stated above, if you decide to work on PrestaShop itself, it’s best to clone the PrestaShop repository and work using Git. Depending on the version of PrestaShop you want to work on, you will need to choose the right branch:
Clone the repository using Git or extract the zip package in a prestashop
folder inside the document folder of the *AMP installer you chose:
C:\xampp\htdocs
or /Applications/xampp/htdocs
C:\wamp\www
C:\easyphp\www
/Applications/MAMP/htdocs/
Use composer to download the project’s dependencies:
cd /path/to/prestashop
composer install
# or alternatively:
make composer
PrestaShop uses NPM
to manage dependencies and Webpack
to compile them into static assets.
You only need NodeJS 20.x
(you can get it here), and NPM will take care of it all.
cd /path/to/prestashop
make assets
You can also compile assets for the particular element of the system:
make admin-default
- for the legacy back office thememake admin-new-theme
- for the new back office thememake front-core
- front office theme core assetsmake front-classic
- front office default theme assetsmake front
- all assets for the the front officemake admin
- all assets for the the back officeAlternatively, you can compile assets manually.
PrestaShop needs recursive write permissions on several directories:
├─-admin-dev
| â””--autoupgrade
├─-app/config
├─-cache
├─-config
├─-download
├─-img
├─-log
├─-mails
├─-modules
├─-override
├─-themes
├─-translations
├─-upload
â””--var
You can set up the appropriate permissions using this command:
$ chmod -R +w admin-dev/autoupgrade app/config var/logs cache config download img log mails modules override themes translations upload var
If you do not have some of the folders above, please create them before changing permissions. For example:
$ mkdir log var/logs
To ease up your life on a development environment, we suggest to make Apache run with your own user and group.
Open the PrestaShop installer and follow its instructions.
Depending on whether you downloaded a release package or cloned the repository, the route to the installer will be slightly different:
You can read the Getting Started guide for more details.
You can also install PrestaShop with CLI, please refer to this guide
You may find this error message the first time you open up the Back Office.
This problem may arise in case-insensitive file systems like MacOS due to a misconfiguration. Check your Apache configuration and make sure that the root directory path to your PrestaShop matches the capitalization of the actual system path exactly. A typical error is for example having a folder named /path/to/PrestaShop
(capital P, capital S) and then configuring it in Apache as /path/to/Prestashop
(missing the capital S).