The Telligent Community Mobile Installation Guide contains everything you need to install Telligent Community Mobile for your community: requirements, supported browsers, instructions to configure the mobile site, and instructions to configure your base Telligent Community site. It also contains basic troubleshooting instructions if you have trouble getting your mobile site to work.
Telligent Community Mobile 2.0 and later support Windows Mobile 7.
Installing the Telligent Community Mobile Web application
The Web application is an ASP.NET MVC application that utilizes the Web services of a Telligent Community site to create a mobile-friendly Web application with the most-used services of the site.
This section contains site requirements and installation instructions.
Requirements
- A working Telligent Community site
- IIS 6.0+
- ASP.NET MVC 2 for Telligent Community Mobile 1.0, or MVC 3 for Telligent Community Mobile 2.0 and 7.0
- Ability to create a new application or Web site on the Web server
- Access to an administrator account to the Telligent Community site
- Working installation of Solr search service (part of Telligent Community)
- Forms or Windows Authentication for Telligent Community Mobile 2.0 and below. You can utilize an SSO module or custom Cookie Authentication with Telligent Community Mobile 7.0.
Supported and tested clients (browsers)
The following browsers are supported for Telligent Community Mobile:
May work, but not officially supported in this release
Telligent Community Mobile has been designed to work with any touch-enabled Webkit-based browser. Additional browsers and example devices in this category would include:
In order to configure these devices to work, you will need to edit the mobile configuration to redirect these browsers to the mobile site. Otherwise, the desktop version of the site will attempt to load.
If installing Telligent Community Mobile into a sub-directory, settings may be inherited from your parent application's web.config which cause a web.config error when you run your site. In such cases, you will have to add <clear /> or <remove /> elements in your community mobile site web.config file to remove the additions made in your parent web.config.
Installation instructions
This section contains instructions for setting up the Telligent Community Mobile Web site and configuring it, as well as configuring the base Telligent Community site associated with your mobile site.
Setting up and configuring the Telligent Community Mobile Web site
Telligent Community Mobile 1.0 requires ASP.NET 2.0 or higher. Telligent Community Mobile 2.0 or 7.0 require ASP.NET 4.0 or higher. The proper ASP.NET version must be installed on your Web server.
- Obtain the full installation package from Telligent Support. (This package also contains the Telligent Community Mobile installation.)
- Open the Extensions folder.
- Open the TelligentCommunityMobile folder.
- Expand the zip file to a directory on your Web server.
- The /web directory from the ZIP file contains the files for the mobile application. Grant the Web site service account Read & Execute permissions to that directory.

- Open the IIS Management panel to set up the mobile Web application inside IIS.
- We recommend installing the Telligent Community Mobile site as an application underneath your Telligent Community main site, although this is not absolutely necessary. To do this:
- Right-click your Telligent Community Web site in IIS and select Add Application.

- Create an alias for your Telligent Community Mobile application site and point the new application toward the /web directory that you previously unzipped. The alias will be used to create the path. (For example, if you enter mobile, the path to the mobile site will be http://<yourTelligentSite.com>/mobile.)

If you elected to install your Telligent Community Mobile site as a
child site of the Telligent Community site (for example, mobile.mycommunity.com) and you are also running
Web Analytics on your community, you will need to add a remove statement for Web Analytics to your mobile site's
web.config file. Locate the following module and add the highlighted line:
<system.webServer>
<modules runAllManagedModulesForAllRequests="true">
<remove name="Telligent.Evolution" />
<remove name="JavascriptAnalyticsHttpModule" />
</modules>
You need to make this change because the module is already inherited from the community.
Configuring your base Telligent Community site for Telligent Community Mobile
- Create a REST API key for your Telligent Community Mobile site.
- Sign in as an administrator of your Telligent Community site.
- Navigate to Settings > Advanced Options.
- Click the Create and Edit Application Keys link at the bottom of the page.
- Use the form to generate a new API key by entering a label for the key (such as mobile) and click Generate.
- Copy the resulting key that was generated. You will need it later.

- Configure your Telligent Community Mobile site's web.config file to point to the correct Telligent Community site and to use the proper credentials to access the site:
- In the /web directory of the mobile application, open the web.config file in a text editor of your choice.
- In the appSettings section, you might need to edit a few values to correctly set up your site:
- Telligent-Evolution-Rest-Username - Enter the username of the admin user that you used to generate the REST API key.
- Telligent-Evolution-Rest-ApiKey - Enter the API key you previously generated.
- Telligent-Evolution-Rest-Api-Url - Edit the domain area of the URL pointing to your Telligent Community site (i.e., do not remove or modify /api.ashx/v2/).
- Telligent-Evolution-Rest-Authentication (username, password, domain) - Only if your Telligent Community site is using Windows or Basic authentication, you'll need to authenticate past that layer and be able to access the main site.
- Telligent-Evolution-Url - The URL that should be used as the base link to your Telligent Community site. This is typically the URL of your site's home page. (All URLs to the full site created by Telligent Community Mobile will use this URL as a base.)
- Site-Name - The title of the Telligent Community Mobile site.
- Save the changes to your web.config file and close the text editor.
- [Optional] - Install the redirection module that will redirect mobile browsers navigating to your main Telligent Community site to the mobile URL:
- From the Modules directory in your unzip location, merge the communityServer_override.config file with your current communityServer_override.config file for your Telligent Community site. Be sure to update the remoteHandlerUrl property in the override file to point to the domain and location of your Telligent Community Mobile site. (Leave the /content/remote.ashx appended to the base of your mobile URL.)
- Copy TelligentEvolution.Mobile.Modules.dll from the Modules directory in your unzip location to the /bin directory of your Telligent Community site.
Troubleshooting
If you have trouble with your Telligent Community Mobile site and cannot get it to load, first look into the following commonly missed areas:
- Check that the API key and credentials in your mobile site's web.config are correct.
- Ensure that the user who's accessing the REST API (not necessarily an administrator) has the following permissions:
- Site - Impersonate users
- Site - Manage membership
- Ensure that search is working properly on your main site. The Telligent Community Mobile site relies on the search service and will not work properly if search is not working on your main site.
- Ensure that your application pool for the mobile site is running under the same identity that you granted Read & execute permission to your mobile /web directory.
- If you are using IIS6, ensure you have a wildcard mapping to route all requests through ASP.NET.
- Logging support is added with Telligent Community Mobile 7.0 in order to help you debug scenarios where an issue exists in Telligent Community that manifests itself when using Telligent Community Mobile 7.0.