返回顶部
首页 > 资讯 > CMS >PJblog3 读取日志出错.3002 : 文件无法被打开
  • 940
分享到

PJblog3 读取日志出错.3002 : 文件无法被打开

PJblog3读取日志 2022-06-12 02:06:02 940人浏览 八月长安
摘要

修改处理 在header.asp页面,找到 复制代码代码如下: If InStr(Replace(LCase(Request.ServerVariables("URL")), "\", "/"), "/default.a

修改处理

在header.asp页面,找到


复制代码代码如下:

If InStr(Replace(LCase(Request.ServerVariables("URL")), "\", "/"), "/default.asp")<>0 Then

'备用做304优化

' Dim clientEtag, serverEtag

' serverEtag = getEtag

' clientEtag = Request.ServerVariables("Http_IF_NONE_MATCH")

' Response.AddHeader "ETag", getEtag

' if serverEtag = clientEtag then

' Response.Status = "304 Not Modified"

' Session.CodePage = 936

' Call CloseDB

' Response.end

' end if

Dim Tid

If CheckStr(Request.QueryString("id"))<>Empty Then

Tid = CheckStr(Request.QueryString("id"))

End If

If Len(Tid)>0 Then

Dim rUrl

If blog_postFile = 2 Then

rUrl = "article/" & Tid & ".htm"

else

rUrl = "article.asp?id=" & Tid

end if

RedirectUrl (rUrl)

Response.end

End If

End If

在下面添加代码


复制代码代码如下:

' Added For Dynamic Article Before ::: eg:

If InStr(Replace(LCase(Request.ServerVariables("URL")), "\", "/"), "/article.asp")<>0 Then

Dim Tid2

If CheckStr(Request.QueryString("id"))<>Empty Then

Tid2 = CheckStr(Request.QueryString("id"))

End If

If Len(Tid2)>0 Then

Dim rUrl2

If blog_postFile = 2 Then

rUrl2 = "article/" & Tid2 & ".htm"

end if

RedirectUrl (rUrl2)

Response.end

End If

End If

如此处理之后,当网友从搜索引擎点击 http:/www.**.com/article.asp?id=478时,PJ3就会引导网友访问http://www.**.com/article/478.htm

这样就不会因日志读取不正确而出现 "读取日志出错.3002 : 文件无法被打开" 的错误了

--结束END--

本文标题: PJblog3 读取日志出错.3002 : 文件无法被打开

本文链接: https://lsjlt.com/news/32689.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作