标签 zen-cart 下的文章

zen-cart 1.3.9 后台管理菜单部分汉字显示为????

现象:zen-cart 1.3.9 中文程序网站,后台管理菜单部分汉字显示为????。

尝试:从phpmyadmin里,看到configuration数据表的汉字能正常显示。将 includes/classes/db/mysql/query_factory.php 文件中的mysql查询强制使用utf8字符集。如:

if (@mysql_select_db($zf_database, $this->link)) { 
$this->db_connected = true; 
// *** UTF8 Connection Add [BEGIN] *** 
mysql_query(“SET NAMES ‘utf8′”, $this->link); 
mysql_query(“SET CHARACTER SET UTF8″, $this->link); 
// *** UTF8 Connection Add [END] *** 
return true; 
} else { 
$this->set_error(mysql_errno(),mysql_error(), $zp_real); 
return false; 
} 

参考:

zen-cart 1.3.9 启用 https 后管理后台无法登录或更改设置

现象:zen-cart 1.3.9 版本,启用 https 后,管理后台无法登录,填写用户名和密码后提交,会返回登录框。

尝试:管理后台的配置文件 /your_renamed_admin/includes/configure.php ,其中的 http 网址参数要用 https的,如:

define('HTTP_SERVER', 'https://www.YOUR_SHOP.com');
define('HTTPS_SERVER', 'https://www.YOUR_SHOP.com');
define('ENABLE_SSL', 'true'); 

https://www.zen-cart.com/content.php?56-how-do-i-enable-ssl-after-i-have-installed-zen-cart