贴心
全国7×24小时客服热线
安全
病毒杀除率高于99%
稳定
网站可用性高于99.9%
实力
服务68家上市企业及集团公司
点击数:10992015-07-16 14:35:57 来源: 外贸网站建设,深圳外贸网站建设,深圳网站建设,外贸商城网站制作-亿恩科技
将下面代码保存为master_categories_id.php,上传到网站根目录运行即可,操作前先备份数据库
<?php header("content-Type: text/html; charset=utf-8"); /*** 批量恢复zencart产品表master_categories_id为0的产品 ***/ require('includes/application_top.php'); echo '正在处理...'; $products_query = "select products_id from " . TABLE_PRODUCTS . " where master_categories_id = '0' order by products_id"; $products = $db->Execute($products_query); $id_array = array(); while(!$products->EOF){ $id_array[] = $products->fields['products_id']; $products->MoveNext(); } foreach($id_array as $val){ $categories_id = $db->Execute("select categories_id from " . TABLE_PRODUCTS_TO_CATEGORIES . " where products_id = '".(int)$val."' limit 0,1"); if($categories_id->fields['categories_id']){ $products=$db->Execute("update " . TABLE_PRODUCTS . " set master_categories_id = '" .$categories_id->fields['categories_id']. "' where products_id = " . (int)$val); } } echo 'OK!处理完毕'; require(DIR_WS_INCLUDES . 'application_bottom.php'); ?>