一个竟然存在了四年的博客
Posts tagged Bo-blog
安装编辑器FCKeditor2.5
Dec 4th
1,下载FCKeditor2.5正式版
http://sourceforge.net/project/showfiles.php?group_id=75348
2,解压,上传到/blog/editor/fckeditor/里面
3,关键的editordef.php
<?PHP
if (!defined(‘VALIDADMIN’)) die (‘Access Denied.’);
$editorjs=<<<eot
<script language=”javascript” type=”text/javascript” src=”editor/fckeditor/fckeditor.js”></script>
<script type=”text/javascript”>
window.onload = function()
{
var oFCKeditor = new FCKeditor( ‘content’ ) ;
oFCKeditor.Height = “400″;
oFCKeditor.Width = “100%” ;
oFCKeditor.BasePath = ‘/editor/fckeditor/’ ;
oFCKeditor.ReplaceTextarea() ;
}
</script>
eot;
$editorbody=<<<eot
<textarea name=”content” id=”content” rows=’20′ cols=’100′ style=’font-size: 10pt;’>{content}</textarea>
<li>{$lna[743]}</li>
<li>{$lna[744]}</li></ul>
eot;
另存为editordef.php,放到
/blog/editor/fckeditor/
此时就可以使用FCKrditor编辑器发表文章了.
Sitemap For Bo-blog 2.0.x
Nov 30th
Sitemaps(站点地图)是为了方便搜索引擎对网站页面进行有效索引的一种方法。站点地图通常是一个XML文件,它包含了站点中关于URL地址的许多 “元信息”(比如:什么时候更新、更新的频率、URL的重要程度以及与这个站点中其他URL的关联程度),以便于搜索引擎更有效地对站点进行索引。
More >