歡迎光臨, 訪客. 請先 登入註冊一個帳號.
十一月 22, 2024, 11:14:04 下午
19595 文章 在 3865 主題 由 4579 會員
最新註冊會員: aa123aa1
  列出文章
頁: [1]
1  支援 / 使用與操作 / 无法显示注册的验证码. 於: 十月 13, 2006, 03:12:00 上午
地址为: http://manjublog.com

验证码错误的显示地址为:
http://manjublog.com/./tmp/a2f3d30af9e4298d2967c465049d0f61.gif
明显不应该有中间的/./的部分


有人碰到过类似的问题么?
2  開發 / 核心補強 / Re: 第五種網址模式 於: 一月 03, 2006, 07:20:23 下午
path_info是cgi1.1的标准。
win下的php4ts.dll已经包含了对此的支持。
ipb的该功能也能正常在win下使用。

好像目前只有zeus下,记得发生过问题,而且也不是zeus的问题,应该是代码的问题。
3  開發 / 核心補強 / Re: 第五種網址模式 於: 一月 03, 2006, 07:04:07 下午
改成类似于ipb的 /index.php/postid.html
这样的也不错。

在dreamhost的虚拟主机已经快把我搞得吐血了。
老是会出现dbapache用户的临时文件。
我服了他了。
4  開發 / 模版設計 / Re: 請問模板裡的變數$locale,$post,$blog這些變數是在哪裡定義的 於: 九月 24, 2005, 10:36:53 下午
模版中的变量在相关的脚本中赋值过来的说。
程式碼:
			$this->_view->setValue( "posts", $recentPosts );
$this->_view->setValue( "blogs", $siteBlogs );

5  開發 / 外掛程式 / 解決中文斷字問題 於: 六月 28, 2005, 08:55:27 下午
我使用的,中英文正常。

程式碼:
// add Multi-Byte substr. for xiami at www.it580.com/bbs
function msubstr($str,$start,$len)
{
$strlen=$start+$len;
for($i=0;$i<$strlen;$i++)
{
if(ord(substr($str,$i,1))>0xa0)
{
$strtmp.=substr($str,$i,2);
$i++;
}
else
{
$strtmp.=substr($str,$i,1);
}
}
return $strtmp;
}
6  支援 / 安裝與設定 / Re: Fedora 4 問題 於: 六月 28, 2005, 08:47:51 下午
引用自: Kevin
使用Fedora 4架設PLog-1.0.1用了老半天都架不起來  疑惑 ,安裝頁面就是出現空白,架設PLog1.0可以執行安裝頁面,且安裝完成,但是進入首頁怎麼樣都是空白,爬文爬到眼睛都脫窗了 目瞪口呆 ,才發現原的Fedora 4的PHP版本為5.0.4,安裝Plog會有問題,將系統裝回Fedora 3就非順利什麼都不用改就裝成功了。 開懷大笑


不管什么系统。你可以自己编译啊。
7  支援 / 使用與操作 / 为pLog加入google sitemaps支持 於: 六月 28, 2005, 08:45:12 下午
引用自: markwu
其實 google site mape 支援 rss2.0 的格式,應該是不用在寫一遍啦!只是可能有人還是喜歡用 google 的格式,就看各人喜好了!

有興趣嘗鮮的人,請用 SVN check out 這個 repository: http://devel.lifetype.net/svn/plog/plugins/trunk/sitemap

Mark


根据大家的测试结果。google sitemaps不支持rss2.0的格式。
今天又测试了一下。
发现我提供的脚本也有个问题存在。
google sitemaps 不支持 ISO 8601 ......
晕倒的说。
8  支援 / 使用與操作 / 为pLog加入google sitemaps支持 於: 六月 26, 2005, 11:30:21 上午
原文:http://blog.it580.com/?p=137

Google推出Google Sitemaps后.就想为pLog加上对它的支持。
之前一直很忙,直到今天上午才把它给加上。懒得写代码,就偷懒直接利用rss.php了。嘿嘿。
修改的Template如下:

< ?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.google.com/schemas/sitemap/0.84">
<url>
<loc>{$url->blogLink()}</loc>
<lastmod>{$locale->formatDate($now, "%Y-%m-%dT%H:%M:%SZ")}</lastmod>
<changefreq>alway</changefreq>
<priority>1</priority>
</url>

{foreach from=$posts item=post}
<url>
<loc>{$url->postPermalink($post)}</loc>
{assign var="postDate" value=$post->getDateObject()}
<lastmod>{$locale->formatDate($postDate, "%Y-%m-%dT%H:%M:%SZ")}</lastmod>
<changefreq>hourly</changefreq>
<priority>0.8</priority>
</url>
{/foreach}
</urlset>

保存到pLog安装目录\templates\rss\sitemap.template

通过你的网站,查看rss2的地址,将地址最后的rss20改为sitemap。
即可。

演示:http://xiami.manjublog.com/rss.php?profile=sitemap
9  建議 / 發表與交流 / 满族博客网 於: 六月 25, 2005, 04:57:07 下午
没有一定要求满人。
只要对满人,满文,满史感兴趣的都可以。 微笑

站点现在还不是很完善,mark客气了。

我还在修改中。
10  建議 / 發表與交流 / 满族博客网 於: 六月 23, 2005, 10:22:50 上午
http://manjublog.com
頁: [1]