PrestaShop adalah perangkat lunak CMS (Content Management System) untuk membangun website e-commerce dengan menggunakan bahasa pemrograman PHP. Tutorial install PrestaShop ini menggunakan distro Linux Ubuntu 16.04 LTS, Apache2, MariaDB 10, dan PHP 7.0. 1. Install Apache2 Install web server/httpd server Apache2
| sudo apt install apache2 -y |
Setelah instalasi Apache2, nonaktifkan directory listing
| sudo sed -i "s/Options Indexes FollowSymLinks/Options FollowSymLinks/" /etc/apache2/apache2.conf |
Kemudian aktifkan service Apache2
| sudo systemctl stop apache2 sudo systemctl start apache2 sudo systemctl enable apache2 sudo systemctl status apache2 |
2. […]