zoukankan      html  css  js  c++  java
  • Community Server 1.0 Beta安装使用记录(二)

    今天看了一下Telligent Systems.com网站中的一些问题描述,证实以上描述错误都可以忽略不管,另外还有一点就是:在运行CS_2004_11_17_Full.sql时修改存储过程forums_Posts_UpdatePostsInCategories中的
    where
    C.[Category] is not null
    and C.[Category] not in (
    Select [Name] FROM forums_Post_Categories where CategoryType = @CategoryType and ForumID = @ForumID
    )

    where
    C.[Category] is not null
    and C.[Category] COLLATE Latin1_General_CI_AS not in (
    Select [Name] FROM forums_Post_Categories where CategoryType = @CategoryType and ForumID = @ForumID
    )
    就是在not in前面加上COLLATE Latin1_General_CI_AS以避免数据库中的一些排序规则冲突。

    IIS提示报错的原因是:我在Win2K3下是创建了一个站点在80端口上,访问URL应该为http://localhost,而DefaultCommunity.sql中创建的站点是http://localhost/cs,所以通过http://localhost访问会出错,修正方法是修改DefaultCommunity.sql中的http://localhost/cs为http://localhost再运行以建立或者直接修改数据库的forums_sites表中的对应记录http://localhost/cs为http://localhost即可通过http://localhost正常浏览了。此处关键在于在IIS中创建的站点或虚拟目录的访问URL需要和DefaultCommunity.sql中的访问URL相同

    建立了站点后,看了一下大概的设置,总体上感觉不太稳定,在试用2小时的时间里,IE停止响应了三次.

    创建了一个Blog,建立了几个分类,发现一些不足的地方,如下:

    SharePoint技术、企业信息化现状分析、测试的分类、S我的博客 这几个分类不能使用,我的结论是:分类名称超过4个汉字就不支持,字母+汉字的名称不支持。

    刚弄明白CommuityServer原来是一个知识管理工具,该产品自己的功能描述“A Knowledge Management and Collaboration Platform ”可以用来创建个人的Blog、论坛、相册等

  • 相关阅读:
    Kmp 加深理解 之 poj 3461
    Kmp 模板 之 hdu 1711 Number Sequence
    最大连续子序列和(经典DP) 之 hdu 1231 最大连续子序列
    数学 之 hdu 4710 Balls Rearrangement
    01背包变形 之 hdu 2126 Buy the souvenirs
    逆序数 之 hdu 1394 Minimum Inversion Number
    根据进程文件id查看所有进程信息
    N皇后问题
    17. 电话号码的字母组合
    697. 数组的度
  • 原文地址:https://www.cnblogs.com/xqyi/p/72272.html
Copyright © 2011-2022 走看看