Skip to content

Commit 58b3b5b

Browse files
committed
update prestashop
1 parent 6450818 commit 58b3b5b

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

prestashop/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,20 @@ server {
6666

6767
3. Configure > Shop Parameters > General > Enable SSL on all pages
6868

69+
## Reset Admin Password
70+
71+
```bash
72+
$ docker-compose exec prestashop bash
73+
>>> grep cookie app/config/parameters.php
74+
'cookie_key' => 'xxxxxx',
75+
>>> exit
76+
77+
$ docker-compose exec mysql mysql -uroot -proot prestashop
78+
>>> select * from ps_employee where email='[email protected]';
79+
>>> update ps_employee set passwd=md5(concat("xxxxxx", "password")) where email='[email protected]';
80+
>>> select * from ps_employee where email='[email protected]';
81+
```
82+
6983
## Documentation
7084
7185
<http://doc.prestashop.com/dashboard.action>

0 commit comments

Comments
 (0)