sitemap 的 sitemap1.gz 生不出來
試了很久
還是找不出原因
我開啟 pluginsitemap.class.php
process的function裡
$this->register();
後面加上
$tmpFile = $this->cacheFolder."/sitemap.gz";
$gz1 = gzopen($tmpFile,'w9');
if ( $gz1 )
{
$xmlData = "<?xml version='1.0' encoding='UTF-8'?>\n".
"<urlset xmlns=\"
http://www.sitemaps.org/schemas/sitemap/0.9\">\n";
gzwrite($gz1, $xmlData);
}
它好像不會執行,所以也沒生成sitemap.gz這個檔
但是如果把這段加到register的function裡最後
它是會執行,並且生成sitemap.gz這個檔
(這樣表示我.htaccess的權限都ok)
這情況好像跑完$this->register()之後就停住了...
有人遇到相同的問題嗎?....
好怪.. 麻煩各位大大賜教