MOSS 2007 Vs. SP2013 Mobility

What is big difference between these MOSS 2007 and SP2013 on the Mobility Subject
Hai

Paul has it covered perfectly. SharePoint 2007 was built in an era before Responsive Web Design was widely "in the know", the mobile view was generally text heavy and didn't play well on all devices.  It also used HTML / CSS standards that aren't as
friendly as the HTML5 / CSS3 that SharePoint 2013 uses.
There is a CodePlex project, that is set-up by one of the well known members of the community which might be worth looking at.  Even if you don't use it, the documentation provided is still a very good educational resource.
https://responsivesharepoint.codeplex.com/
Steven Andrews
SharePoint Business Analyst: LiveNation Entertainment
Blog: baron72.wordpress.com
Twitter: Follow @backpackerd00d
My Wiki Articles:
CodePlex Corner Series
Please remember to mark your question as "answered" if this solves (or helps) your problem.

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.

  • MOSS 2007-Responsive web design

    Hi All
           I am having an internet site developed in MOSS 2007. I want to revamp it for mobile application. Is there anything in Moss 2007 like media query or responsive web design?
    Please share an article or video url to convert a website to mobile device.
    Regards
    Jhanani
    Janani.R

    Hi 
     My site is publishing portal.. Its an internet site. When i tried to put /m after the site url, it is showing page not found, I tried to actiavete "
    -o activatefeature -name MobilityRedirect -URL http://URL"
    also not working.
    I am not able to find a good sample from the scratch for variations.I am new to this mobile application.
    What i am thinking is to customize every page of this site. and for mobile application the url will be servername/mobiledevice/
    Can you pls suggest the best way to do this.
    for me variation for multi lingual site samples only got,,
    Pls help 
    Janani.R

  • 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

  • Data Migration from MOSS 2007 to SharePoint 2010

    Hi,
    We have done a migration project for one of our client.
    This migration was done from MOSS 2007 to SharePoint Enterprise Server 2010.
    After the migration was completed we developed lot of new webparts, lists ,application pages in this newly migrated farm in SharePoint Enterprise Server 2010.
    However the entire project took around 1 year due to some unavoidable delays. During this one year our client was using MOSS 2007 sites for there work. hence the data in MOSS 2007 farm/sites was continuously updated.
    Our client needs to go live in next month and also needs the sites/lists/libraries which are migrated in new SP 2010 farm to be updated as per the MOSS 2007 farm.
    Kindly suggest best possible way to achieve this data migration since last 1 year from MOSS 2007 to newly migrated SharePoint Enterprise Server 2010 farm.
    Kindly note we have done lot of customization and new developments in newly created SP 2010 farm.
    Thanks and regards,
    Amien

    Hi there,
    If you have already taken care of customization on SP2010 server. Then use any of the migration tools available in market to migrate data to target SP server.
    Content Matrix gives free 25 GB to migrate your SharePoint data (https://www.metalogix.com/Resources/Promotions/Content-Matrix-Migration-Express-Download.aspx). 
    If you don't know what is changed in last 1 year, then best thing to do is add new content database and migrate your data into it.
    Hope that helps.
    Regards,
    Tapan

  • How to install SharePoint MOSS 2007 PIK for Crystal Report Server XI R2?

    My configuration is :
    Moss 2007 without any Crystal Report or BO component. on one box with Windows 2003 server
    Cyrstal Report Server XI R2 on another box
    I have downloaded the kit installation: http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/webcontent/uuid/503988db-58c5-2b10-f79d-cb96700417f9 [original link is broken]
    I used this one as they said:
    BusinessObjects XI Release 2 SharePoint 2007 Portal Integration Kit
    Download BusinessObjects XI Release 2 SharePoint 2007 Portal Integration Kit - ZIP 5MB
    I do not have BO Enterprise.
    Thanks,

    Answered my own question.  Managed to upgrade to 5.0 following this process, but follow these instructions with care...
    1.  Stop all CMS services in Config Manager.
    2. Go to Add/Remove programs and click "change" for Crystal Reports Server XI.  Click on "Modify" then change the entry for MySQL4.1.13a to "Entire Feature will be unavailable" (from Enterprise -> Server Components -> Servers - > Central Management Server).  This will remove the existing mySQL version and any data/license key information/customisation, so be wary.
    3. Install the desired version of mySQL.
    4. Use the MySql command line to create a new database - "create DATABASE BOE115;"
    5. In the Central Config Manager, select the CMS and display its properties.  Select the Dependencies tab and remove the old version of mySQL and add the new version.  Click on the Config tab, then Select Datasource.  Select mySQL driver, then complete the details for the newly created database.  Once complete it will still produce an error, at which point you need to select the options to Re-create the Current Datasource.
    6. Once the datasource is sucessfully recreated, restart the Crystal service in the Config Manager.
    7. Open the Config tool, and add your license key. Then Re-Enable all the servers within the Servers page.
    8.  Any other customisation or preferences would need to be re-applied.
    This worked for me, but obviously take care as your existing mySQL database will be completely removed during the process.

  • Search not working in site collections migrated from MOSS 2007 to SharePoint Server 2013

    I have few site collections migrated from MOSS 2007 to SharePoint Server 2013 using database attach (first to 2010 and then to 2013).
    When I search for anything in these migrated sites, I get "Nothing here matches your search".
    Checked the crawl log for these sites and see this error for all items.
    The content processing component failed to process the security descriptor of the item. ( The input ACL is invalid (1210 / 2072).; ; SearchID =
    Some-Random-GUID )
    Search works fine in newly created sites in 2013 environment.
    Please help.

    Hello
    Did you migrate your users to claims when you migrated the databases?
    $wa = Get-SPWebApplication http://yourdom.com
    $wa.MigrateUsers($true)
    $wa.ProvisionGlobally()
    I assume the sites that work and the migrated content are in the same database?
    MCITP-EA | "Never test how deep the water is with both feet"

  • 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

  • "Unable to connect to the remote server" error message (ID 6102) in event view after installing MOSS 2007

     Hi brothers,
    After installed the Moss 2007(basic) , I find some error in event view. The event ID is "6102". More detail information is shown below.
     Event Type:        Error
    Event Source:    Office SharePoint Server
    Event Category:                Launcher Service Event ID:              6102Date:                     11/27/2007Time:                     8:22:17 AMUser:                     N/AComputer:          MOSS-001Description:LoadBalancer.RegisterLauncher failed:  Unable to connect to the remote server For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp. 
    Please help me, thanks.

    Hi,
    i think this has to do with the "Document Conversions Load Balancer Service".
    If you don't need the service than try to stop it:
    Start Central Administration > Operations > Services and stop the service.
    or 
    If you need it the service, try this:
    Start Central Administration > Operations > Service Account
    Change the service account to "Document Conversions Load Balancer Service" And Select a "Network Services" Click Save
    Hope this helps!
    Cheers,
    Daniel Bugday
    Web:
    SharePoint Forum
    Blog:
    Daniel Bugday's SharePoint Blog

  • Unable to enter MOSS 2007 License Key after SP2 upgrade - trial period about to expire

    We are unable to enter the license key as stated in the title. The field does not allow any input. Central Admin shows that our trial period is about to expire very soon. 
    Our environment is MOSS 2007 (Office Sharepoint Server with Enterprise Client Access License) on Server 2003. SP2 is installed, the August 2011 CU (KB2553020) is installed, and the Microsoft suggested fix for this known problem is also installed (KB971620).
    ie. Product expiration date is activated incorrectly. Since those fixes do not work, we are left with the manual entry of the license key. However, that also does not work.
    Still, it shows that the trial period is about to expire. Apparently this fix is also included in any of the CU's after June 2009.
    We have a valid license key for the Enterprise version and have the Enterprise client licenses as well. The License Synchronizer Job has succeeded.
    I have searched the forum and have not seen a answer that resolves this issue.
    Does anyone know what to try next ? We are running out of time.
    Thanks in advance,
    Peter
    <></>
    <> </>

     
    Hi,
    As far as I know, this issue occurs because the installation of the 2007 Microsoft Office SP2 activates the production expiration data incorrectly.
    To resolve this issue, please install one of the following updates according to the following links:
    Update for 2007 Microsoft Office servers (KB971620), 32-Bit Edition
    Download the Update for 2007 Microsoft Office servers (KB971620), 32-Bit Edition package now. (http://download.microsoft.com/download/2/F/5/2F51AB71-1325-49D2-9CB9-18DEC4780E99/office2007-kb971620-fullfile-x86-glb.exe)
    Update for 2007 Microsoft Office servers (KB971620), 64-Bit Edition
    Download the Update for 2007 Microsoft Office servers (KB971620), 64-Bit Edition package now. (http://download.microsoft.com/download/5/B/B/5BBD34A9-C528-42B0-8A5F-9A8997B25C32/office2007-kb971620-fullfile-x64-glb.exe)
    For more information about this issue, see
    http://support.microsoft.com/kb/971620
    After you install one of these updates, you do not have to redeploy the service pack. For information about how to deploy this update, please see the Microsoft TechNet article on how to deploy server updates:
    http://technet.microsoft.com/en-us/library/cc263467.aspx
    Thanks,
    Rock Wang
    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]
    Rock Wang TechNet Community Support

  • When I full crawl my MOSS 2007 site, it is Intializing my site repeatedly!

    Hi everyone
    I'm using Moss 2007. When I did full crawl, it put out lots of logs. I read one of the logs and found that several strange parts on them.
    It sounds like ...
    1. It is initializing security for my subsite repeatedly.
    2. Cache is full
    3. My FileSharedLibrary allows no one to read items.
    1. It is initializing security for my subsite repeatedly.
    I don't know why it is initializing my subsite again and again. I believe this made the logs so large...
    Here is the log.
    Init security for site "MyItem'sURL" - File:d:\office\source\search\search\gather\protocols\sts3\sts3util.cxx Line:842
    Init Group GROUPNAME123 Id 7 - File:d:\office\source\search\search\gather\protocols\sts3\sts3util.cxx Line:3086 
    New User USERNAME123 Id 1 - File:d:\office\source\search\search\gather\protocols\sts3\sts3util.cxx Line:1073
    New User USERNAME456 Id 13 - File:d:\office\source\search\search\gather\protocols\sts3\sts3util.cxx Line:1073 
    2. Cache is full
    Also I think the log says the cache is full. But I have no idea this cache problem and the initializing problem are effecting each other or not.
    Remove V3 Cache, reason = oversize, committed 649506816 - File:d:\office\source\search\search\gather\protocols\sts3\sts3util.cxx Line:127 
    Remove V3 cache - File:d:\office\source\search\search\gather\protocols\sts3\sts3util.cxx Line:76 
    V3 Cache statistics: committed=649506816, UserCatalogCaches=1 - File:d:\office\source\search\search\gather\protocols\sts3\sts3util.hxx Line:172 
    3. My FileSharedLibrary access control allows no one to read items.
    Thirdly, I got this error many times. (FileSharedLibrary is the feature of DocAve)
    I searched "hr=80041211" and found MicroSoft said "Item will not be indexed. Its access control list allows no one to read the item. Used in GetSecurityDescriptor method of the IUrlAccessor interface.
    CSTS3Accessor::GetItemSecurityDescriptor: Return error to caller, hr=80041211
    - File:d:\office\source\search\search\gather\protocols\sts3\sts3acc.cxx Line:1210 
    I already checked DisabledLoopBackCheck is disabled, Crawl Account have a read access of my site properly, and I'm sure we have enough free space at C and D drives.
    Actually I can use my SharePoint site normally with no problem and it does not show any error on my site. But I really need to know the reason why this three points are happening...in order to avoid a huge-size log gives damage to server when I full
    crawl next time...
    Hope someone could help me to solve this problems

    Thank you Jaggi
    I think this is the almost same page that i checked already and mensioned in my question
    "hr=80041211" and found MicroSoft said "Item will not be indexed. Its access control list allows no one to read the item. Used in GetSecurityDescriptor method of the IUrlAccessor interface.
    Do you think my problem is really because of anything Access control problem..?

  • 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.

  • Sharepoint 2013 discussion board item view (flat.aspx) throws js error after being migrated from moss 2007

    After preforming a migration from moss 2007 to 2013 on-prem we have noticed that html tags are showing up in the discussion board posts.  I have tracked the problem down to the flat.aspx page throwing a js error. 
    'SPAnimationUtility' is undefined - coming from the sp.ui.discussions.js file
    this is what I see on the page: 
    The reply and edit buttons function fine.  Its just that the html is exposed. 
    Anyone seen this before or have a clue as to how to solve?  
    Thanks,
    -Alex

    As I remember there are a couple managed properties (metadata) that are used by the views that don't get created when you migrate a discussion board from a previous version.  I don't remember the specific properties, but take a look at a new discussion
    board in 2013 and compare the properties in the views and you will find them.  
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • MOSS 2007 gives cross browser compatabity issue on firefox and chrome and also in higher version of IE (9 & 11)

    I am getting browser compatablity issue when MOSS 2007 is used on IE 9 & 11 and on other browsers like firefox and chrome.
    I also face issue while using the latest version of third party Intersoft WebUI 2014 R2 controls. Although the older version of Intersoft WebUI 2008 controls were working fine with MOSS in IE7 browser. But recently WebGrids are not loading
    properly and the WebCombo dropdowns doesn't work. After apporaching the Intersoft on tis issue they said their latest version of Intersoft is compatible with MOSS 2007.
    In this process of upgrade I learnt that the Intersoft Sample which comes with their setup can be run on Visual Studio 2010 and above. So I would like to know whether MOSS 2007 support VS 2010 or not.
    Accepting response on my queries.

    You've posted this in the wrong forum. 2007 questions should go into the SharePoint legacy forum.
    This thread discussed 2007 browser support:
    https://social.technet.microsoft.com/Forums/en-US/a3131e1f-b78b-46bd-bc46-750866b280bd/sharepoint-2007-ie-browser-compatability
    Visual Studio 2010 will let you build tools for SharePoint 2007 however I'm not familiar with what you're trying to do or what intersoft webui does.

  • MOSS 2007 Custom Theme Images Invisible to Users

    Hi,
    Our MOSS 2007 Site uses Custom Theme and the theme uses image for styling navigation background. The issue is the when a user logs in to site he is not able to view the navigation background image whereas when a user with full control
    logs in to site he can view the navigation background image.
    Kindly suggest.

    Hi,
    Is the image stored in a location that standard users have access to (style library)?
    Is the image checked-in and published/approved?
    Cheers
    Matt

Maybe you are looking for

  • Help with Layout

    I've got a simple layout but I need to get it looking more like this picture: http://members.lycos.nl/ghanswebsite/Layout.JPG Now I got a simple GridBag. I tried a few other layouts but they got me errors so until now I evaded them .. :-(. // Fig. 12

  • Why is my search 1000% slower after re-saving a PDF? (Acrobat 9 Pro Extended)

    I purchased and downloaded the PDF version of "Javascript: the Definitive Guide" (Flanagan, David, O'Reilly Press, 5th Ed., 2006). When I first started using the PDF, searches would yield results instantaneously. After making some notations and highl

  • Tecra M2 hangs, not doing complete startup, requires manual shutdown

    I have a tecra m2 which is giving the above problems. Note that once the notebook is recovered from the image, it works 100%. it is only after installing 3rd party programs that it is happening. the programs are as follows: StarOffice, NAV Corporate,

  • Safe Sleep! It keeps happening to my MBP. Any ideas why?

    Whenever I move my MacBook Pro when it is asleep and off-AC, it will eventually drop into Safe Sleep. There doesn't appear to ba a particular trigger, at least as far as I've been able to tell, other than to move it. It could be as simple as gently t

  • DB parameter check for AUTO_MAINT failed

    Can someone help me out.  I am doing the prepare for an Upgrade to ERP 2005 from SAP 4.7.  I am at the General Checks phase 07 of the prepare and it is failing and the CHECKS.LOG shows.  DB parameter check for AUTO_MAINT failed.  I have checked this