1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00

update prestashop

This commit is contained in:
kev 2018-01-27 14:35:37 +08:00
parent 64508188f0
commit 58b3b5bcf0

@ -66,6 +66,20 @@ server {
3. Configure > Shop Parameters > General > Enable SSL on all pages
## Reset Admin Password
```bash
$ docker-compose exec prestashop bash
>>> grep cookie app/config/parameters.php
'cookie_key' => 'xxxxxx',
>>> exit
$ docker-compose exec mysql mysql -uroot -proot prestashop
>>> select * from ps_employee where email='admin@easypi.pro';
>>> update ps_employee set passwd=md5(concat("xxxxxx", "password")) where email='admin@easypi.pro';
>>> select * from ps_employee where email='admin@easypi.pro';
```
## Documentation
<http://doc.prestashop.com/dashboard.action>