Control Web Panel

WebPanel => CentOS-WebPanel GUI => Topic started by: DeveloperMcD on April 23, 2016, 04:41:16 AM

Title: Click on List Email Accounts - got error
Post by: DeveloperMcD 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.
Title: Re: Click on List Email Accounts - got error
Post by: Sandeep 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