Posts

Showing posts from May, 2015

IE 11 Problems: Open with Explorer for a Document Library in SharePoint 2010

Got this error: Your client does not support opening this list with Windows Exploer Causes http://sharepoint.stackexchange.com/questions/15098/your-client-does-not-support-opening-this-list-with-windows-explorer Enable the WebClient service in Windows (if you're using a Windows Server environment, you need to enable the Desktop Experience feature of Windows Server)  Add the website to the Trusted Sites list in Internet Explorer  Make sure that you're using a 32 bit version of Internet Explorer - Windows Explorer mode isn't supported in the 64 bit versions of the browser. OK after enabling Desktop Experience feature of Windows 2008 Server,. A great article regarding the bitness of IE: Q&A: 64-Bit Internet Explorer http://blogs.msdn.com/b/ieinternals/archive/2009/05/29/q-a-64-bit-internet-explorer.aspx If still not working, please try using command prompt net use y: http://www.mydomain.com

Getting Detailed Error Info in IIS 7

Server Error in '/' Application. Runtime Error Description: An application error occurred on the server. The current custom error settings for this application prevent the details of the application error from being viewed. Details: To enable the details of this specific error message to be viewable on the local server machine, please create a <customErrors> tag within a "web.config" configuration file located in the root directory of the current web application. This <customErrors> tag should then have its "mode" attribute set to "RemoteOnly". To enable the details to be viewable on remote machines, please set "mode" to "Off". <!-- Web.Config Configuration File --> <configuration> <system.web> <customErrors mode="RemoteOnly"/> </system.web> </configuration> N