This guide installs PrestaShop on a standard LAMP/LEMP stack.
Download the latest PrestaShop release and extract it to your web root.
sudo mysql -u root -p
CREATE DATABASE prestashop_db CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
CREATE USER 'prestashop_user'@'localhost' IDENTIFIED BY 'StrongPassword123!';
GRANT ALL PRIVILEGES ON prestashop_db.* TO 'prestashop_user'@'localhost';
FLUSH PRIVILEGES;
EXIT;
Open http://example.com and follow the PrestaShop web installer.
Delete the /install directory after setup.
Check the PrestaShop installation guide or reach out via our contact page.