由于智简魔方后台设置比较复杂,我暂时还没找到在那里设置,于是去数据库改了,在此记录一下 > 修改隐私策略地址 ``` UPDATE `shd_configuration` SET value='/newsview?id=4' where setting = 'privacy_clause_url' ``` > 修改TOS地址 ``` UPDATE `shd_configuration` SET value='/newsview?id=4' where setting = 'server_clause_url' ``` > 设置全部产品无需实名 ``` UPDATE `shd_products` SET is_truename = 0; ``` > 设置某个范围产品利润 ``` UPDATE `shd_products` SET `upstream_price_value`= 120 where id > xx; ``` > 设置某个范围产品隐藏 ``` UPDATE `shd_products` SET `hidden`= 1 where id > xx; ``` > 查询某个范围的续费价格,自己改价格 ``` SELECT id,percent_value,amount FROM `shd_host` where productid >=224 and productid<=227; ``` Loading... 由于智简魔方后台设置比较复杂,我暂时还没找到在那里设置,于是去数据库改了,在此记录一下 > 修改隐私策略地址 ``` UPDATE `shd_configuration` SET value='/newsview?id=4' where setting = 'privacy_clause_url' ``` > 修改TOS地址 ``` UPDATE `shd_configuration` SET value='/newsview?id=4' where setting = 'server_clause_url' ``` > 设置全部产品无需实名 ``` UPDATE `shd_products` SET is_truename = 0; ``` > 设置某个范围产品利润 ``` UPDATE `shd_products` SET `upstream_price_value`= 120 where id > xx; ``` > 设置某个范围产品隐藏 ``` UPDATE `shd_products` SET `hidden`= 1 where id > xx; ``` > 查询某个范围的续费价格,自己改价格 ``` SELECT id,percent_value,amount FROM `shd_host` where productid >=224 and productid<=227; ``` Last modification:July 15, 2023 © Allow specification reprint Like 如果觉得我的文章对你有用,请随意赞赏