用户
 找回密码
 入住 CI 中国社区
搜索
楼主: yho
收起左侧

[GoCart] 特大好消息,官网推出了开源程序gocart

  [复制链接]
发表于 2011-11-7 20:03:31 | 显示全部楼层
本帖最后由 qi_ruo 于 2011-11-7 20:42 编辑

1 产品页面在php.ini 为 short_open_tag = Off 的时候会报错请修改/gocart/views/product.php的180行
<?endif;?> 改为 <?php endif;?>

2 顾客注册时会出现 Fatal error: Cannot use object of type stdClass as array

请修改/gocart/models/customer_model.php的218行
PHP复制代码
if($customer['group_id']!=0)
{
    $group = $this->get_group($customer['group_id']);
    if($group) // group might not exist
    {
        if($group['discount_type'] == "fixed") {
            $customer['group_discount_formula'] = "- ". $group['discount'];
        } else {
            $customer['group_discount_formula'] = "* ". (float)$group['discount']/100 ;
        }
    }
}
复制代码

改为
PHP复制代码
if($customer['group_id']!=0)
{
    $group = $this->get_group($customer['group_id']);
    if($group) // group might not exist
    {
        if($group->discount_type == "fixed") {
            $customer['group_discount_formula'] = "- ". $group->discount;
        } else {
            $customer['group_discount_formula'] = "* ". (float)$group->discount/100 ;
        }
    }
}
复制代码

发表于 2011-11-7 21:39:35 | 显示全部楼层
qi_ruo 发表于 2011-11-7 20:03
1 产品页面在php.ini 为 short_open_tag = Off 的时候会报错请修改/gocart/views/product.php的180行
改为 ...

这么快就看了啊。
我才下载啊。。。。。
发表于 2011-11-8 23:00:13 | 显示全部楼层
试了下,问题多多。
发表于 2011-11-11 14:00:56 | 显示全部楼层
学习下风格                           
发表于 2011-11-11 14:08:40 | 显示全部楼层
好东西。是需要顶上去的。。
发表于 2011-11-15 22:53:04 | 显示全部楼层
下载下来观摩一下
发表于 2011-11-15 23:49:29 CI中国手机版 | 显示全部楼层
问题是有,我安装之后后台不行登录。因为是https协议的。。。。没时间看,就浏览了些
发表于 2011-11-16 16:39:52 | 显示全部楼层
要是有人能够给翻译一下就更完美了
发表于 2011-11-29 09:26:52 | 显示全部楼层
弱弱的问一句,gocart是什么。
发表于 2011-11-29 12:58:24 | 显示全部楼层
{:soso_e102:}

本版积分规则