Hello
I am currently running a fresh install of 154 with the responsive_avonlee_contempo template. I have Image Handler installed and google site map. I am generating debug logs that read:
I checked the query factory php page line 62 and it reads:Code:[22-Feb-2015 14:56:46 America/Denver] PHP Warning: mysqli_connect(): (28000/1045): Access denied for user 'cwrealey'@'localhost' (using password: NO) in /home2/latexinn/public_html/154/includes/classes/db/mysql/query_factory.php on line 62
$this->link = mysqli_connect($zf_host, $zf_user, $zf_password);
$connectionRetry--;
The script surrounding this entry is:I saw a similar thread from 2012 but not solved and this was a while ago. Any suggestions on how to fix it would be appreciated. I download the new version of Zen Cart from the Zen website. My site is www.makupartist.com and to get to zen cart you will need to www.makupartist.com/154Code:function connect($zf_host, $zf_user, $zf_password, $zf_database, $zf_pconnect = 'false', $zp_real = false) { $this->database = $zf_database; $this->user = $zf_user; $this->host = $zf_host; $this->password = $zf_password; $this->pConnect = $zf_pconnect; $this->dieOnErrors = $dieOnErrors; if (defined('DB_CHARSET')) $dbCharset = DB_CHARSET; if (isset($options['dbCharset'])) $dbCharset = $options['dbCharset']; if (!function_exists('mysqli_connect')) die ('Call to undefined function: mysqli_connect(). Please install the MySQL Connector for PHP'); $connectionRetry = 10; while (!isset($this->link) || ($this->link == FALSE && $connectionRetry !=0) ) { $this->link = mysqli_connect($zf_host, $zf_user, $zf_password); $connectionRetry--; } if ($this->link) { if (mysqli_select_db($this->link, $zf_database)) { if (isset($dbCharset) ) { mysqli_query($this->link, "SET NAMES '" . $dbCharset . "'"); if (function_exists('mysqli_set_charset')) { mysqli_set_charset($this->link, $dbCharset); } else { mysqli_query($this->link, "SET CHARACTER SET '" . $dbCharset . "'"); } } $this->db_connected = true; if (!defined('DISABLE_MYSQL_TZ_SET')) { mysqli_query($this->link, "SET time_zone = '" . substr_replace(date("O"),":",-2,0) . "'"); } return true; } else { $this->set_error(mysqli_errno($this->link), mysqli_error($this->link), $dieOnErrors); return false; } } else { $this->set_error(mysqli_connect_errno(), mysqli_connect_error(), $dieOnErrors); return false;
Thanks
T




