Consider the following scenario. You use Windows Internet Explorer 7 to browse to a Microsoft Windows SharePoint Services 3.0 site or to a Microsoft Office SharePoint Server 2007 site. The SharePoint site is located in the Internet zone. Additionally, the SharePoint site has online presence enabled. When you browse to the SharePoint site, you receive the following message in the Information bar in Internet Explorer 7:
The Web site wants to run the following add-on: 'Name ActiveX Control' from 'Microsoft Corporation'. If you trust the Web site and the add-on and want to allow it to run, click here...
This issue occurs if the Name ActiveX control (Name.dll) is not added to the list of preapproved controls in Internet Explorer 7. The Name ActiveX control is included in the 2007 Microsoft Office system.
To work around this issue, use one of the following methods, as appropriate for your situation.
Method 1: Add the SharePoint site to the Trusted Sites list in Internet Explorer 7 on the Windows client computer
Add the SharePoint site to the Trusted Sites in Internet Explorer 7 on the Microsoft Windows client computer. To do this, follow these steps:
- Start Internet Explorer 7.
- On the Tools menu, click Internet Options, and then click the Security tab.
- Click Trusted sites, and then click Sites.
- In the Trusted sites dialog box, type the URL of the SharePoint site in the Add this website to the zone box, and then click Add.
- Click Close, and then click OK.
Method 2: Configure the master page of the SharePoint site on the front-end Web server
If the SharePoint site does not require online presence, configure the master page of the SharePoint site to use the InitNoPresence.js file. To do this, follow these steps:
- Create the InitNoPresence.js file. To do this, follow these steps:
- Copy the contents of the Init.js file to the InitNoPresence.js file on the front-end Web server.
Note The Init.js file is located in the Drive:\Program Files\Common Files\Microsoft Shared\Web server extensions\12\Template\Layouts\1033 folder. - Start Notepad, and then open the InitNoPresence.js file.
- In the InitNoPresence.js file, locate the following line of code.
function ProcessImn()
{
if (EnsureIMNControl() && IMNControlObj.PresenceEnabled)
{
imnElems=document.getElementsByName("imnmark");
imnElemsCount=imnElems.length;
ProcessImnMarkers();
}
}
function ProcessImnMarkers()
{
for (i=0;i<imnMarkerBatchSize;++i)
{
if (imnCount==imnElemsCount)
return;
IMNRC(imnElems[imnCount].sip,imnElems[imnCount]);
imnCount++;
}
setTimeout("ProcessImnMarkers()",imnMarkerBatchDelay);
} - In the InitNoPresence.js file, replace the code that you located in step 1c with the following line of code.
//function ProcessImn()
{
if (EnsureIMNControl() && IMNControlObj.PresenceEnabled)
{
imnElems=document.getElementsByName("imnmark");
imnElemsCount=imnElems.length;
ProcessImnMarkers();
}
}
//function ProcessImnMarkers()
{
for (i=0;i<imnMarkerBatchSize;++i)
{
if (imnCount==imnElemsCount)
return;
IMNRC(imnElems[imnCount].sip,imnElems[imnCount]);
imnCount++;
}
setTimeout("ProcessImnMarkers()",imnMarkerBatchDelay);
}
- Configure the master page of the SharePoint site to use the InitNoPresence.js file. To do this, follow these steps:
- Start Microsoft Office SharePoint Designer 2007. Then, open the master page for the SharePoint site.
- In the master page, locate the following line of code.
<SharePoint:ScriptLink language="javascript" name="init.js" runat="server"/>
- Replace the line that you located in the step 2b with the following line of code.
<SharePoint:ScriptLink language="javascript" name="initNoPresence.js" runat="server"/>
Note In some cases, the problem is not solved when you create the custom InitNoPresence.js file. If this solution does not work, make the changes directly in the Init.js file. Before you do this, make a backup copy of Init.js in case a hotfix overrides the Init.js file.