ecshop提示用户名已存在
出现这个问题是因为整合UC,解决方法如下:把下面的两个语句放到后台数据库管理--SQL查询 里面 执行,两句分开执行,注意表前缀.
update ecs_shop_config set value='ecshop' where code='integrate_code'
update ecs_shop_config set value='' where code='integrate_config'
如果上面的方法不行的话,尝试以下操作,修改一下EC根目录下的data/config.php文件.
define('UC_CONNECT', 'mysql');
修改为:
define('UC_CONNECT', ' ');

