Downloaded Office Files marked as Templates

Can someone tell me why Safari would add template extensions to MS Office files I download? For example:
- *.doc Word files get renamed to *.doc.dot
- *.xls Excel files gets relabeled to *.xls.xlt
I can fix them by just deleting the template extension and the files are fine. I can go to the same web page with firefox and the files download fine.

If server MIME types aren't properly configured, this kind of problem results. Some web browsers will guess at the MIME type, but that shouldn't be necessary. (See "Why browsers should not guess MIME type" in my link.)

Similar Messages

  • LSO: Download office files instead of embedded

    Hello colleagues,
    I hope you can help me with my current issue in my current Learning Solution implementation.
    Customer wants to use as part of a web based training different kind of Microsoft Office files, mainly powerpoint files, but for windows vista and windows 7 with office 2007 and higher versions Learning Solution always tries to download the files instead of show them embedded in the MS Internet Explorer or Mozilla Firefox.
    I tried with some earlier versions of Windows, like Windows XP and this works just fine, but in Windows Vista and Windows 7, this is not working.
    Have you seen a behavior like this one? If it so, how did you solve it?
    Thank you for the help in advance!
    Regards.

    It's amazing to me that simply asking Safari to default to auto download a PDF is so arcane. It's incredible that Apple doesn't have a Safari preference for this very simple action!
    The Terminal and Onyx methods recommended above are just ways of accessing a setting for Safari that Apple hasn't added to Safari Preferences. As I understand it, settings like this are built into Safari - they just aren't readily user-accessible. This is why programs like Onyx and Safari Enhancer exist, to open up "hidden" features and settings.
    I imagine Apple's developers debate these things, trying to decide what would be simpler to leave out to avoid complexity and what confusion (but allow third-party or Terminal methods to access) and which would be better added to the regular Preferences settings.
    Since this is a feature you'd like to see in Safari Preferences, I'd recommend submitting this as feedback to Apple.
    In the meantime, though, I'd consider it a good thing that there are built-in ways to get the setting that you prefer. Personally, I don't find the default settings such a hindrance. They're intended to help the "average" user (the new Mac user, the non-technical user, etc.) who wants a PDF file to just open, without having to understand how to work with it. For the more savvy user, there are multiple methods of downloading and/or opening PDFs. I'm rather like you - I prefer to download PDFs (in which case I use the Control-click method if I notice the link is to a PDF) or sometimes I allow the PDF to open in Safari, then Control-click on the open PDF and choose the option to open in Acrobat Reader. I find the latter method even smoother than downloading and then opening, in fact. If I decide it's a file I want to keep, I save it to my hard drive; otherwise I just close it.

  • Inability to open office files in windows 8

    I cannot open any downloaded office file from office 13 and office 2010 in windows 8. why is that? Is there a solution?

      ACR 6.2 definitely supports the Sony SLT-A55V
    Try from the Editor by clicking File à Open As
    Then navigate to one of your raw files, highlight it, and choose open as camera raw.
    Then click open.
    If that doesn’t work you my need to convert to the Adobe Raw format.
    Download the free Adobe DNG Converter 6.5 and use the digital negatives in PSE8 keeping your ARW files as your back-ups.
     

  • If i download any file which is prepare on microsoft office 2007 . The file have been download without extension of the prog. Means if files name is "1,docx" when i download from firefox it download in that form "1". after download i have to rename and gi

    If i download any file which is prepare on microsoft office 2007 . The file have been download without extension of the prog. Means if files name is "1,docx" when i download from firefox it download in that form "1". after download i have to rename and give the extension name is plz tell me the way that office files are compatible with it.
    == This happened ==
    Every time Firefox opened
    == when i download the office files

    In Firefox Options / Privacy be sure "Remember download history" is checked. To see all of the options on that panel, "Firefox will" must be set to "Use custom settings for history".
    To find your OS information, on your Windows desktop, right-click the My Computer icon, choose Properties, under System on that small window is info about your OS.
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''

  • How to download a file version from office 365 using csom

    I need to download an older file version from office 365 and get the data into a byte array. I have no trouble downloading the latest version with File.OpenBinaryStream() and I have no trouble loading the previous file versions with File.Versions. But now
    I need to actually download an older version of the file and it seems the only way is to use File.OpenBinaryDirect. So I am creating a client context using my oAuth access token and providing the correct path, but I am getting a (401) Unauthorized
    error. Looking with Fiddler I can see that the call to OpenBinaryDirect is somehow trying to post to my file URL and the server is responding with 401.
    context = TokenHelper.GetClientContextWithAccessToken(SPHostUrl, AccessToken);
    FileInformation info = File.OpenBinaryDirect(context, "/" + _fileVersion.Url);  //throws 401
    //leading slash required otherwise ArgumentOutOfRangeException
    I have to be able to access the older file versions with my c# code -- I don't have a viable app without that ability -- any help urgently needed and greatly appreciated!

    Thank you SO much (Can't wait for the next release)!
    For anyone else who lands here, here's the code I ended up using:
    // VersionAccessUser and VersionAccessPassword are stored in web.config
    // web.Url is loaded via the clientContext
    // myVersion is the FileVersion I got from the file's Versions.GetById() method
    // probably a lot of ways to get hostUrl, it just needs to be https://yourdomain.sharepoint.com/
    // - I'm running my app from a subweb
    // I had trouble following the links to get the full MsOnlineClaimsHelper code
    // (the one on msdn.com was missing RequestBodyWriter, WSTrustFeb2005ContractClient,
    // and IWSTrustFeb2005Contract
    // so I've included the code I used here.
    string myVersionFullUrl = string.Format("{0}/{1}", web.Url, myVersion.Url);
    string userName = WebConfigurationManager.AppSettings.Get("VersionAccessUser");
    string strPassword = WebConfigurationManager.AppSettings.Get("VersionAccessPassword");
    string hostUrl = Regex.Replace(web.Url, "([^/]+//[^/]+/).*", "$1");
    MsOnlineClaimsHelper claimsHelper = new MsOnlineClaimsHelper(hostUrl, userName, strPassword);
    var client = new WebClient();
    client.Headers["Accept"] = "/";
    client.Headers.Add(HttpRequestHeader.UserAgent, "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.2; .NET CLR 1.0.3705;)");
    client.Headers.Add(HttpRequestHeader.Cookie, claimsHelper.CookieContainer.GetCookieHeader(new Uri(hostUrl)));
    var document = client.DownloadString(myVersionFullUrl);
    // These classes are needed to download old versions of files (see: http://social.msdn.microsoft.com/Forums/en-US/7746d857-d351-49cc-b2f0-496663239e02/how-to-download-a-file-version-from-office-365-using-csom?forum=sharepointdevelopment)
    // I cobbled this file from http://social.technet.microsoft.com/Forums/msonline/en-US/4e304493-7ddd-4721-8f46-cb7875078f8b/problem-logging-in-to-office-365-sharepoint-online-from-webole-hosted-in-the-cloud?forum=onlineservicessharepoint
    // and http://fredericloud.com/2011/01/11/connecting-to-sharepoint-with-claims-authentication/
    using Microsoft.IdentityModel.Protocols.WSTrust;
    using Microsoft.SharePoint.Client;
    using System;
    using System.Collections.Generic;
    using System.IO;
    using System.Linq;
    using System.Net;
    using System.Net.Security;
    using System.ServiceModel;
    using System.ServiceModel.Channels;
    using System.Text;
    using System.Web;
    using System.Xml;
    using System.Xml.Linq;
    namespace DPSiDoxAppWeb.Helpers
    /// <summary>
    /// Create a new contract to use for issue claims for the SharePoint requests
    /// </summary>
    [ServiceContract]
    public interface IWSTrustFeb2005Contract
    [OperationContract(ProtectionLevel = ProtectionLevel.EncryptAndSign,
    Action = "http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue",
    ReplyAction = "http://schemas.xmlsoap.org/ws/2005/02/trust/RSTR/Issue",
    AsyncPattern = true)]
    IAsyncResult BeginIssue(Message request, AsyncCallback callback, object state);
    Message EndIssue(IAsyncResult asyncResult);
    /// <summary>
    /// Implement the client contract for the new type
    /// </summary>
    public class WSTrustFeb2005ContractClient : ClientBase<IWSTrustFeb2005Contract>, IWSTrustFeb2005Contract
    public WSTrustFeb2005ContractClient(Binding binding, EndpointAddress remoteAddress)
    : base(binding, remoteAddress)
    public IAsyncResult BeginIssue(Message request, AsyncCallback callback, object state)
    return Channel.BeginIssue(request, callback, state);
    public Message EndIssue(IAsyncResult asyncResult)
    return Channel.EndIssue(asyncResult);
    /// <summary>
    /// Create a class that will serialize the token into the request
    /// </summary>
    class RequestBodyWriter : BodyWriter
    readonly WSTrustRequestSerializer _serializer;
    readonly RequestSecurityToken _rst;
    /// <summary>
    /// Constructs the Body Writer.
    /// </summary>
    /// <param name="serializer">Serializer to use for serializing the rst.</param>
    /// <param name="rst">The RequestSecurityToken object to be serialized to the outgoing Message.</param>
    public RequestBodyWriter(WSTrustRequestSerializer serializer, RequestSecurityToken rst)
    : base(false)
    if (serializer == null)
    throw new ArgumentNullException("serializer");
    _serializer = serializer;
    _rst = rst;
    /// <summary>
    /// Override of the base class method. Serializes the rst to the outgoing stream.
    /// </summary>
    /// <param name="writer">Writer to which the rst should be written.</param>
    protected override void OnWriteBodyContents(XmlDictionaryWriter writer)
    _serializer.WriteXml(_rst, writer, new WSTrustSerializationContext());
    public class MsOnlineClaimsHelper
    #region Properties
    readonly string _username;
    readonly string _password;
    readonly bool _useRtfa;
    readonly Uri _host;
    CookieContainer _cachedCookieContainer = null;
    DateTime _expires = DateTime.MinValue;
    #endregion
    #region Constructors
    public MsOnlineClaimsHelper(string host, string username, string password)
    : this(new Uri(host), username, password)
    public MsOnlineClaimsHelper(Uri host, string username, string password)
    _host = host;
    _username = username;
    _password = password;
    _useRtfa = true;
    public MsOnlineClaimsHelper(Uri host, string username, string password, bool useRtfa)
    _host = host;
    _username = username;
    _password = password;
    _useRtfa = useRtfa;
    #endregion
    #region Constants
    public const string office365STS = "https://login.microsoftonline.com/extSTS.srf";
    public const string office365Login = "https://login.microsoftonline.com/login.srf";
    public const string office365Metadata = "https://nexus.microsoftonline-p.com/federationmetadata/2007-06/federationmetadata.xml";
    public const string wsse = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd";
    public const string wsu = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd";
    private const string userAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)";
    #endregion
    class MsoCookies
    public string FedAuth { get; set; }
    public string rtFa { get; set; }
    public DateTime Expires { get; set; }
    public Uri Host { get; set; }
    // Method used to add cookies to CSOM
    public void clientContext_ExecutingWebRequest(object sender, WebRequestEventArgs e)
    e.WebRequestExecutor.WebRequest.CookieContainer = getCookieContainer();
    //e.WebRequestExecutor.WebRequest.UserAgent = userAgent;
    // Creates or loads cached cookie container
    CookieContainer getCookieContainer()
    if (_cachedCookieContainer == null || DateTime.Now > _expires)
    // Get the SAML tokens from SPO STS (via MSO STS) using fed auth passive approach
    MsoCookies cookies = getSamlToken();
    if (cookies != null && !string.IsNullOrEmpty(cookies.FedAuth))
    // Create cookie collection with the SAML token
    _expires = cookies.Expires;
    CookieContainer cc = new CookieContainer();
    // Set the FedAuth cookie
    Cookie samlAuth = new Cookie("FedAuth", cookies.FedAuth)
    Expires = cookies.Expires,
    Path = "/",
    Secure = cookies.Host.Scheme == "https",
    HttpOnly = true,
    Domain = cookies.Host.Host
    cc.Add(samlAuth);
    if (_useRtfa)
    // Set the rtFA (sign-out) cookie, added march 2011
    Cookie rtFa = new Cookie("rtFA", cookies.rtFa)
    Expires = cookies.Expires,
    Path = "/",
    Secure = cookies.Host.Scheme == "https",
    HttpOnly = true,
    Domain = cookies.Host.Host
    cc.Add(rtFa);
    _cachedCookieContainer = cc;
    return cc;
    return null;
    return _cachedCookieContainer;
    public CookieContainer CookieContainer
    get
    if (_cachedCookieContainer == null || DateTime.Now > _expires)
    return getCookieContainer();
    return _cachedCookieContainer;
    private MsoCookies getSamlToken()
    MsoCookies ret = new MsoCookies();
    try
    var sharepointSite = new
    Wctx = office365Login,
    Wreply = _host.GetLeftPart(UriPartial.Authority) + "/_forms/default.aspx?wa=wsignin1.0"
    //get token from STS
    string stsResponse = getResponse(office365STS, sharepointSite.Wreply);
    // parse the token response
    XDocument doc = XDocument.Parse(stsResponse);
    // get the security token
    var crypt = from result in doc.Descendants()
    where result.Name == XName.Get("BinarySecurityToken", wsse)
    select result;
    // get the token expiration
    var expires = from result in doc.Descendants()
    where result.Name == XName.Get("Expires", wsu)
    select result;
    ret.Expires = Convert.ToDateTime(expires.First().Value);
    HttpWebRequest request = createRequest(sharepointSite.Wreply);
    byte[] data = Encoding.UTF8.GetBytes(crypt.FirstOrDefault().Value);
    using (Stream stream = request.GetRequestStream())
    stream.Write(data, 0, data.Length);
    stream.Close();
    using (HttpWebResponse webResponse = request.GetResponse() as HttpWebResponse)
    // Handle redirect, added may 2011 for P-subscriptions
    if (webResponse.StatusCode == HttpStatusCode.MovedPermanently)
    HttpWebRequest request2 = createRequest(webResponse.Headers["Location"]);
    using (Stream stream2 = request2.GetRequestStream())
    stream2.Write(data, 0, data.Length);
    stream2.Close();
    using (HttpWebResponse webResponse2 = request2.GetResponse() as HttpWebResponse)
    ret.FedAuth = webResponse2.Cookies["FedAuth"].Value;
    ret.rtFa = webResponse2.Cookies["rtFa"].Value;
    ret.Host = request2.RequestUri;
    else
    ret.FedAuth = webResponse.Cookies["FedAuth"].Value;
    ret.rtFa = webResponse.Cookies["rtFa"].Value;
    ret.Host = request.RequestUri;
    catch (Exception ex)
    return null;
    return ret;
    static HttpWebRequest createRequest(string url)
    HttpWebRequest request = HttpWebRequest.Create(url) as HttpWebRequest;
    request.Method = "POST";
    request.ContentType = "application/x-www-form-urlencoded";
    request.CookieContainer = new CookieContainer();
    request.AllowAutoRedirect = false; // Do NOT automatically redirect
    request.UserAgent = userAgent;
    return request;
    private string getResponse(string stsUrl, string realm)
    RequestSecurityToken rst = new RequestSecurityToken
    RequestType = WSTrustFeb2005Constants.RequestTypes.Issue,
    AppliesTo = new EndpointAddress(realm),
    KeyType = WSTrustFeb2005Constants.KeyTypes.Bearer,
    TokenType = Microsoft.IdentityModel.Tokens.SecurityTokenTypes.Saml11TokenProfile11
    WSTrustFeb2005RequestSerializer trustSerializer = new WSTrustFeb2005RequestSerializer();
    WSHttpBinding binding = new WSHttpBinding();
    binding.Security.Mode = SecurityMode.TransportWithMessageCredential;
    binding.Security.Message.ClientCredentialType = MessageCredentialType.UserName;
    binding.Security.Message.EstablishSecurityContext = false;
    binding.Security.Message.NegotiateServiceCredential = false;
    binding.Security.Transport.ClientCredentialType = HttpClientCredentialType.None;
    EndpointAddress address = new EndpointAddress(stsUrl);
    using (WSTrustFeb2005ContractClient trustClient = new WSTrustFeb2005ContractClient(binding, address))
    trustClient.ClientCredentials.UserName.UserName = _username;
    trustClient.ClientCredentials.UserName.Password = _password;
    Message response = trustClient.EndIssue(
    trustClient.BeginIssue(
    Message.CreateMessage(
    MessageVersion.Default,
    WSTrustFeb2005Constants.Actions.Issue,
    new RequestBodyWriter(trustSerializer, rst)
    null,
    null));
    trustClient.Close();
    using (XmlDictionaryReader reader = response.GetReaderAtBodyContents())
    return reader.ReadOuterXml();

  • Downloaded ms office files can not open

    I am unable to open any "DOWNLOADED" ms office files from windows 8 32 bit version.
    But I can create MS office files only issue is with the downloaded files from internet.

    If the damaged file is important for you, you may use some excel recovery tools to recover them.
    There are many excel recovery tools , you can google for them.
    I'v used a tool, it repaired  my file, you can also have a try.
    http://www.datanumen.com/aer/recovery.htm
    Hope this helps you~
    Julie

  • My Canon 5D Mark 3 camera..I cannot download Raw files using iPhoto help please

    Canon 5D Mark 3 I cannot download Raw file in iPhoto help please?

    You will need OS X 10.7.4 and iPhoto 11 or Aperture 3 for this.
    What do you have?

  • Can you download a PDF Wizard that converts Microsoft Office files to PDF through a print command. The PDF wizard does this but costs 40 US Dollars?

    Does anyone know if you can download a PDF Printer that converts all microsoft office files to pdf format via a print command. The PDF Wizard fromPDF Suite does this but it costs 40 US Dollars?

    Hi Justin,
    You can purchase a Create PDF subscription and use the Create PDF desktop pinter which can be downloaded once you are a paying subscriber. The subscription costs $9.99 per month and you can end your subscription at anytime. Learn about this service.
    Hope this helps.
    Thanks,
    Karen

  • How do I download Microsoft office files on my I pad ?

    I want to download Microsoft office files (word,excel) from my pc to my I pad

    Have a look at the following:
    http://itunes.apple.com/sg/app/quickoffice-pro-hd-edit-office/id376212724?mt=8&l s=1
    http://itunes.apple.com/sg/app/office2-hd/id364361728?mt=8&ls=1
    http://itunes.apple.com/sg/app/documents-to-go-premium-office/id317107309?mt=8&l s=1
    http://itunes.apple.com/sg/app/polaris-office/id513188658?mt=8&ls=1

  • Download and save files or Office files!

    How can I download and save an EXE file or Office files i.e. DOC, XLS or PPT files to iPhone 5 and then transfer them to Computer/Laptop?
    Thanks
    Shahzad Zameer

    It is possible that your anti-virus software is corrupting the downloaded files or otherwise interfering with downloading files by Firefox.<br />
    Try to disable the real-time (live) scanning of files in your anti-virus software temporarily to see if that makes downloading work.
    See also "Disable virus scanning in Firefox preferences - Windows"
    * http://kb.mozillazine.org/Unable_to_save_or_download_files

  • How do I download Quick Office files onto my laptop from an iPad Air?

    When I try and download the files from Quick Office on to my laptop in itunes, it is telling me 'Error occured. Required file could not be found' - Why is this?? How do I get the files on to my laptop?

    USB to iPad supports only "Camera" files via camera connection kit.
    There are lots of ways of moving files.
    A simple and popular way to copy files and share files amoung your devices.
    https://www.dropbox.com/
    Using iTunes to transfer files:
    http://support.apple.com/kb/HT4094?viewlocale=en_US&locale=en_US
    Files Connect -- The swiss army knife of remote file connect
    https://itunes.apple.com/us/app/files-connect/id404324302?mt=8
    iExplorer -- " iExplorer's disk mounting features allow you to use your iPhone, iPod or iPad like a USB flash drive."
    http://www.macroplant.com/iexplorer/
    Windows File server
    http://itunes.apple.com/us/app/filebrowser-access-files-on/id364738545?mt=8

  • I can not download any files from my e-mail like office files, can you help me

    I can not download any files from my e-mail like office files,  can you help me

     Which Email app are you using? 

  • Downloading ASPX files throuhg File Explorer - Why is the original content replaced?

    Hi All,
    I have hit upon this very annoying problem which is dragging down my productivity. I hope some of the experts here might be abble to offer a solution.
    My company has SP 2013 deployed. I have some custom ASPX pages deployed to a document library and these pages have no reference to anything of SharePoint at all. Everything works fine. However, when I download those files to local disk using the File Explorer
    view, the content of the ASPX pages are modified.
    If I look into the original files through SharePoint Designer then everything looks fine. Why would the File Explorer view of SharePoint do such a covert thing.
    example of modified content below:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns:o="urn:schemas-microsoft-com:office:office" lang="en-us" dir="ltr">
    <head><meta name="GENERATOR" content="Microsoft SharePoint" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta http-equiv="Expires" content="0" /><meta http-equiv="X-UA-Compatible" content="IE=8"/><meta name="ROBOTS" content="NOHTMLINDEX" /><title>
    Error: User Settings Not Initialized.
    </title><link rel="stylesheet" type="text/css" href="/_layouts/15/1033/styles/corev15.css?rev=5vnvqGmlkKiZE7lIH7ENng%3D%3D"/>
    <link rel="stylesheet" type="text/css" href="/_layouts/15/1033/styles/error.css?rev=nc1850SZNy60qTAeQIRxsA%3D%3D"/>
    <script type="text/javascript" src="/_layouts/15/init.js?rev=ZCyl%2Bj%2B4NZLoeodWTEXQ0Q%3D%3D"></script>
    <script type="text/javascript" src="/ScriptResource.axd?d=waxIQA_sGf4iJF1mpDQ_h_7Bnp7l3Lb3pIc6d0Qn3v2S7zRP84uas_kZlheIew9n1ZY8LsdDvP_VUtLmPewi5Lt5GXCQln0TmnIM04UIBOCbicbhxC3tMhCPYfqxnFmO3r2Hy0TZ7TjAY4dqK7ge4yZ7s4MyKLIczZOrR3Ommjfjvo6pdzF8kZB0TX-DJZjY0&amp;t=6119e399"></script>
    <script type="text/javascript" src="/_layouts/15/blank.js?rev=ZaOXZEobVwykPO9g8hq%2F8A%3D%3D"></script>
    <script type="text/javascript">RegisterSod("initstrings.js", "\u002f_layouts\u002f15\u002f1033\u002finitstrings.js?rev=uNmvBiHdrBzcPQzXRpm\u00252FnQ\u00253D\u00253D");</script>
    <script type="text/javascript">RegisterSod("strings.js", "\u002f_layouts\u002f15\u002f1033\u002fstrings.js?rev=DY9A0USYODVw86N0trJTSw\u00253D\u00253D");RegisterSodDep("strings.js", "initstrings.js");</script>
    <script type="text/javascript">RegisterSod("sp.init.js", "\u002f_layouts\u002f15\u002fsp.init.js?rev=QI1yUCfCoUkadL93jNZLOg\u00253D\u00253D");</script>
    <script type="text/javascript">RegisterSod("sp.res.resx", "\u002f_layouts\u002f15\u002fScriptResx.ashx?culture=en\u00252Dus\u0026name=SP\u00252ERes\u0026rev=yNk\u00252FhRzgBn40LJVP\u00252BqfgdQ\u00253D\u00253D");</script>
    <script type="text/javascript">RegisterSod("sp.ui.dialog.js", "\u002f_layouts\u002f15\u002fsp.ui.dialog.js?rev=0xf6wCIW4E1pN83I9nSIJQ\u00253D\u00253D");RegisterSodDep("sp.ui.dialog.js", "sp.init.js");RegisterSodDep("sp.ui.dialog.js", "sp.res.resx");</script>
    <script type="text/javascript">RegisterSod("core.js", "\u002f_layouts\u002f15\u002fcore.js?rev=ZvHGYvPbR2jV\u00252B4xx2UhUzQ\u00253D\u00253D");RegisterSodDep("core.js", "strings.js");</script>
    <meta name="Robots" content="NOINDEX " />
    <meta name="SharePointError" content="1" />
    <link rel="shortcut icon" href="/_layouts/15/images/favicon.ico?rev=23" type="image/vnd.microsoft.icon" /></head>
    <body id="ms-error-body" onload="if (typeof(_spBodyOnLoadWrapper) != 'undefined') _spBodyOnLoadWrapper();">
    <form method="post" action="usersettingserror.aspx?source=http%3a%2f%2friskpoints.nomura.com%2fsites%2frpg%2fWebResources%2fMay28%2fTestTree.aspx&amp;loginName=i%3a0%23.w%7ceurope%5cdasgupsa" id="aspnetForm" onsubmit="if (typeof(_spFormOnSubmitWrapper) != &#39;undefined&#39;) {return _spFormOnSubmitWrapper();} else {return true;}">
    <input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwULLTEzODY5NzkzMDQPZBYCZg9kFgICAQ9kFgICAw9kFgICCQ9kFgICAQ9kFgICAQ9kFgQCAQ8PFgIeC05hdmlnYXRlVXJsBeQBaHR0cDovL215c2l0ZXNzLm5vbXVyYS5jb206ODAvX2xheW91dHMvMTUvRWRpdFByb2ZpbGUuYXNweD9Vc2VyU2V0dGluZ3NQcm92aWRlcj0yMzRiZjBlZCUyRDcwZGIlMkQ0MTU4JTJEYTMzMiUyRDRkZmQ2ODNiNDE0OCZSZXR1cm5Vcmw9aHR0cCUzQSUyRiUyRnJpc2twb2ludHMlMkVub211cmElMkVjb20lMkZzaXRlcyUyRnJwZyUyRldlYlJlc291cmNlcyUyRk1heTI4JTJGVGVzdFRyZWUlMkVhc3B4ZGQCAw8PFgIfAAWPAWphdmFzY3JpcHQ6T25QcmV2aW91c1BhZ2VDbGlja2VkKCJodHRwOlx1MDAyZlx1MDAyZnJpc2twb2ludHMubm9tdXJhLmNvbVx1MDAyZnNpdGVzXHUwMDJmcnBnXHUwMDJmV2ViUmVzb3VyY2VzXHUwMDJmTWF5MjhcdTAwMmZUZXN0VHJlZS5hc3B4Iik7ZGRk/8DhVeqMpCBkDLwMGbJHyjvtFVboldzRyN3N1oU7pws=" />
    <script type="text/javascript">
    //<![CDATA[
    var g_presenceEnabled = true;
    var g_wsaEnabled = false;
    var g_wsaQoSEnabled = false;
    var g_wsaQoSDataPoints = [];
    var g_wsaLCID = 1033;
    var g_wsaListTemplateId = null;
    var g_wsaSiteTemplateId = 'STS#0';
    var _fV4UI=true;var _spPageContextInfo = {webServerRelativeUrl: "\u002fsites\u002frpg", webAbsoluteUrl: "http:\u002f\u002friskpoints.nomura.com\u002fsites\u002frpg", siteAbsoluteUrl: "http:\u002f\u002friskpoints.nomura.com\u002fsites\u002frpg", serverRequestPath: "\u002f_layouts\u002f15\u002fusersettingserror.aspx", layoutsUrl: "_layouts\u002f15", webTitle: "Global Risk Programmes Group", webTemplate: "1", tenantAppVersion: "0", webLogoUrl: "_layouts\u002f15\u002fimages\u002fsiteicon.png", webLanguage: 1033, currentLanguage: 1033, currentUICultureName: "en-US", currentCultureName: "en-GB", clientServerTimeDelta: new Date("2014-06-02T09:22:36.9098601Z") - new Date(), siteClientTag: "12$$15.0.4551.1001", crossDomainPhotosEnabled:false, webUIVersion:15, webPermMasks:{High:2147483647,Low:4294967295}, pagePersonalizationScope:1,userId:10, systemUserKey:"i:0\u0029.w|s-1-5-21-477418155-1331950027-3872095834-234225", alertsEnabled:true, siteServerRelativeUrl: "\u002fsites\u002frpg", allowSilverlightPrompt:'True',"themedCssFolderUrl" : "/sites/rpg/_catalogs/theme/Themed/37D18848","themedImageFileNames" : {"spcommon.png" : "spcommon-B35BB0A9.themedpng?ctag=6","ellipsis.11x11x32.png" : "ellipsis.11x11x32-2F01F47D.themedpng?ctag=6","O365BrandSuite.95x30x32.png" : "O365BrandSuite.95x30x32-C212E2FD.themedpng?ctag=6","socialcommon.png" : "socialcommon-6F3394A9.themedpng?ctag=6","spnav.png" : "spnav-230C537D.themedpng?ctag=6"}};function OnPreviousPageClicked(sourceUrl)
    document.cookie = "WSS_IgnoreUserSettingsOutOfSync=1; path=/";
    window.location = sourceUrl;
    }var MSOWebPartPageFormName = 'aspnetForm';//]]>
    </script>
    <script src="/_layouts/15/blank.js?rev=ZaOXZEobVwykPO9g8hq%2F8A%3D%3D" type="text/javascript"></script>
    <script type="text/javascript">
    //<![CDATA[
    if (typeof(DeferWebFormInitCallback) == 'function') DeferWebFormInitCallback();//]]>
    </script>
    <div id="ms-error-header" class="ms-pr">
    <h1 class="ms-core-pageTitle">
    </h1>
    <div>
    </div>
    </div>
    <div id="ms-error">
    <div id="ms-error-top">
    </div>
    <div id="ms-error-content">
    <div id="ms-error-error-content">
    <div id="DeltaPlaceHolderMain">
    <div>
    <span>
    <div id="ctl00_PlaceHolderMain_PanelSettingsOrReturnLink">
    <a id="ctl00_PlaceHolderMain_HLinkSettingsEditorPage" class="ms-descriptiontext" href="http://mysitess.nomura.com:80/_layouts/15/EditProfile.aspx?UserSettingsProvider=234bf0ed%2D70db%2D4158%2Da332%2D4dfd683b4148&amp;ReturnUrl=http%3A%2F%2Friskpoints%2Enomura%2Ecom%2Fsites%2Frpg%2FWebResources%2FMay28%2FTestTree%2Easpx">Edit user settings</a>
    <br/>
    <a id="ctl00_PlaceHolderMain_HLinkSettingsPreviousPage" class="ms-descriptiontext" href="javascript:OnPreviousPageClicked(&quot;http:\u002f\u002friskpoints.nomura.com\u002fsites\u002frpg\u002fWebResources\u002fMay28\u002fTestTree.aspx&quot;);">Return to original page.</a>
    </div>
    </span>
    </div>
    </div>
    </div>
    <div id="ms-error-gobackcont" class="ms-calloutLink">
    <a href="/sites/rpg" class='ms-calloutLink' id="ctl00_PlaceHolderGoBackLink_idSimpleGoBackToHome">Go back to site</a>
    </div>
    </div>
    </div>
    <script type="text/javascript">
    //<![CDATA[
    var _fV4UI = true;var g_MinimalDownload = true;var g_WebServerRelativeUrl = "/sites/rpg";var _spFullDownloadList = ['closeconnection', 'download', 'signout', 'xlviewer', 'wordviewer', 'wordeditor', 'powerpoint', 'powerpointframe', 'onenote', 'visiowebaccess', 'storefront', 'wopiframe', 'appredirect', 'wfstart'];
    //]]>
    </script>
    </form>
    </body>
    </html>
    Any help is appreciated. 
    thanks,
    Saurabh

    Hi,
    Would you mind providing the original version of your custom .aspx page? Can you just copy the content while open in SharePoint Designer and paste in a notepad?
    Thanks
    Patrick Liang
    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]
    Patrick Liang
    TechNet Community Support

  • Downloading Excel file shows increase in file size

    Hi,
    I have a XLS file, available in my SharePoint site.
    When i Click on the file, I get the "Open", "Save" and "Save As option". On top of this, I can see the file size which shows as "400kb".
    When I click on save and file is download the file size is shown as 900 kb. How does that happen? How is the file size increasing exponentially? How to resolve this?
    Thanks

    This element is true but not necessarily related to just the versions.  All Office documents will retain the list info from which they're downloaded (such as metadata info) as XML.  You could try clearing this data out as a test and then
    re-comparing the file sizes.
    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.

  • IE 9 can't download/open files from https site.

    We have application which runs in IE9 using https:\\
    IE 9 can't download/open files from https site.
    Please help....
    error1-
    Microsoft Excel - could not open 'https:\\.......\viewxlsformatshow.xls'
    error2-
    Microsoft Excel - Microsoft Excel cannot access the file 'https:\\.......\viewxlsformatshow.xls'. There are several possible reason:
        -The file name or path does not exist.
        - the file is being used by another program.
         - the workbook you are trying to save has the same  name as a currently open workbook.

    Hi,
    Have you tried to use "HTTP"?
    Have you the correct office program installed on your computer?
    Could you provide the corresponding credential to access them?
    If so, please make sure you have the proper right.
    Please let other user try to download(not open) the resource to confirm the original resource is without problem.
    After that, refer to the following article to change the settings:
    Error message when you download files by using Internet Explorer 9 from secure websites: "<filename> couldn’t be downloaded"
    http://support.microsoft.com/en-us/kb/2549423
    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]

Maybe you are looking for

  • Report missing some data from dataset

    Hi I populate my report using a dataset and most of the time the report generation is successful. but after a while (3-5 reports) I start getting missing data in the report. Either the png blobs do not get printed or some other string fields. Usually

  • HOW TO DISBALE A PARTICULAR OPTION IN MENU

    Hi , I need to disable an activity in a particular screen in Project System module . I want to disable the Create(F7) option in the DropDown list . Is there any way  to do that ? Can it be done in authorization level ? Please help me , as it is urjen

  • Setting Initial Values in Sharpening Panel

    I have found that one of the reasons that LR3 Process 2010 sharpening seems to be a problem is that the initial values in the Sharpening panel in Develop has a setting of 50 for Detail. Aside from the fact that the Detail adjustment isn't even availa

  • In nokia C7 integrated GPS option not found in pos...

    In nokia C7 integrated GPS option not found in positioning method Attachments: Scr000001.jpg ‏14 KB

  • How to start agent.sh in ackground mode?

    Hi All, We are using Metadata Navigator which requires agent.sh to be run in Xming. This is not possible as during backup all the processes are killed. We are trying to explore the possibility if the agent.sh can be run in background mode via a scrip