04 Jul 2009

从Wordpress转到Typecho了

WP比较占资源,今天把博客又转到Typecho了,忙乎了大半夜(现在接近临晨4点),东拼西凑,南抄北挪,终于啊,皮肤基本上搞定了,发现Typecho的皮肤也蛮简单的,默认皮肤就七八个文件,照着改也蛮容易入门的。
郁闷的是现在还是在localhost上,自己点击,速度超好,刷刷刷的哦。还有就是Typecho这个版本(0.6)默认没有WYSIWYG的编辑器,只这篇post就是手写发出的,不过这样也好,以前在博客园用编辑器编辑的博客有时候因皮肤调整,会出现编辑器的html不符合皮肤,撑的页面不好看。
最搞的是我一直没找到如何处理分类排序的功能,还去官方论坛发了个贴(标准的新手贴),被告知按住拖动就OK了...
(*^__^*) 嘻嘻……

在此感谢所有TV  感谢博客园  感谢Typecho开发团队  感谢Wordpress  感谢Paint.Net  感谢PhotonVPS

感谢...

21 Jun 2009

博客园到Wordpress搬家成功!

终于把在博客园的博客的数据导入到Wordpress内了,包括随笔/文章,图片,标签,评论等,是写了两个C# console程序做到的,程序我传到博客园了,如果有需要的朋友可以试试。但请注意,要自己在博客园后台备份RSS文件放到Reader的Data目录内,设置为编译选项为永远复制,运行后会生成一个Entry.xml并且把博客内的图片和分类、Tag、评论等抓下来,然后将此xml文件拷贝到Writer内,在代码内修改一下你的Wordress的数据库连接,然后跑一下Writer,就可以完成数据导入到Wordpress了,时间匆忙,代码写的很乱,有些地方是针对本人需求处理的,如果你想要直接运行此程序完成你的博客园博客到Wordpress的转换,那是不可能滴!你一定要有简单的C#调试基础哦。

http://files.cnblogs.com/huobazi/MyBlogTools.rar

09 Feb 2004

分页存储过程

搞了一中午终于可以用了 但不知道效率如何.郁闷的是我要用php去调用它

  /*+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    CopyRight:   ******
    CreateData:   2004-02-09
    Language:   MS SQL SERVER 存储过程
    AuthorName:  Meibo Wu

    实现功能:   分页显示当用户选择了图片大分类时(按手机)的数据
    参数说明:   @bigtype为大分类
    @gid为传入的图片类型           
        $PageSize为每页显示的记录数量
    @pageindex为当前页码                             
    LastUpdate:            
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
CREATE procedure sms_img_page_no_smalltype
(
 @bigtype nvarchar(20),
 @gid int,
 @pagesize int,
 @pageindex int
)
as
set nocount on
 declare @LikeBigType nvarchar(20)
 declare @PageLowerBound int
 declare @PageUpperBound int
 declare @indextable table(id int identity(1,1),nid int)
  set @PageLowerBound=(@pageindex-1)*@pagesize
  set @PageUpperBound= @PageLowerBound+@pagesize
  set @LikeBigType= @bigtype+'%'
  set rowcount @PageUpperBound
 insert into @indextable(nid)
  select  a.col_id
   from web_sms_data_img as a join web_sms_data_mobile as q
   on a.col_mobile_type=q.col_mobile_type
   where
a.col_img_group=@gid
    and q.col_mobile_comment  like @LikeBigType
   order by a.col_id desc 
 /*
 select  @LikeBigType
 select * from @indextable 
 */
 select q.col_mobile_comment,
  a.col_id,
  a.col_img_hits,
  a.col_img_dir,
  a.col_img_name
  from web_sms_data_img as a join web_sms_data_mobile as q
   on a.col_mobile_type=q.col_mobile_type
    join @indextable  as p
    on a.col_id=p.nid
  where p.id>@PageLowerBound and p.id<
=@PageUpperBound
   and
a.col_img_group=@gid
   and q.col_mobile_comment like @LikeBigType
 
 order by p.id

set nocount off
GO