This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/"> | |
<sitecore> | |
<api> | |
<services> | |
<configuration type="Sitecore.Services.Infrastructure.Configuration.ServicesConfiguration, Sitecore.Services.Infrastructure"> | |
<allowedControllers hint="list:AddController"> | |
<allowedController desc="WallpaperController">MikeRobbins.WallpaperManager.Controllers.WallpaperController, MikeRobbins.WallpaperManager</allowedController> | |
</allowedControllers> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class RegisterWebApiRoute | |
{ | |
public void Process(PipelineArgs args) | |
{ | |
var config = GlobalConfiguration.Configuration; | |
config.Routes.MapHttpRoute("DefaultApiRoute", | |
"MikeAPI/{controller}/{action}/{id}", | |
new { id = RouteParameter.Optional }); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<location path="sitecore/shell/WebService"> | |
<system.web> | |
<authorization> | |
<allow users="?,*" /> | |
</authorization> | |
</system.web> | |
</location> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE | |
[aspnet_Membership] | |
SET | |
[Password]='qOvF8m8F2IcWMvfOBjJYHmfLABc=', | |
[PasswordSalt]='OM5gu45RQuJ76itRvkSPFw==', | |
[IsApproved] = '1', | |
[IsLockedOut] = '0' | |
WHERE | |
UserId IN ( | |
SELECT UserId FROM dbo.aspnet_Users WHERE UserName = 'sitecore\Admin' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-ChildItem -Path "/sitecore/templates" -Recurse | Where-Object {$_.Fields["{AB162CC0-DC80-4ABF-8871-998EE5D7BA32}"] -like "treelist"} | Show-ListView -Property FullPath, Id | |
Get-ChildItem -Path "/sitecore/templates" -Recurse | Where-Object {$_.Fields["{AB162CC0-DC80-4ABF-8871-998EE5D7BA32}"] -like "multilist"} | Show-ListView -Property FullPath, Id |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-SitecoreConfiguration -Path ".\Solr-SingleDeveloper.json" -SolrPort "8983" -SolrInstallRoot "c:\\solr" -SolrVersion "8.4.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-SitecoreConfiguration -Path ".\Prerequisites.json" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE | |
[aspnet_Membership] | |
SET | |
[Password]='VnPO4iQW2vaVUeMU+WTcMwxTFE90b8mB7eZB065prJf0q2f6up/tMwcO7XK1RsBqBz8q+WZOL4xxJ/SrrApH2Q==', | |
[PasswordSalt]='OM5gu45RQuJ76itRvkSPFw==', | |
[IsApproved] = '1', | |
[IsLockedOut] = '0' | |
WHERE | |
UserId IN ( | |
SELECT UserId FROM dbo.aspnet_Users WHERE UserName = 'sitecore\Admin' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/****** Script for SelectTopNRows command from SSMS ******/ | |
SELECT TOP (1000) [ServerName] | |
,[DatabaseName] | |
FROM [sc10_1_1_Xdb.Collection.ShardMapManager].[__ShardManagement].[ShardsGlobal] | |
/****** Script for SelectTopNRows command from SSMS ******/ | |
SELECT TOP (1000) [ServerName] | |
,[DatabaseName] | |
FROM [sc10_1_1_Xdb.Collection.Shard0].[__ShardManagement].[ShardsLocal] | |
/****** Script for SelectTopNRows command from SSMS ******/ | |
SELECT TOP (1000) [ServerName] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Install-SitecoreConfiguration -Path ".\Solr-SingleDeveloper.json" -SolrPort "8983" -SolrInstallRoot "c:\\solr" -SolrVersion "8.8.2" |
OlderNewer