记忆盒子

把记忆装进灰色的盒子,封装起来,那年那月,重新拾起。

首页搜索目录
search
当前主题: 互联网络

zblog文章管理界面显示文章浏览数的方法

作者:Kaka    时间:2015-6-18 15:44:1    浏览:    评论:5

      zblog用了6年,至今一直用的是最经典的zblog 1.8 asp版,后面不想升级主要是不想折腾,觉得没这个必要,现在这个版本用得很好。不过话又说回来,zblog的后台管理界面确实太简单了,有一些信息我们并不能直接从后台获取,例如文章的浏览数量,评论数量等,而文章的浏览数量是我最近比较关注的问题。

      由于对zblog的asp程序比较了解,插件也开发了好几个,所以我想能否通过更改下后台管理程序,满足自己的需要,在文章管理界面直接显示每篇文章的浏览数。

      程序修改起来很容易,甚至不用任何调试,很快就改好了。看看下面的新界面吧。

zblog文章管理界面

zblog文章管理界面

      “浏览”一列是新增的。

      加了这一列后,可以很方便的看到哪些文章更受欢迎,哪些文章的用户群更多,使我们明白如何去更新网站和SEO优化。

      下面附上代码。

      打开文件

\FUNCTION\c_system_manage.asp

      找到如下函数

'*********************************************************
' 目的:    Manager Articles
'*********************************************************
Function ExportArticleList(intPage,intCate,intLevel,intTitle)
... ...
End Function
'*********************************************************

      然后替换为

'*********************************************************
' 目的:    Manager Articles
'*********************************************************
Function ExportArticleList(intPage,intCate,intLevel,intTitle)

Call Add_Response_Plugin("Response_Plugin_ArticleMng_SubMenu",MakeSubMenu(ZC_MSG168 & "(" & ZC_MSG100 & ")","../cmd.asp?act=ArticleEdt&type=" & ZC_BLOG_WEBEDIT,"m-left",False))

Call Add_Response_Plugin("Response_Plugin_ArticleMng_SubMenu",MakeSubMenu(ZC_MSG168 & "(" & ZC_MSG101 & ")","../cmd.asp?act=ArticleEdt","m-left",False))

 Dim i
 Dim objRS
 Dim strSQL
 Dim strPage
 Dim intPageAll

 Call CheckParameter(intPage,"int",1)
 Call CheckParameter(intCate,"int",-1)
 Call CheckParameter(intLevel,"int",-1)
 Call CheckParameter(intTitle,"sql",-1)
 intTitle=vbsunescape(intTitle)
 intTitle=FilterSQL(intTitle)

 Response.Write "<div class=""Header"">" & ZC_MSG067 & "</div>"
 Response.Write "<div class=""SubMenu"">" & Response_Plugin_ArticleMng_SubMenu & "</div>"
 Response.Write "<div id=""divMain2"">"

 Call GetBlogHint()

 Response.Write "<form id=""edit"" method=""post"" enctype=""application/x-www-form-urlencoded"" action=""../admin/admin.asp?act=ArticleMng"">"

 Response.Write "<p>"&ZC_MSG158&":</p><p>"

 Response.Write ZC_MSG012&" <select class=""edit"" size=""1"" id=""cate"" name=""cate"" style=""width:100px;"" ><option value=""-1"">"&ZC_MSG157&"</option> "
 Dim Category
 For Each Category in Categorys
  If IsObject(Category) Then
   Response.Write "<option value="""&Category.ID&""" "
   Response.Write ">"&TransferHTML(Category.Name,"[html-format]")&"</option>"
  End If
 Next
 Response.Write "</select> "

 Response.Write ZC_MSG061&" <select class=""edit"" size=""1"" id=""level"" name=""level"" style=""width:80px;"" ><option value=""-1"">"&ZC_MSG157&"</option> "

 For i=LBound(ZVA_Article_Level_Name)+1 to Ubound(ZVA_Article_Level_Name)
   Response.Write "<option value="""&i&""" "
   Response.Write ">"&ZVA_Article_Level_Name(i)&"</option>"
 Next
 Response.Write "</select>"

 Response.Write " "&ZC_MSG224&" <input id=""title"" name=""title"" style=""width:150px;"" type=""text"" value="""" /> "
 Response.Write "<input type=""submit"" class=""button"" value="""&ZC_MSG087&""">"

 Response.Write "</p></form>"

 Set objRS=Server.CreateObject("ADODB.Recordset")
 objRS.CursorType = adOpenKeyset
 objRS.LockType = adLockReadOnly
 objRS.ActiveConnection=objConn
 objRS.Source=""

 strSQL="WHERE ([log_Level]>0) AND (true=true) "

 If CheckRights("Root")=False Then strSQL= strSQL & "AND [log_AuthorID] = " & BlogUser.ID

 If intCate<>-1 Then
  strSQL= strSQL & " AND [log_CateID] = " & intCate
 End If

 If intLevel<>-1 Then
  strSQL= strSQL & " AND [log_Level] = " & intLevel
 End If

 If intTitle<>"-1" Then
  strSQL = strSQL & "AND ( (InStr(1,LCase([log_Title]),LCase('" & intTitle &"'),0)<>0) OR (InStr(1,LCase([log_Intro]),LCase('" & intTitle &"'),0)<>0) OR (InStr(1,LCase([log_Content]),LCase('" & intTitle &"'),0)<>0) )"
 End If

 Response.Write "<table border=""1"" width=""100%"" cellspacing=""1"" cellpadding=""1"">"
 Response.Write "<tr><td>"& ZC_MSG076 &"</td><td>"& ZC_MSG012 &"</td><td>"& ZC_MSG003 &"</td><td>"& ZC_MSG075 &"</td><td>"& ZC_MSG060 &"</td><td>"& ZC_MSG130 &"</td><td></td><td></td><td></td></tr>"

 objRS.Open("SELECT * FROM [blog_Article] "& strSQL &" ORDER BY [log_PostTime] DESC")
 objRS.PageSize=ZC_MANAGE_COUNT
 If objRS.PageCount>0 Then objRS.AbsolutePage = intPage
 intPageAll=objRS.PageCount

 If (Not objRS.bof) And (Not objRS.eof) Then

  For i=1 to objRS.PageSize

   Response.Write "<tr>"

   Response.Write "<td>" & objRS("log_ID") & "</td>"

   Dim Cate
   For Each Cate in Categorys
    If IsObject(Cate) Then
     If Cate.ID=objRS("log_CateID") Then
      Response.Write "<td>" & Left(Cate.Name,6) & "</td>"
     End If
    End If
   Next

   Dim User
   For Each User in Users
    If IsObject(User) Then
     If User.ID=objRS("log_AuthorID") Then
      Response.Write "<td>" & User.Name & "</td>"
     End If
    End If
   Next

   'Response.Write "<td>" & ZVA_Article_Level_Name(objRS("log_Level")) & "</td>"
   Response.Write "<td>" & FormatDateTime(objRS("log_PostTime"),vbShortDate) & "</td>"
   If Len(objRS("log_Title"))>14 Then
    Response.Write "<td><a href=""../view.asp?id=" & objRS("log_ID") & """ title="""& Replace(objRS("log_Title"),"""","") &""" target=""_blank"">" & Left(objRS("log_Title"),14) & "..." & "</a></td>"
   Else
    Response.Write "<td><a href=""../view.asp?id=" & objRS("log_ID") & """ title="""& Replace(objRS("log_Title"),"""","") &""" target=""_blank"">" & objRS("log_Title") & "</a></td>"
   End If
   Response.Write "<td>" & objRS("log_ViewNums") & "</td>"
   Response.Write "<td align=""center""><a href=""../cmd.asp?act=ArticleEdt&type="& ZC_BLOG_WEBEDIT &"&id=" & objRS("log_ID") & """>[" & ZC_MSG100 & "]</a></td>"
   Response.Write "<td align=""center""><a href=""../cmd.asp?act=ArticleEdt&id=" & objRS("log_ID") & """>[" & ZC_MSG101 & "]</a></td>"
   Response.Write "<td align=""center""><a onclick='return window.confirm("""& ZC_MSG058 &""");' href=""../cmd.asp?act=ArticleDel&id=" & objRS("log_ID") & """>[" & ZC_MSG063 & "]</a></td>"
   Response.Write "</tr>"

   objRS.MoveNext
   If objRS.eof Then Exit For

  Next

 End If

 Response.Write "</table>"

 'For i=1 to objRS.PageCount
 ' strPage=strPage &"<a href='../admin/admin.asp?act=ArticleMng&amp;page="& i &"&cate="&ReQuest("cate")&"&level="&ReQuest("level")&"&title="&Escape(ReQuest("title"))&"'>["& Replace(ZC_MSG036,"%s",i) &"]</a> "
 'Next

 strPage=ExportPageBar(intPage,intPageAll,ZC_PAGEBAR_COUNT,"../admin/admin.asp?act=ArticleMng&amp;cate="&ReQuest("cate")&"&amp;level="&ReQuest("level")&"&amp;title="&Escape(ReQuest("title")) & "&amp;page=")

 Response.Write "<hr/>" & ZC_MSG042 & ": " & strPage
 Response.Write "</div>"

 objRS.Close
 Set objRS=Nothing

 ExportArticleList=True

End Function
'*********************************************************

      红色标记的代码是添加的部分。

      请注意,这个是zblog1.8版本的程序,不一定适合其他版本,更新前请先备份程序

x

标签: ZBlog  

※ 网站速度慢?试试网站自动优化工具 ※

上一篇: 未备案网站7月1日起不能再投放百度联盟广告了
下一篇: 教你怎样辨别你买的是真云主机还是假云主机(VPS)
  • 2.塑*******
  • 我wordpress和zblog都用过,感觉二个都差不多,只要是你喜欢哪一个多点
  • 2015/7/7 11:15:23 回复该留言
  • 1.脑****
  • 现在的zblogphp也没有浏览人气的显示,不过显示文章的评论数。网站前台也不显示这些的。
  • 2015/6/22 13:22:23 回复该留言

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

订阅博客                   QQ交流群(312716741)

  • 通过Google订阅本站 通过鲜果订阅本站 通过抓虾订阅本站
  • 通过QQ邮箱订阅本站 通过Yahoo订阅本站 通过有道订阅本站

Search

最新评论及回复

最近留言

网站分类

Powered By Z-Blog 1.8 Walle Build 91204 Designed by Han'space

Copyright @2009-2024 All Rights Reserved. 粤ICP备14028160号-1

Powered By Z-Blog 1.8 Walle Build 91204
Copyright @2009-2024 All Rights Reserved.