1

我希望我们的用户发布视频、文章、音频、链接和图像。用户应该能够发布内容,然后我根据自己的标准批准或拒绝内容。用户应该能够对文章进行上/下投票、发表评论并对评论进行投票。当有人查看文章时,他们应该能够看到类似的帖子。此外,由于 umbraco 使用 xslt,我的网站是否能够扩展?

我知道可能会涉及很多编程,但如果该站点可以很好地扩展,我愿意使用它。

4

1 回答 1

1

Umbraco is a full-fledged CMS system. Although it sounds like you are asking if it can handle user generated content. So maybe you mean a Community Management System?

Umbraco does have member management and through the Umbraco API you can allow for image uploads, video embeds, etc. Or you could build your own database and use .NET User Controls to create / read content from that custom database.

All XSLT is cached so speed is generally not an issue, but you could use User Controls if you see some slowdown (would have to be LOTS of content).

If you are a .NET programmer, then Umbraco is a great option. If not, then just using XSLT to build a community management system might be daunting.

于 2009-12-19T00:07:06.767 回答