匿名用户访问用发布站点模板创建网站的列表项时要求登录的问题解决

因为发布站点中的一个Feature被打开了,造成将列表FormPage的查看给Lock了,所以需要登录,将其关闭就OK了。哈哈。
英文KB:
Users are unexpectedly prompted to enter their credentials when they access a list in a Windows SharePoint Services 3.0 site that is based on the Publishing Site template

Users are unexpectedly prompted to enter their credentials when they access a list in a Windows SharePoint Services 3.0 site that is based on the Publishing Site template

Article ID:927082
Last Review:May 14, 2007
Revision:2.1

SYMPTOMS

Consider the following scenario. You use SharePoint 3.0 Central Administration to create a new Microsoft Windows SharePoint Services 3.0 site that is based on the Publishing Site template. You configure the site to use anonymous access. However, when a user tries to access a list on the site, the user is unexpectedly prompted to enter his or her credentials. You expect a user to be able to access a list on the site without a prompt to enter his or her credentials.

Back to the top

CAUSE

This behavior occurs if the lockdown feature is enabled for the Limited Access permission level. The lockdown feature prevents anonymous users from viewing form pages and using remote APIs.

Back to the top

RESOLUTION

To resolve this issue, use the Stadm.exe command-line tool to disable the lockdown feature. To do this, follow these steps:
1.Click Start, click Run, type cmd in the Open box, and then click OK.
2.Type the following lines at the command prompt. Press ENTER after each line.
cd /d %commonprogramfiles%\Microsoft Shared\Web Server Extensions\12\Bin
stsadm -o deactivatefeature -url http://ServerName -filename ViewFormPagesLockDown\feature.xml
3.Type exit to exit the command prompt.
Note After you run this command line against your site, you must toggle the Site and Surveys permissions to turn off Anonymous access. Then, turn on Anonymous access again. You must do this for the command to take effect on content that exists in the site.

Back to the top

APPLIES TO
Microsoft Office SharePoint Server 2007
Microsoft Windows SharePoint Services 3.0

Back to the top

Keywords: 
kbexpertiseinter kbprb kbtshoot KB927082

Back to the top

转载于:https://www.cnblogs.com/Bear-Study-Hard/archive/2007/08/02/839895.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/277009.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

知识点1: 进度条随数据变化,并添加渐变样式

效果图&#xff1a; dom&#xff1a; //  进度条             <div class"progress" :style"styleObj1"><div class"point"></div></div>//  数据容器<div class"precent"><counte…

第三篇.python编辑器和集成环境01

修改python的镜像源 使用pip可以提高网速\Lib\site-packages\pip\models\index.py文件&#xff0c;将PYPI的值改为你所需要的镜像源即可&#xff0c;例如改为豆瓣镜像源&#xff1a; #PyPI Index(https://pypi.python.org/) PyPI Index(https://pypi.douban.com/) 转载于:h…

常用SQL语句技法

下列语句部分是Mssql语句&#xff0c;不可以在access中使用。 SQL分类&#xff1a; DDL—数据定义语言(CREATE&#xff0c;ALTER&#xff0c;DROP&#xff0c;DECLARE) DML—数据操纵语言(SELECT&#xff0c;DELETE&#xff0c;UPDATE&#xff0c;INSERT) DCL—数据控制语言(GR…

JSP2.0中Simple Tag介绍

JSP2.0中为了简化标签的复杂性&#xff0c;增加了制作Simple Tag的标签类SimpleTagSupport类。 SimpleTagSupport类是实现SimpleTag接口的。它只需要实现一个doTag()方法即可&#xff0c;而不需要一堆回传值。 举例说明&#xff1a; 例1&#xff1a;HelloSimpleTag标签 第一步&…

[置顶] 动软软代码生成器使用(127.0.0.1)无法看到 SQLServer2008 新附加数据库的 原因 以及 解决方案...

在项目中&#xff0c;使用代码生成器给我们的开发工作带来了相当大的方便&#xff0c;而有时候会出现这样的问题&#xff0c;就是新附加的数据库在动软代码生成器当中看不到&#xff0c;奇了怪了 一&#xff0c;首先看动软代码生成器的链接字符串&#xff0c;如图 &#xff0c;…

对Hibernate使用之愚见

对Hibernate使用之愚见 国人跟风之潮&#xff0c;自古有之&#xff0c;至今亦然。确实&#xff0c;经过配置优化的Hibernate效率与无任何优化的Hibernate效率诚然不可同日而语。但由于项目开发的复杂性&#xff0c;开发周期中一些突发因素的制约&#xff0c;及项目构建者自身能…

设计模式学习总结1 - 创建型1 - Abstract Factory抽象工厂模式

AbstractFactory抽象工厂模式&#xff08;创建型&#xff09; 作用&#xff1a; 这种模式支持创建不同的对象&#xff0c;这些对象功能接近且一般都是在一起创建的。抽象工厂被具体化成不同的工厂来创建类似产品的不同产品。这种模式将类于使用的客户端分离以便通过工厂来创建。…

QT练习9 Dialog学习

http://files.cnblogs.com/hnrainll/dialog.zip 源代码下载转载于:https://www.cnblogs.com/hnrainll/archive/2011/05/30/2063135.html

C#中NULL,,DBNULL,String.Empty,Convert.IsDBNull()的区别

C#中的空值的判断较麻烦&#xff0c;不象在VB6中那么简单&#xff0c;这些各种空值的判断和理解对不熟悉的人来说&#xff0c;可能很麻烦&#xff0c;现就我在使用过程中的一点体会和大家共同分享。 (1)NULL null 关键字是表示不引用任何对象的空引用的文字值。null 是引用类型…

关于初始化C++类成员

转自:http://www.vckbase.com/document/viewdoc/?id584 在使用C编程的过程当中&#xff0c;常常需要对类成员进行初始化&#xff0c;通常的方法有两种&#xff1a; 第一种方法&#xff1a; CMYClass::CSomeClass() {x0;y1; } 第二种方法&#xff1a; CSomeClass::CSomeClass…

ASP.NET 2.0 中的新增服务、控件与功能概述(四)

原文出自http://blog.sina.com.cn/s/blog_48b6cd65010004fc.html个性化 另一个新增的服务是个性化&#xff0c;它提供了一种现成的解决方案&#xff0c;用于解决存储站点用户的个性化设置问题。目前&#xff0c;此类设置通常存储在Cookie、后端数据库或这两者中。无论这些设置存…

C/C++ 交换两个数,不使用第三个变量, 函数模板来实现

#include <iostream>template<typename T> void exchangeTwoNumber(T &t1, T &t2)&#xff1b;void test();int main() {int a 10, b 20;double q 10.1, w 20.2;char z z, x x;std::cout << "交换前的 a " << a << &qu…

Oracle错误集!

个人使用Oracle时出现的错误&#xff0c;在这里记下来&#xff0c;加深印象。 1、ORA-20000: ORU-10027: buffer overflow, limit of 2000 bytes 今天写存储过程时&#xff0c;使用dbms_output.put_line(result:||i||---||documentID);输出测试结果。当我设置其输出记录较多…

[原+转]CSS hack 小技巧 让你的CSS 兼容ff ie6.0 ie7.0

在做东西的时候发现在ie6.0中做的东西到ff下面目全非100% css不兼容不问题 查阅了相关资料 个人感觉以下是一个笨的也是比较快的处理兼容问题的方法方法就是针对不同的浏览器写不同的css 以前用!important 但是ie7 和ff 就不好分了个人感觉比较好的方法是 samplepadding:0px; …

准备试用svn

用了VSS2005感觉一般&#xff0c;准备试用svn&#xff01;&#xff01;&#xff01;转载于:https://www.cnblogs.com/jessenee/archive/2008/03/31/1131027.html

web功底之强,实属罕见。。

不看不知道&#xff0c;一看汗得死你了。。纯用html做的。不多说&#xff0c;看看就知道了&#xff0c;http://www.kanqq.com/qq/smilies/ku.htm 以人格保证&#xff0c;不是病毒网页。。。 转载于:https://www.cnblogs.com/lsgoodsun/archive/2007/11/04/949222.html

第三次作业-Scrum

理解&#xff1a; 首先&#xff0c;敏捷并不是一门具体的技术&#xff0c;而是一种理念或者说是一种思想。它可以指导我们更加高效的开发。其次&#xff0c;敏捷开发都具有以下共同的特征&#xff1a; 1.迭代式开发2. 增量交付 3. 开发团队和用户反馈推动产品开发 4. …

如何处理错误消息Please install the gcc make perl packages

2019独角兽企业重金招聘Python工程师标准>>> 如何处理这行错误消息&#xff1f; Please install the gcc make perl packages from your distribution。 执行命令行&#xff1a;yum install gcc perl make 输出&#xff1a; Loaded plugins: product-id, search-dis…

iOS开发 CGAffineTransform 让图片旋转, 旋转后获得图片旋转的角度

1.让图片旋转 UIImageView *imageView [[UIImageView alloc]init]; imageView.frame CGRectMake(50, 50, 200, 200); imageView.image [UIImage imageNamed:"460.jpg"]; CGAffineTransform transform CGAffineTransformMakeRotation(M_PI*0.38); imageView.tr…

致毕业生:那些年我们错过的“BAT”

本文旨在用最通俗的语言讲述最枯燥的基本知识最近看到公众号中各种推“招聘季金九银十铜十二”之类的文章&#xff0c;把毕业季找工作需要应对的事情和解决方法都已经写的很详细了&#xff0c;还有各种面经考经挥之即来&#xff0c;已经没必要再去写这样的一个文章了&#xff0…