Mensajes de error al instalar Prestashop 9 en local Linux

 

Para cumplir los requisitos minimos de Prestashop 9, instalar las siguientes extensiones:

sudo apt install php libapache2-mod-php php-mysql php-gd php-mbstring php-xml php-curl php-zip php-intl 

sudo a2enmod rewrite 

sudo systemctl restart apache2
      

 


 

 


 

Estos mensajes de error ya nos saldrán.

 


 

Asignar permisos si sale este error, probar de menor a mayor:

root@antix1:/var/www# chmod -R 644 html
root@antix1:/var/www# chmod -R 755 html
root@antix1:/var/www# chmod -R 777 html



Si intentas acceder a 

http://localhost/admin/login?_token=

 

Modificar archivo:

root@antix1:/var/www# geany /etc/apache2/apache2.conf


<Directory /var/www/>
    Options Indexes FollowSymLinks
    AllowOverride None
    Require all granted
</Directory>

 

Cambiar a:

 AllowOverride All


Entradas populares