MOSS 2007; Manage Content & Structure = timeout & authentication request = 401

Hi,
I am having from time to time some issues with an older MOSS 2007 environment. Sometimes browsing to manage Content & Structure ends up in a long thinking process which ends with an authentication request. A Timeout seems to happen. Whatever a user enters...
it ends ip in a 401 error.  That does not happen every time, but sometimes. The rest of Sharepoint works well. 
Let me first describe the environment. The environment is fully virtualized. The content db is huge - the approx size is about 1 TB. There is only 1 site collection and quite a huge site structure.
The environment as such
2 WFE
1 IDX
1 SQL 2005 Cluster
We use Kerberos for authentication. 
The w3wp processes grow to about 1-2 GB.
We have identified that when SQL Cluster fails from one node to the other.. this symptom disappears for a while. I have no clue what this  can have to do with the described effects. 
An IISRESET on all servers sometimes helps, too.
We cannot identify any errors, but the issue is really annoying. 
Any thoughts?

Hi Sven,
I am trying to involve someone familiar with this topic to further look at this issue.
Thanks,
Daniel Yang
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected] 
Daniel Yang
TechNet Community Support

Similar Messages

  • While crawling content from Moss 2007 to Sp2013 its throwing error

    hi,
    When i am trying to crawl the Moss 2007 site content in SP2013 serach I am getting below Error in the Crawl error log.
    I have provided owner access for the Moss 2007 content DB,to the user accout which i am using in SP2013 serach.And also provided read access for this account to the Moss 2007.But still i am unable to crawl.
    1 The URL of the item could not be resolved. The repository might be unavailable, or the crawler proxy settings are not configured. To configure the crawler proxy settings, use Search Administration page.
    2 This item could not be crawled because the repository did not respond within the specified timeout period. Try to crawl the repository at a later time, or increase the timeout value on the Proxy and Timeout page in search administration. You might
    also want to crawl this repository during off-peak usage times.
    3 The crawler could not communicate with the server. Check that the server is available and that the firewall access is configured correctly. If the repository was temporarily unavailable, an incremental crawl will fix this error.
    4 Access is denied. Verify that either the Default Content Access Account has access to this repository, or add a crawl rule to crawl this repository. If the repository being crawled is a SharePoint repository, verify that the account you are using
    has "Full Read" permissions on the SharePoint Web Application being crawled.
    Thanks & Regards, Krishna

    Try to use website as content source to crawl it
    Create disableloopbackcheck registry on all sharepoint servers
    Are you able to browse sharepoint sites from crawl server. 
    check 
    http://blogs.technet.com/b/josebda/archive/2007/03/19/crawling-sharepoint-sites-using-the-sps3-protocol-handler.aspx
    http://sharepoint.stackexchange.com/questions/93691/using-sharepoint-2013-to-crawl-sharepoint-2007
    If you are still struggling you can watch the requests by using Fiddler as a proxy for the crawl process. Then you can kick off the crawl and watch the requests and the response from the 2007 server.

  • How to set Current User in moss 2007 for Authentication....

    Hi Team,
    We have current running website where we have user id to login but now requirement is that user will login with his Email address. Email is stored in active directory, I'm able to login with fba authentication.  
    I'm able to retrieve the user id of current user using Email but
    I am NOT able to set that user id for current user for further authentication using Moss 2007.
    Please find the source code for login and authentication page:
    //---------------------------Login Page--------------------//
        public partial class Login : System.Web.UI.UserControl
            #region Decleration
            string LoginStatus = null;
            string UserCurrent = null;
           static SPUser siteuser;
           // private static string _randomNumbercheck;
            //private static bool IsLoggedin;      
            Random random;
            #endregion       
            #region Page Load
            protected void Page_Load(object sender, EventArgs e)
                this.hplchangepw.Visible = false;
                this.hplmytask.Visible = false;
                string desturl = SPContext.Current.Site.Url;
                if (!IsPostBack)
                    try
                        string str;
     SPWeb web = SPContext.Current.Web;
                             SPUser siteuser = web. .CurrentUser; 
                        //SPUser siteuser = spWeb.EnsureUser(username);
                        str = (siteuser == null ? "" : siteuser.ToString());
                        this.Login.TitleText = "";
                        this.Login.DestinationPageUrl = desturl;
                        //if (HttpContext.Current.Request.UrlReferrer != null)
                        //    if (this.Page.User.Identity.IsAuthenticated && ((Session["test1"].ToString() == _randomNumbercheck) || LoginControl.Class1.IsLoggedIn))
                         if (this.Page.User.Identity.IsAuthenticated)
                               // _randomNumbercheck = "";
                                this.hplregister.Visible = false;
                                this.hplforgetpassw.Visible = false;
                                this.hplchangepw.Visible = true;
                                this.hplmytask.Visible = true;
                                this.Login.Visible = false;
      if (str.StartsWith("fba_"))
                                    string name = str.Split(':').GetValue(1).ToString();
                                    LoginnameLbl.Text = "<b>" + name.ToString() + "</b>,<br><br>Haryana Urban Development Authority Welcomes
    You. <br><br><br><b><i>\"In The Service Of Masses\"</i></b>";
                                else
                                    string name = str.Split('\\').GetValue(1).ToString();
                                    LoginnameLbl.Text = "<b>" + name.ToString() + "</b>,<br><br>Haryana Urban Development Authority Welcomes
    You. <br><br><br><b><i>\"In The Service Of Masses\"</i></b>";
                            else
                                this.hplchangepw.Visible = false;
                                this.hplmytask.Visible = false;
                                this.Login.Visible = true;
                                LoginnameLbl.Text = "";
                                HttpContext.Current.Session.Clear();
                                HttpContext.Current.Session.Abandon();
                    catch (Exception ex)
                        //HttpContext.Current.Session.Clear();
                        //HttpContext.Current.Session.Abandon();
            #endregion
            #region Get Audit Informations
            public void GetUserInfo()
                try
                    string user = Login.UserName;
                    SPSecurity.RunWithElevatedPrivileges(new SPSecurity.CodeToRunElevated(delegate()
                        using (SPSite oSite = new SPSite(SPContext.Current.Site.ID))
                            using (SPWeb web1 = oSite.OpenWeb(SPContext.Current.Web.ID))
                                SPListItem item = null;
                                SPListItemCollection listItems = null;
                                web1.AllowUnsafeUpdates = true;
                                siteuser = web1.EnsureUser(Session["User"].ToString());// spWeb.EnsureUser(login);
                                listItems = web1.Lists["Audit_Trail"].Items;
                                item = listItems.Add();
                                item["User_ID"] = UserCurrent.ToString(); //Request.ServerVariables["AUTH_USER"];
                                string ip = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
                                if ((ip == null) || (ip == "") || (ip.ToLower() == "unknown"))
                                    ip = Request.ServerVariables["REMOTE_ADDR"];
                                item["IP_Address"] = ip;
                                item["Login_Date"] = System.DateTime.Now;
                                item["Login_Status"] = LoginStatus.ToString();
                                item.Update();
                                web1.AllowUnsafeUpdates = false;
                                web1.Dispose();
                                oSite.Dispose();
                catch (Exception ex)
            #endregion
            #region MD5Encryption
            private string MD5Encryption(string strToEncrypt)
                System.Text.UTF8Encoding ue = new System.Text.UTF8Encoding();
                byte[] bytes = ue.GetBytes(strToEncrypt);
                // encrypt bytes
                System.Security.Cryptography.MD5CryptoServiceProvider md5 = new System.Security.Cryptography.MD5CryptoServiceProvider();
                byte[] hashBytes = md5.ComputeHash(bytes);
                // Convert the encrypted bytes back to a string (base 16)
                string hashString = "";
                for (int i = 0; i < hashBytes.Length; i++)
                    hashString += Convert.ToString(hashBytes[i], 16).PadLeft(2, '0');
                return hashString.PadLeft(32, '0');
            #endregion
            #region Generate Random Code
            private string GenerateRandomCode()
                random = new Random();
                string s = "";
                for (int i = 0; i <= 6; i++)
                    s = string.Concat(s, this.random.Next(10).ToString());
               // _randomNumbercheck = s;
                return s;
            #endregion
            #region Generate Random String
            public string GenerateHashKey()
                StringBuilder myStr = new StringBuilder();
                myStr.Append(Request.Browser.Browser);
                myStr.Append(Request.Browser.Platform);
                myStr.Append(Request.Browser.MajorVersion);
                myStr.Append(Request.Browser.MinorVersion);
                myStr.Append(Request.LogonUserIdentity.User.Value);
                SHA1 sha = new SHA1CryptoServiceProvider();
                byte[] hashdata = sha.ComputeHash(Encoding.UTF8.GetBytes(myStr.ToString()));
                return Convert.ToBase64String(hashdata);
            #endregion
            #region Check User Authentication
            protected void Login_Authenticate(object sender, AuthenticateEventArgs e)
                Utility hu=new Utility();
                int CheckValue = 0;
                string user = Login.UserName;
                if(user.Contains("@"))
                    CheckValue=1;
                //Encrypted Password
                string HPassword = hash.Value;
                // Verify that the username/password pair is valid
                SqlConnection con = new SqlConnection();
                SqlCommand cmd = new SqlCommand();
                con.ConnectionString = System.Configuration.ConfigurationSettings.AppSettings["FBAPortalConnection"];
                if (con.State == ConnectionState.Closed)
                    con.Open();
                cmd.CommandType = CommandType.StoredProcedure;
                cmd.CommandText = "sp_Portal_ValidatePortalUser";
                cmd.Connection = con;
                cmd.Parameters.Add("@ID", SqlDbType.NVarChar, 256).Value = Login.UserName;
                cmd.Parameters.Add("@Password", SqlDbType.NVarChar, 300).Value = HPassword.ToString();
                cmd.Parameters.Add("@CheckVal", SqlDbType.Int).Value = CheckValue;
                cmd.Parameters.Add(new SqlParameter("@P_Return", SqlDbType.NVarChar, 256));
                cmd.Parameters["@P_Return"].Direction = ParameterDirection.Output;
                cmd.ExecuteNonQuery();
                string CurrentUserName = cmd.Parameters["@P_Return"].Value.ToString();
                cmd.Dispose();
                con.Close();
                //int x = hu.ValidatePortalUser(Login.UserName, HPassword.ToString(), CheckValue);
                if (CurrentUserName != "0")
                    Page.Session["User"] = CurrentUserName;
                    string UserName = Session["User"].ToString();
                    UserCurrent = UserName;
                    LoginStatus = "Successfull";
                    GetUserInfo();
                    e.Authenticated = true;
                    //Session["CustomAuthKey"] = MD5Encryption(Request.ServerVariables["Remote_Addr"] + Request.ServerVariables["Http_Cookie"] + Request.ServerVariables["Auth_User"]);
                    Session["CustomAuthKey"] = MD5Encryption(Request.ServerVariables["Remote_Addr"] + Request.ServerVariables["Http_Cookie"] + UserCurrent.ToString());
                    FormsAuthenticationTicket tkt;
                    String cookiestr;
                    HttpCookie ck;
                    tkt = new FormsAuthenticationTicket(1, UserName, DateTime.Now, DateTime.Now.AddMinutes(15), false, GenerateHashKey());
                    cookiestr = FormsAuthentication.Encrypt(tkt);
                    ck = new HttpCookie(FormsAuthentication.FormsCookieName, cookiestr);
                    ck.Path = FormsAuthentication.FormsCookiePath;
                    Response.Cookies.Add(ck);
                else
                    // Username/password are not valid...
                    Login.FailureText = "Invalid Username / password";
                    e.Authenticated = false;
            #endregion
            #region Login Error
            protected void Login_LoginError(object sender, EventArgs e)
                // Determine why the user could not login
                Login.FailureText = "Your login attempt was not successful. Please try again.";
                // Does there exist a User account for this user
                MembershipUser usrInfo = Membership.GetUser(Login.UserName);
                if (usrInfo != null)
                    // Is this user locked out?
                    if (usrInfo.IsLockedOut)
                        Login.FailureText = "Your account has been locked out because of too many invalid login attempts. Please contact the administrator to have your account unlocked.";
                    else if (!usrInfo.IsApproved)
                        Login.FailureText = "Your account has not yet been approved. You cannot login until an administrator has approved your account.";
                    else
                        Login.FailureText = "Invalid UserName / Password";
                        UserCurrent = usrInfo.UserName;
                        LoginStatus = "UnSucessfull";
                        GetUserInfo();
                else
                    Login.FailureText = "Invalid UserName / Password";
            #endregion
            #region Logged In
            protected void Login_LoggedIn(object sender, EventArgs e)
                string UserName = Session["User"].ToString();           
                LoginControl.Class1.IsLoggedIn = true;
                //If User Email is [email protected] it will be invalid. Prompt the user to update the email id. 
                LoginControl.Utility hu = new LoginControl.Utility();
                DataSet dsuser = hu.getUserDetails(UserName);
                string email;
                if (dsuser.Tables[0].Rows.Count > 0)
                    email = dsuser.Tables[0].Rows[0]["Email"].ToString();
                    if (email.Equals("[email protected]"))
                        Response.Redirect("/Pages/UserUpdates.aspx", true);
                    else
            #endregion
    //-------------------------------- Authentication code----------------------------//
      private void authenticateuser()
                try
                    if (SPContext.Current.Web.CurrentUser != null)
                        using (SPSite spSite = new SPSite(SPContext.Current.Site.Url))
                            using (SPWeb spWep = spSite.OpenWeb())
                                Utility hu = new Utility();
    _userid = spWep.CurrentUser.Name;
                                DataSet ds = new DataSet();
                                ds = hu.GetPlotid(_userid);
                                if (ds.Tables[0].Rows.Count > 0)
                                    _plotid = ds.Tables[0].Rows[0]["plotid"].ToString();
                                else
                                    if (!SPContext.Current.Web.UserIsSiteAdmin && !SPContext.Current.Web.UserIsWebAdmin)
                                        if (!SPContext.Current.Web.IsCurrentUserMemberOfGroup(SPContext.Current.Web.Groups["Allottee"].ID))
                                            SPUtility.HandleAccessDenied(new Exception("You do not have access to this page"));
                    else
                    { SPUtility.HandleAccessDenied(new Exception("Please login")); }
                catch (Exception ex)
                    //  lblMessage.Text = "Error:" + ex.Message;
                    ShowMessage("Following error has occured while executing the desried event :- " + ex.Message);
    Mohan Prakash

    1. Current work flow :-In web site the user have to register themselves in the web site and enters his details along with user id, password and email id. Once user
    is registered then he will login with his user id and password. The user id is picked from login control and that set in “SPWeb.CurrentUser” as user id and system uses "Membership.ValidateUser" method to Authenticate user for login. 
    2. New Requirement: we would like to facilitate the user to login with Email id as well as user id. 
    Problem: 
    We replaced "Membership.ValidateUser" method to our own method to Authenticate user with email id/user id and password. 
    When user is login with user id and password it is working successfully but in the case of email id and password –“the email id is picked from user control and set as
    "HttpContext.Current.User.Identity.Name" but we are not getting “SPWeb.CurrentUser” and it shows null value.” 
    We are able to get user id from database using email id of user. Please help us how we can set user id in "SPContext.Current.Web.CurrentUser".
    Mohan Prakash

  • Cannot locate Orphaned Content in MOSS 2007 prior to updgrade to SharePoint 2010

    I will soon be upgrading my MOSS 2007 farm to SP2010, so I had run the preupgradecheck command to check for any problems. It fails on "Issue: Orphan objects in Content Database" in 4 databases. It doesn't give Site IDs, only the SQL instance, the
    database name and this "Integrated Security=True;Enlist=False;Connect Timeout=15" after the database name.
    To try to resolve this problem, I have tried locating these using the stsadm databaserepair command, which brings back "OrphanedObjects Count="0"" for all the content databases. So after this, I tried using the enumallwebs command,
    and exported this to a txt file, all fields for "InSiteMap" came back as "True" so there doesn't seem to be any orphaned site collections.
    I've had a look around online, but the two options I've tried seem to be the way to locate them, and I can't find anything else.
    Has anyone had this problem before? Is there another way that I can try to locate these orphaned objects? Are they likely to be sites, features, lists etc?
    Thanks in advance for any help!

    Content Database, this is most important stuff.
    if you have mysite and User profiles then you need to move the SSP to 2010. check the below blog for steps and understanding:
    http://blogs.msdn.com/b/alimaz/archive/2009/11/08/upgrading-moss-2007-ssp-user-profiles-and-mysite-content-to-sharepoint-server-2010-using-db-attach-method.aspx
    Yes you dont need the Central admin.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Manage Content and Structure is not working after Sahrepoint 2013 Upgrade

    Hi Everyone,
    Recently I upgrade SharePoint 2013,Now portal is running SharePoint 2010 mode,when i try to open Manage
    Content and Structure by site Action or by site setting got error.
    Unable to open.
    Help is appreciated.
    Hasan Jamal Siddiqui(MCTS,MCPD,ITIL@V3),Sharepoint and EPM Consultant,TCS
    |
    | Twitter

    Hi Pratik Vyas,
    I tried same command but still same issue.
    ULS loag as per Correlation ID
    : 06
    /18/2014 18:55:22.62 w3wp.exe (0x19AC) 0x1D84 SharePoint Foundation Logging Correlation Data 77a3 Verbose Starting correlation. d61d9c9c-fb87-40aa-2f29-f84040327d17 06/18/2014 18:55:22.62 w3wp.exe (0x19AC) 0x1D84 SharePoint Foundation Logging Correlation Data
    xmnv Medium Name=Request (GET:http://ABC/_layouts/sitemanager.aspx?Source=/_layouts/settings.aspx) d61d9c9c-fb87-40aa-2f29-f84040327d17 06/18/2014 18:55:22.62 w3wp.exe (0x19AC) 0x1D84 SharePoint Foundation Monitoring nasq Verbose Entering monitored scope (RequestManagement
    Processing). Parent Request (GET:http://ABC/_layouts/sitemanager.aspx?Source=/_layouts/settings.aspx) d61d9c9c-fb87-40aa-2f29-f84040327d17 
    06/18/2014 18:55:22.71 w3wp.exe (0x19AC) 0x12F4 SharePoint Foundation General 8nca Medium Application error when access /_layouts/sitemanager.aspx, Error=Object reference not set to an instance of an object. at Microsoft.SharePoint.Publishing.Internal.WebControls.ObjectSerializer.DeleteAllowed(Boolean
    checkPermissions) at Microsoft.SharePoint.Publishing.Internal.WebControls.SmtButtonField.FormatDataValue(Object dataTextValue, Boolean encode) at System.Web.UI.WebControls.BoundField.OnDataBindField(Object sender, EventArgs e) at System.Web.UI.Control.DataBind(Boolean
    raiseOnDataBinding) at System.Web.UI.Control.DataBindChildren() at System.Web.UI.Control.DataBind(Boolean raiseOnDataBinding) at System.Web.UI.WebControls.GridView.CreateRow(Int32 rowIndex, Int32 dataSourceIndex, DataControlRowType rowType, DataControlRowState
    rowState, Boolean dataBind, Obj... d61d9c9c-fb87-40aa-2f29-f84040327d17 06/18/2014 
    18:55:22.62 w3wp.exe (0x19AC) 0x1D84 SharePoint Foundation Monitoring nasq Verbose Entering monitored scope (SPRequestManagement.GetRoutingTargets). Parent RequestManagement Processing d61d9c9c-fb87-40aa-2f29-f84040327d17 06/18/2014 18:55:22.62 w3wp.exe (0x19AC)
    0x1D84 SharePoint Foundation Request Management aaz9x Verbose Target pool count based on routing rules: 0 d61d9c9c-fb87-40aa-2f29-f84040327d17 06/18/2014 
    18:55:22.62 w3wp.exe (0x19AC) 0x1D84 SharePoint Foundation Request Management aaz9l Verbose Initial routing target count: 1 d61d9c9c-fb87-40aa-2f29-f84040327d17 06/18/2014 18:55:22.62 w3wp.exe (0x19AC) 0x1D84 SharePoint Foundation Monitoring b4ly Verbose Leaving
    Monitored Scope (SPRequestManagement.GetRoutingTargets). Execution Time=0.107330441605982 d61d9c9c-fb87-40aa-2f29-f84040327d17 06/18/2014 18:55:22.62 w3wp.exe (0x19AC) 0x1D84 SharePoint Foundation Monitoring nass Verbose ____CPU Cycles=278457 d61d9c9c-fb87-40aa-2f29-f84040327d17
    06/18/2014 18:55:22.62 w3wp.exe (0x19AC) 0x1D84 SharePoint Foundation Request Management ai6y0 Verbose Lowest threshold after evaluating rules '2147483647' d61d9c9c-fb87-40aa-2f29-f84040327d17
     06/18/2014 18:55:22.62 w3wp.exe (0x19AC) 0x1D84 SharePoint Foundation Request Management adc7u Medium Mapping URI from 'http://ABC:80/_layouts/sitemanager.aspx?Source=%2F%5Flayouts%2Fsettings%2Easpx' to 'http://ABC/_layouts/sitemanager.aspx?Source=%2F%5Flayouts%2Fsettings%2Easpx'
    d61d9c9c-fb87-40aa-2f29-f84040327d17 06/18/2014 
    18:55:22.62 w3wp.exe (0x19AC) 0x1D84 SharePoint Foundation Request Management aa0ai Verbose Copying incoming headers to outgoing request d61d9c9c-fb87-40aa-2f29-f84040327d17 06/18/2014
     18:55:22.62 w3wp.exe (0x19AC) 0x1D84 SharePoint Foundation Request Management agmky Verbose Existing correlation ID found 'd61d9c9c-fb87-40aa-2f29-f84040327d17', adding header to outgoing request d61d9c9c-fb87-40aa-2f29-f84040327d17 06/18/2014 18:55:22.62
    w3wp.exe (0x19AC) 0x1D84 SharePoint Foundation Monitoring nasq Verbose Entering monitored scope (RequestManagement Request Upload). Parent Request (GET:http://ABC/_layouts/sitemanager.aspx?Source=/_layouts/settings.aspx) d61d9c9c-fb87-40aa-2f29-f84040327d17
    06/18/2014 
    18:55:22.62 w3wp.exe (0x19AC) 0x1D84 SharePoint Foundation Request Management aeboc Verbose No data was found on the incoming client request d61d9c9c-fb87-40aa-2f29-f84040327d17 06/18/2014 18:55:22.62 w3wp.exe (0x19AC) 0x1D84 SharePoint Foundation Monitoring
    b4ly Verbose Leaving Monitored Scope (RequestManagement Request Upload). Execution Time=0.0125155638621816 d61d9c9c-fb87-40aa-2f29-f84040327d17
    Hasan Jamal Siddiqui(MCTS,MCPD,ITIL@V3),Sharepoint and EPM Consultant,TCS
    |
    | Twitter

  • Rich Text Editor for Content Editor WPs (MOSS 2007) disappears using Office 2013/Win7/IE 11

    We've upgraded our computers to Win7/IE 11 but now when I try to edit our MOSS 2007 Content Editor Web Parts, the option to choose either the Rich Text Editor or Source Editor is gone, and all I get is a tiny HTML window. What do I need to do to get back
    the Rich Text edit option?

    Glad that it worked. One thing you need to be aware of Compatibility View is that it adds the entire domain to the View not just the URL. So if your website is
    http://sample.mycompany.com it adds entire mycompany.com to the list.
    This implies if you have another site in the same domain http://onemoresite.mycompany.com , then Compatibility View is applicable even for that site. This might cause issues if your other 'breaks' when
    rendered in Compatibility Mode.

  • MOSS 2007 Search - Crawling is taking longer than usual time since last month for same content sources

    Hi all,
    Off late we have discovered that content crawling is taking longer than expected also overlapping to next scheduled too. Literally no crawl logs seen for hours. No entry in crawl logs. Is there anyone out here having similar issue? Please share a solution
    if any found.
    My farm is implemented with MOSS 2007 SP2 Ver no 12.0.0.6554
    There is not packet drop between index server, App and SQL server/Cluster
    Thank you in advance,
    Reach Ram
    Ramakrishna Pulipati SharePoint Consultant, Bangalore, INDIA

    I believe this is ready for submission for the Time Machine forum.
    As noted, it does not cover diagnosis and correction of specific problems or errors, as that would seem to be better handled separately.
    It also doesn't cover anything about Time Capsule, for the very good reason that I'm not familiar with them. If someone wants to draft a separate post for it, or items to add/update here, that would be great!
    Thanks very much.

  • SharePoint 2010 Manage content and structure copy operation issue

    Hi,
    I am trying to copy a subsite from location A to B in the same site collection using the copy operation of Manage content and structure. Site is getting copied but default.aspx page is not getting copied to the destination. I tried copying the default.aspx
    page directly using copy operation but that too is not working. There is no error thrown but the page is not coming up in the pages library of destination site.
    As a workaround, i copied the page using SharePoint designer but i am looking for a solution to this issue.
    Thanks in advance
    Ajit

    Hi Ajit,
    According to your description, my understanding is that you could not copy default.aspx page using Manage Content and Structure.
    I did a test about this issue, and found the followings:
     1.When I checked out the publishing page, then copied the site to other location at the same site sollection with Manage Content and Structure, the page was not copied.
     2.When I checked in the page without publishing,  and copied the page as the step1, the page also was not copied.
     3.I published the page,  then copied it, the page could be copied.
    So , for resolving your issue, please check the default.aspx page, make sure that the page is published.
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Why page is being unpublished when moving from Manage Content and Structure ?

    Hello,
    I am getting strange behavior in Manage Content and Structure as below :
    when I move published pages from site 1 to site 2 , all moved pages in
    site 2 are being unpublished !!
    and mention below status :
    Status: Checked in and viewable by authorized users.  
    how to move pages from
    Manage Content and Structure so that I don't need to publish the moved pages manually ?
    Thanks and Regards,
    Dipti
    Dipti Chhatrapati

    http://www.dotnetspark.com/links/28950-move-page-site-content-and-structure-alters.aspx
    http://social.technet.microsoft.com/Forums/en-US/c614408f-d6cf-4d8a-9ab0-46b2ef405824/move-page-in-site-content-and-structure-alters-revision-history-and-makes-old-content-available?forum=sharepointadminlegacy
    This is a default behavior as a new content is added to site 2 with a different metadata so it is marked as unpublished

  • MOSS 2007 Content DB used in transnational replication

    Hello,
    I have configured Transnational replication on Moss 2007 content DB over WAN, ?But it works well with small dbs of size 10-12 GB but with 40-60GB database sites are running in error like 404 Site not found....Checked in logs not luck found there also..
    Any help guys.....
    Regards,
    Ashish

    Hello,
    To my knowledge only database mirroring and log shipping was supported with MOSS 2007. Log shipping is specially recommended for content
    databases.
    The following post talks about the benefits of using database mirroring vs log shipping:
    http://blogs.msdn.com/b/mikewat/archive/2007/07/28/database-mirroring-and-log-shipping-which-is-better.aspx
    To know more about these two high availability methods for MOSS 2007, please read the following article:
    http://msdn.microsoft.com/en-US/library/ms179306(v=sql.90).aspx
    http://msdn.microsoft.com/en-US/library/ms190640(v=sql.90).aspx
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com
    hello,
    Thanks for the prompt reply, But would like to include the requirements as i need both end DB active so that can use application from both side and need to replicate to the point 24/7, that's why i had configure
    1 way transnational replication.
    And was successfully able to configure Replication for all varying size DBS but problem is that Site is not coming up for 50GBs Database, SO would like to ask if There any size limitation from Transnational replication with MOSS 2007.
    Regards, Ashish 

  • MOSS 2007 Content DB Migration

    Hi,
    Is it possible to upgrade MOSS 2007 Content Database to SharePoint 2010 version Content Database without attaching the older Content Database to the SharePoint Farm?

    Attaching the 2007 content database to a 2010 farm is how you upgrade the database. When the database attaches SharePoint recognizes it needs to be upgraded and upgrades it immediately.
    Since you need to attach the database to the 2010 farm, you cannot upgrade it before this -- i.e. you cannot upgrade it to 2010 within a 2007 farm, nor can you upgrade it if the database is attached to no farms.
    Jason Warren
    @jaspnwarren
    jasonwarren.ca
    habaneroconsulting.com/Insights

  • Migrating from Moss 2007 to SharePoint 2013

    I am reaching out here as we require some inputs around migrating the SharePoint based application from MOSS 2007 to 2013.Please find more details from below
    Requirement:
    Migrating SharePoint site collection (which contains just 1 Top level site and 2 libraries with in it and no item level/library level permissions exists) which is on MOSS 2007 with size of 500GB to SharePoint 2013, hence we like to know your inputs in related
    to this
    Note:
    1) The site collection has its own separate content database
    2) There are nearly 200 thousand documents where the document with higher version is 90
    3) The documents are stored in the libraries with up to third level of folder structure
    4) The site collection is created based on custom site definition (created using visual studio)
    Few things that I like to mention/ask here
    a) Having 500GB data in one single content database inj the MOSS 2007 environment does it impacts the site performance?
    b) Migrating the site collection as is  onto single content database (all 500 GB into one content database) into destination SharePoint 2013, does it will be a good practice? Hope SharePoint 2013 content database limit is 200 GB, hence moving 500GB
    as is into one database will it be good practice?
    c) Does database attach and detach works for the databases which are of size 500GB?
    d) Can we do database attach and detach directly from MOSS 2007 to directly onto SharePoint 2013, without hopping onto SharePoint 2010 in between and then later to SharePoint 2013?
    e) If moving 500GB data into one content database will not be a good approach, can we split it onto multiple databases?
    f) If database attach and detach doesn’t help for databases which are of size 500GB, should we go for any tool based approach? If yes, which tool does best fit?

    a) Having 500GB data in one single content database inj the MOSS 2007 environment does it impacts
    the site performance?
    Inder: Yes, it will impact site performance at large extended, recommended is 200 gb only. Check it IO of your disk to analyze performance issue
    b) Migrating the site collection as is  onto single content database (all 500 GB into one content
    database) into destination SharePoint 2013, does it will be a good practice? Hope SharePoint 2013 content database limit is 200 GB, hence moving 500GB as is into one database will it be good practice?
    Inder: 
    Content database size (all usage scenarios)
    4 TB per content database
    Supported
    Content databases of up to 4 TB are supported when the following requirements are met:
    Disk sub-system performance of 0.25 IOPs per GB. 2 IOPs per GB is recommended for optimal performance.
    You must have developed plans for high availability, disaster recovery, future capacity, and performance testing.
    http://technet.microsoft.com/en-us/library/cc262787%28v=office.15%29.aspx#ContentDB
    c) Does database attach and detach works for the databases which are of size 500GB?
    Inder: Yes it does work
    d) Can we do database attach and detach directly from MOSS 2007 to directly onto SharePoint 2013, without
    hopping onto SharePoint 2010 in between and then later to SharePoint 2013?
    Inder: No, you need to pass through 2010 and then 2013
    e) If moving 500GB data into one content database will not be a good approach, can we split it onto
    multiple databases?
    Inder: you can go with 500 gb
    f) If database attach and detach doesn’t help for databases which are of size 500GB, should we go for
    any tool based approach? If yes, which tool does best fit
    Inder: Below are few tools you can try
    http://www.metalogix.com/Products/Content-Matrix.aspx
    http://en.share-gate.com/
    http://www.avepoint.com/sharepoint-migration-tools/
    http://www.quest.com/sharepoint/migration.aspx
    If this helped you resolve your issue, please mark it Answered

  • Losing out custom metadata info of few documents of a document librarby when migrated from MOSS 2007 to Sharepoint 2010

    We have recently migrated from moss2007 to sharepoint 2010.We have a document library containing large no. of documents in it  & for those documents there are some custom metadata columns apart from OOB library columns . We have user content DB attach
    migration and after that we can see blank value under the custom columns for some records. However interesting point is we can see this metadata is showing for few documents.
    Please suggest.

    Hi,
    What is your Office edition? When we create a managed metadata column in a Document Library, it will prompt that ‘Earlier versions of client programs might not support this type of column’. You should use Office 2010 to edit and create a document then save
    to document library .
    For detailed information ,please refer to this article:
    http://rules.ssw.com.au/SoftwareDevelopment/RulesToBetterSharePoint/Pages/2010-Managed-Metadata-with-Office-2007.aspx
    Beside, here are similar posts, you can use as a reference:
    https://social.technet.microsoft.com/forums/sharepoint/en-US/1b115343-20e5-4962-af97-793194f07637/metadata-missing-when-revising-document
    https://social.technet.microsoft.com/Forums/office/en-US/a65f9828-6e2f-4eb7-bde6-bd0600e3b1a2/migrating-documents-from-moss-2007-to-sharepoint-2010?forum=sharepointadminprevious
    Best Regards,
    Lisa Chen
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Can you change the permissions on a single html file in the root of a MOSS 2007 site?

    I know what the right answer is, the correct way to implement this is to create a library off the root and place the file that needs to have unique permissions into this library and either change the permissions of the library or of the individual file itself. 
    Anyways, that's what we're going to do...
    However, I'm curious...  Is there a way to change the permissions of a file that was manually placed in the root of a MOSS 2007 site?  I've tried through the GUI and through Designer, and also searched the WWW with no luck.  Is this even doable? 
    We don't want to change the permissions on the entire site, just that one file.
    Thanks,
    -Richard.

    Hi Richard,
    I thinks the file on the root directory of a SharePoint site is unable to be set with a unique permission, SharePoint securable object are web, list/library, list/library iteml, as what you're going to do, the workaround is
    to put the file in a libary and grant the unique permission.
    http://office.microsoft.com/en-001/windows-sharepoint-services-help/about-controlling-access-to-sites-and-site-content-HA010100144.aspx?CTT=5&origin=HA010100149
    http://office.microsoft.com/en-001/windows-sharepoint-services-help/manage-permissions-for-a-list-library-folder-document-or-list-item-HA010021564.aspx
    http://blogs.msdn.com/b/chandru/archive/2012/04/01/list-of-all-securable-objects-that-have-unique-permission.aspx
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Daniel Yang
    TechNet Community Support

  • Cannot move file with Content & Structure feature

    Hello everyone,
    I have a question regarding the Content & Structure feature of SharePoint 2013.
    I have people with "Design" permission level and I realized they don't have access to the action "Move" in the content
    manager.
    How come the button "Move" is disabled? What permissions are required to use this action?
    Thanks in advance for your help

    Hi,
    Please understand it is by design that the issue occurs when using the site content and structure to move items within the sites or to new location. You should have higher level permission.
    This is because the site content and structure uses the Content Migration (known as PRIME) export/import methods to move content. The PRIME API requires site collection admin privileges to be utilized which is why even site owner cannot move content.
    I found some related articles for your reference:
    http://blogs.technet.com/b/stefan_gossner/archive/2007/08/30/deep-dive-into-the-sharepoint-content-deployment-and-migration-api-part-1.aspx
    http://msdn.microsoft.com/en-us/library/office/bb249989(v=office.14).aspx
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

Maybe you are looking for

  • File to Idoc - Outbound Error

    Hi,    I am doing File to IDOC scenario. I got error in "Message has error status at outbound status" .. When I opend that messeage then i got this ... <SAP:IDOCTYP>ZIDOCIN</SAP:IDOCTYP>   <SAP:CIMTYP />   <SAP:MESTYP>ZMTIDOCIN</SAP:MESTYP>   <SAP:ME

  • How to register a protocol to firefox 6.0.2?

    I updated firefox from version 3.5.15-12 to firefox 6.0.2. I am using fedora 12 and I used to have a script to open links such as for instance "sip://12345". But this seems to be not possible in the 6.0.2 version of firefox. I tried editing "about:co

  • After updating OSX Mavericks, I have two problems:

    1) my mobile broadband software / dongle does not work (I use a Huawei E169 HSDPA USB stick). 2) my network printer does not work (I use a Canon C5030i). On both I have tried to reinstall the latest driver software available, and still it does not he

  • RPi2 Driver Development Hands-On Lab

    Are there any tutorials (planned or that exists) for driver development on a RPi2 for Win 10 IoT?  This would be similar to what was provided for the Shark Cove at WinHEC.  I'm sure the info could be used/transferred and work similar for RPi2, but di

  • Where can I get insurance for my iphone

    Where can I get insurance for an iphone 4 I just purchased?