惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

V
Visual Studio Blog
Y
Y Combinator Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
IT之家
IT之家
量子位
小众软件
小众软件
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
有赞技术团队
有赞技术团队
罗磊的独立博客
S
SegmentFault 最新的问题
博客园_首页
N
Netflix TechBlog - Medium
月光博客
月光博客
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
aimingoo的专栏
aimingoo的专栏
T
Tailwind CSS Blog
M
MIT News - Artificial intelligence
A
About on SuperTechFans
The Cloudflare Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
腾讯CDC
MyScale Blog
MyScale Blog

博客园 - boy119

ISAPI_Rewrite二级域名的问题 制作dnn皮肤的扩展插件 中国DNN团队博客群开通,欢迎大家加入 NETMECHANIC.COM测试网页特性 让IIS服务器支持中文文件名 asp.net中文环境的安装方法 这个post收集可以借鉴的网站界面 从dvbbs转移到cnforums的经验 还有4个wallop邀请,需要的朋友请报名! DNN的空间占用问题 Dnn3的新闻文章模块和一些看法 access转换为sqlserver的注意事项 cnforums1.2中“在过去的 24 小时内最活跃的 10 位会员”和“论坛统计信息”空白的解决方法 DNN文章模块使用datagrid分页心得 翻译网站 dnn3模块——FlashPlayer测试版 DotNetNuke Version 3.0.5 ( Public Beta 2 )发布 不错的城市 dnn 3.0.4中discussion的bug
解决dnn3.06 UserOnLine/Survey不能正常运行的bug
boy119 · 2004-12-09 · via 博客园 - boy119

1、UserOnLine模块不能正常使用
解决方法:在数据库中导入dnn2的UserPortal表即可。
2、UserOnLine模块的图表在友好URL模式下不能正常显示
解决方法:修改UserOnLine目录下的UsersOnline.ascx
在图片地址前加入~/DesktopModules/UsersOnline/
例如:src="uoTotal.gif"改为src="~/DesktopModules/UsersOnline/uoTotal.gif"

我觉得这个bug还会有更好的方法,如果大家知道的话,请指点一下。
3、Survey模块不能正常使用
解决方法:修改Survey目录下的DataProvider.vb
将38行的objProvider = CType(Framework.Reflection.CreateObject("data", "CompanyName.Survey", "CompanyName.Survey"), DataProvider)改为
 objProvider = CType(Framework.Reflection.CreateObject("data", "DotNetNuke.Modules.Survey", "DotNetNuke.Modules.Survey"), DataProvider)
还要将survey.ascx\EditSurvey.ascx\Settings.ascx文件中Inherits="CompanyName.Survey.Survey"改为
Inherits="DotNetNuke.Modules.Survey.Survey"

如果大家还发现了其他的bug可以写出来,想办法解决掉。