We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6450818 commit 58b3b5bCopy full SHA for 58b3b5b
prestashop/README.md
@@ -66,6 +66,20 @@ server {
66
67
3. Configure > Shop Parameters > General > Enable SSL on all pages
68
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='admin@easypi.pro';
79
+>>> update ps_employee set passwd=md5(concat("xxxxxx", "password")) where email='admin@easypi.pro';
80
81
+```
82
83
## Documentation
84
85
<http://doc.prestashop.com/dashboard.action>
0 commit comments