第一步,先备份数据库。然后,登录帝国CMS后台,“系统”—>“数据表与系统模型”—>管理数据表—>“新闻系统数据表 ( phome_ecms_news )”—>管理字段,先将字段newstext的字段名修改为:newstext2 。
第二步,在管理字段里,新增一个全新字段:newstext,注意将它的模型设置为:内容存文本,其他选项参考之前的newstext2。
第三步,将下面的PHP代码上传到网站根目录运行。注意修改一下代码中的参数。特别是,我网站原来的文章内容存在副表,如果你不是存副表,还需要修改一下代码里的SQL。代码如下:
以上代码运行时,因为运行太快可能会看不到页面任何显示,但是你可以观察URL,cur_num=50的数值变动说明在运行中。
- <?php
- //程序名称:将帝国CMS从内容存数据库改为:内容存文本
- //程序必须放在帝国CMS的网站根目录执行。比如:/zhuanwenben.php?password=hyywx@dzh
- $password=trim($_GET["password"]);
- if($password!="hyywx@dzh"){
- echo "运行密码错误。";exit();
- }
- set_time_limit(0); //执行时间为无限制
- $db_servername ='localhost';
- $db_name='hyywx'; //数据库名
- $db_username ='root'; //数据库用户名
- $db_password ='123456'; //数据库密码
- //使用PDO连接数据库
- $dsn = "mysql:host=".$db_servername.";dbname=".$db_name.";charset=UTF8";
- try {
- $conn = new PDO($dsn, $db_username, $db_password);
- $conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
- } catch(PDOException $e) {
- echo "数据库连接失败:" . $e->getMessage();
- }
- $news_table="phome_ecms_news";//文章主表
- $news_table2="phome_ecms_news_data_1";//文章副表
- $directory="d/txt/";//保存的目录
- $limit_num=50;//每次执行多少个
- $all_count=82309;//总数
- $cur_num=$_GET["cur_num"];//当前执行到的行数
- if(!$cur_num){$cur_num=0;}
- //B.newstext2为原存内容的字段,A.newstext为现在保存文本内容(文件URL)的字段。需要先去帝国CMS后台设置好对应的模型字段
- $results = $conn->query("SELECT A.id,A.classid,A.newstime,A.title,A.newstext,B.newstext2 FROM ".$news_table." A LEFT JOIN ".$news_table2." B ON A.id = B.id WHERE A.newstext = '' order by A.id asc LIMIT ".$cur_num.",".$limit_num);
- foreach ($results as $news) {
- $newstime=$news['newstime'];
- $year=date("Y",$newstime);//发布时间:年
- $mdH=date("mdH",$newstime);//发布时间:月日时
- $directory2=$directory.$year."/".$mdH."/";
- $file_name=md5($news['classid'].$news['id']);
- $newstext=$year."/".$mdH."/".$file_name;//待写入数据库的文件路径
- $content=$news['newstext2'];
- //var_dump($news);exit();
- if($content){
- $content="<? exit();?>".$content;
- $xieru_file=xieru_file($directory2,$file_name,$content);
- if($xieru_file){
- $up=$conn->exec("update ".$news_table." set newstext='".$newstext."' where id=".$news['id']);
- }
- }
- }
- if($cur_num>$all_count){
- echo "执行完毕。";exit();
- }
- $cur_num=$cur_num+$limit_num;
- echo '<html><head>
- <meta http-equiv="content-type" content="text/html; charset=utf-8">
- <script>window.location.href = "zhuanwenben.php?password='.$password.'&cur_num='.$cur_num.'";</script></head><body>
- 主表:'.$news_table.'<br>
- 副表:'.$news_table2.'<br>
- 总数:'.$all_count.'条<br>
- 每次执行:'.$limit_num.'条<br>
- 当前执行:从第<font color=red>'.$cur_num.'</font>条开始<br>
- 请不要关闭浏览器,系统自动执行下一步操作。
- </body></html>';
- function xieru_file($directory,$file_name,$content){
- $file = $directory . $file_name.'.php'; // 完整的文件路径
- if (!is_dir($directory)) {
- mkdir($directory, 0755, true); // 第三个参数设置为true,以递归创建多级目录
- }
- // 创建并写入文件
- $bytesWritten = file_put_contents($file, $content);
- // 检查文件是否创建成功
- if ($bytesWritten !== false) {
- return true;
- } else {
- return false;
- }
- }
运行完成后,此时已经在newstext字段里插入了文本的URL了。可以自己使用数据库管理软件检查一下。同时查看一下目录:/d/txt/里是否有保存文章内容的文件。(注意:如果第一次执行程序时没有把所有数据都转换为文本文件,那么可以多执行几次程序,查看newstext字段是否都已经存入了文本文件路径。)
第四步,在确认完成第三步并无误后,登录帝国CMS后台,同样进入:“系统”—>“数据表与系统模型”—>管理数据表—>“新闻系统数据表 ( phome_ecms_news )”—>管理系统模型。点击“管理系统模型”后,在对应的文章模型列表里点击“修改”,将字段“newstext”右边的框(参考字段“newstext2”)全部打上√。同时将字段“newstext2”的√全部去掉。把“自动生成表单模板”也勾选上。
保存后,清空数据库缓存,清空临时文件等。可以添加一篇文章测试一下。
至此完成。