LifeType 要匯出所有文章的方法, 除了自己從 DB 撈以外, 另一招可以用 RSS 倒.
下述假設文章量是在 30000篇以內.
LifeType 修改 RSS 秀出所有的文章
- cp /var/www/lifetype/rss.php /var/www/lifetype/rss2.php
- vim /var/www/lifetype/rss2.php # 於檔案最上方, 增加一行
define('TSUNG', 1);
- vim /var/www/lifetype/class/action/rssaction.class.php
# 於 103行$amount = $blogSettings->getValue( "recent_posts_max", 15 );
# 改成
if (defined('TSUNG')) { $hardLimit = 30000; $amount = 30000; } else { $amount = $blogSettings->getValue( "recent_posts_max", 15 ); }
- 在連結 http://lifetype-domain/rss2.php , 就可以透過 rss 倒出所有文章.
在〈LifeType 透過 RSS Dump 所有文章〉中有 1 則留言