FAST Search Links Missing from FAST Search Center
If you create a FAST Search Center based on the FAST Search Center Site Collection template, you may find that the FAST Search links are missing within the "Site Collection Settings" in Site Settings. If this is the case, you need to fire up PowerShell and add the SearchExtensions feature to the site collection using the following code (from Neil Richards at http://www.neilrichards.net/blog/?p=149):
PS C:\Users\Administrator> Get-SPFeature | ? { $_.id -eq "5EAC763D-FBF5-4d6f-A76B-EDED7DD7B0A5" }
Result:
DisplayName Id Scope
----------- -- -----
SearchExtensions 5eac763d-fbf5-4d6f-a76b-eded7dd7b0a5 Site
PS C:\Users\Administrator> $siteWithNoFastFeatures = get-SPSite http://your SP SITE NAME FOR FAST COLLECTION (ADD UR OWN url)
PS C:\Users\Administrator> $siteWithNoFastFeatures.Features.Add("5EAC763D-FBF5-4d6f-A76B-EDED7DD7B0A5")
Result:
DefinitionId : 5eac763d-fbf5-4d6f-a76b-eded7dd7b0a5
Parent : SPSite Url=http:// SP FAST NAME (ur OWN url)
Properties : {}
Definition : SPFeatureDefinition Name=FeatureDefinition/5eac763d-fbf5-4d6f-a76b-eded7dd7b0a5
Version : 14.0.0.0
FeatureDefinitionScope : Farm