又来麻烦大家了
我在主機:測試plog1.01版本(as4,apache2.0.54,php4.4.0,mysql4.15),
summary頁面調用:
最近發表的文章: 
http://dabu.twbbs.org/plog/rss.php?summary=1本周最多評論:http://dabu.twbbs.org/plog/rss.php?summary=1&type=mostcommented
本周閱讀最多的文章:http://dabu.twbbs.org/plog/rss.php?summary=1&type=mostread
都只出來:summary.php 原本頁面的內容?即內容與:http://dabu.twbbs.org/plog/summary.php 完全一樣我察看了一下:rss.php 的內容:
13    // create our own action map
14    $actionMap = Array( "Default" => "RssAction" );
15    $controller = new Controller( $actionMap, "op" );
16   
17   $request =& HttpVars::getRequest();
18   if( isset($request["summary"])) {
19      $request["op"] = "rss";
20      include_once( PLOG_CLASS_PATH."summary.php" );
21      die();22   }
如果把,17到22行屏蔽以後,能夠出來rss的頁面。
但數據不是,所我們要求正確數據。
同样:index.template
  {$locale->tr("summary_most_read_articles")} 
     {if $readestBlogs} 
       <a href="{$url->getRssUrl()}?summary=1&type=mostread"> 
         <img src="{$url->getUrl("/imgs/rss_logo_small.gif")}" 
         alt="RSS" /></a>       
 {/if} 
---------------------------------------------
???????????