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、论坛、相册等

  • 相关阅读:
    Codeforces Round #260 (Div. 1) A
    cdoj 1131 男神的礼物 区间dp
    bzoj2435: [Noi2011]道路修建 树上dp
    hdu 4597 Play Game 区间dp
    cdoj 31 饭卡(card) 01背包
    hdu5256 序列变换 dp LIS
    BZOJ 4027: [HEOI2015]兔子与樱花 树上dp
    Codeforces Round #202 (Div. 1) D. Turtles dp
    hdu 4114 Disney's FastPass 状压dp
    Python help() 函数
  • 原文地址:https://www.cnblogs.com/xqyi/p/72272.html
Copyright © 2011-2022 走看看