Author Topic: Click on List Email Accounts - got error  (Read 7873 times)

0 Members and 1 Guest are viewing this topic.

Offline
*
Click on List Email Accounts - got error
« on: April 23, 2016, 04:41:16 AM »
Warning: mysql_connect(): Access denied for user 'postfix'@'localhost' (using password: YES) in /usr/local/cwpsrv/htdocs/resources/admin/modules/mail_list.php(1) : eval()'d code(1) : eval()'d code on line 2

Warning: mysql_select_db() expects parameter 2 to be resource, boolean given in /usr/local/cwpsrv/htdocs/resources/admin/modules/mail_list.php(1) : eval()'d code(1) : eval()'d code on line 2
Could not connect to database postfix check configuration file: /usr/local/cwpsrv/htdocs/admin/include/postfix.php

How can I get to the bottom of this error? Where is the password stored? Is there more information in a log file?
Etc.

Offline
*****
Re: Click on List Email Accounts - got error
« Reply #1 on: April 23, 2016, 06:37:23 AM »
you can reset the password from mysql. there are lots of topics available on this forum (search before posting)

Code: [Select]
mysql
SET NEW PASSWORD

Code: [Select]
SET PASSWORD FOR 'postfix'@'localhost' = PASSWORD('YOUR_PASSWORD');
ACCEPT NEW Changes

Code: [Select]
flush privileges
« Last Edit: April 23, 2016, 06:52:40 AM by Sandeep »