创建了 2 个配置了主从的客户

发布于 2024-10-04 07:31:55 字数 95 浏览 3 评论 0原文

在 magento 1.4.1 上配置主从。

当我从后端下订单时,会创建两个客户。一位客户 包含订购期间添加的所有信息,并且一个用户没有 名字、姓氏和其他信息。

With master slave configured on magento 1.4.1.

When I place order from backend two customers are created. One customer
is with all the information added during order and one user without
firstname, lastname and other information.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

相思碎 2024-10-11 07:31:55

我这样做是为了解决这个问题

更改

class Mage_Customer_Model_Entity_Customer extends
Mage_Eav_Model_Entity_Abstract
{
    /**
     * Initiate resources
     *
     */
    public function __construct()
    {
        $resource = Mage::getSingleton('core/resource');
        $this->setType('customer');
        $this->setConnection(
            $resource->getConnection('customer_read'),
            $resource->getConnection('customer_write')
        );
    }

为“

class Mage_Customer_Model_Entity_Customer extends
Mage_Eav_Model_Entity_Abstract
{
    /**
     * Initiate resources
     *
     */
    public function __construct()
    {
        $resource = Mage::getSingleton('core/resource');
        $this->setType('customer');
        $this->setConnection(
            $resource->getConnection('core_setup'),
            $resource->getConnection('core_setup')
        );
    }

让我知道是否有其他方法可以解决这个问题”。

I did this to fix this

Changed

class Mage_Customer_Model_Entity_Customer extends
Mage_Eav_Model_Entity_Abstract
{
    /**
     * Initiate resources
     *
     */
    public function __construct()
    {
        $resource = Mage::getSingleton('core/resource');
        $this->setType('customer');
        $this->setConnection(
            $resource->getConnection('customer_read'),
            $resource->getConnection('customer_write')
        );
    }

to

class Mage_Customer_Model_Entity_Customer extends
Mage_Eav_Model_Entity_Abstract
{
    /**
     * Initiate resources
     *
     */
    public function __construct()
    {
        $resource = Mage::getSingleton('core/resource');
        $this->setType('customer');
        $this->setConnection(
            $resource->getConnection('core_setup'),
            $resource->getConnection('core_setup')
        );
    }

Let me know if there is any other way to solve this.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文