To enable SharePoint portal/site for Smartphones, It requires the Administrator to turn off the WAP interface.
Below are the steps to do so.
- Modify the web.config in the root of the web app
- Add three lines of code that set all browsers to not be redirected
- Does not allow for browsers to be handled individually
- File is on the server in C:\Inetpub\wwwroot\wss\VirtualDirectories\PORT\bin folder of your SharePoint site, where PORT is the port of your site
- Add this section right before the close tag: </system.web>
<browserCaps>
<result type="System.Web.Mobile.MobileCapabilities, System.Web.Mobile, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a"/>
<filter>isMobileDevice=false</filter>
</browserCaps>
No comments:
Post a Comment