首先到Discuz官方网站下载Discuz源码文件,打开自己的项目新建一个bbs的文件夹(注意大小写,需要在DNT.CONFIG中配置),将下载的Discuz论坛源码解压拷出Discuz.Web中所有文件放入项目中新建的bbs文件夹将Discuz.Web中的Web.Config相关信息配置到你项目的Web.Config中。
<system.web> <compilation defaultLanguage="c#" debug="true" /> <httpModules> <add type="Discuz.Forum.HttpModule, Discuz.Forum" name="HttpModule"/> </httpModules> <identity impersonate="true" userName="lm" password="sa"/> <httpRuntime maxRequestLength="10000"/> <webServices> <protocols> <add name="HttpGet"/> <add name="HttpPost"/> </protocols> </webServices> <globalization requestEncoding="utf-8" responseEncoding="utf-8" fileEncoding="utf-8"/> </system.web> <system.webServer> <validation validateIntegratedModeConfiguration="false"/> <modules> <!-- 注意:此节设置由Discuz!NT接管http请求。不会干涉对非Discuz!NT论坛路径下的请求。--> <add type="Discuz.Forum.HttpModule, Discuz.Forum" name="HttpModule"/> </modules> <defaultDocument> <files> <clear/> <add value="index.aspx"/> <add value="forumindex.aspx"/> <add value="spaceindex.aspx"/> <add value="albumindex.aspx"/> </files> </defaultDocument> <directoryBrowse enabled="true"/> </system.webServer>
配置好后删除Discuz.Web中的Web.Config文件,并将Discuz.Web中的DNT.Config文件及config文件夹(包含里面所有文件)拷到你项目的根目录,并配置DNT.Config文件中的<Forumpath>/bbs/</Forumpath>,然后将Discuz.Web文件夹下的bin目录中所有dll文件拷到你项目中的bin目录下.到这我们完成了基本的配置,下面进行安装.
通过浏览器转到你项目路径下http://localhost/bbs/install/index.aspx开始按照Discuz的提示进行安装(在此过程中可能会由于文件夹权限问题导致你的失败,我们到项目文件夹下设置权限),这样即可安装成功.我们可以浏览bbs可能出现的情况就是打开页面一片空白,这种问题基本就是你的DNT.Config中的<Forumpath>/bbs/</Forumpath>,路径配置错误这种配置方法根据你的浏览路径进行配置,
如果浏览路径为localhost/myproduct/bbs/index.aspx 此时配置为<Forumpath>/myproduct/bbs/</Forumpath>,浏览成功后开始最后的整合.
下载整合类[点击下载]添加到你的项目中
类中有登陆Login,退出Logout,注册Regedit,删除Delete,修改密码ChangePassword方法
在你的项目中可以直接调用.
可以会出现的错误
Discuz.Config.GeneralConfigInfo config = Discuz.Config.GeneralConfigs.GetConfig();
未将对象实例化,这种问题也是你的bbs路径问题,在做整合时一定要保证你的bbs以成功安全而且能运行,不然总会出现一些想不到的错误.