mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-04-25 12:14:46 +02:00
update prestashop
This commit is contained in:
parent
64508188f0
commit
58b3b5bcf0
@ -66,6 +66,20 @@ server {
|
|||||||
|
|
||||||
3. Configure > Shop Parameters > General > Enable SSL on all pages
|
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
|
## Documentation
|
||||||
|
|
||||||
<http://doc.prestashop.com/dashboard.action>
|
<http://doc.prestashop.com/dashboard.action>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user