Skip to content

Instantly share code, notes, and snippets.

@themattconnolly
themattconnolly / Install-Solr.ps1
Last active August 22, 2019 18:42 — forked from cassidydotdk/Install-Solr.ps1
Install-Solr.ps1
Param(
$installFolder = "c:\solr",
$solrPort = "8721",
$solrHost = "solr",
$solrSSL = $true,
$downloadFolder = "$PSScriptRoot"
)
$solrVersion = "7.2.1"
$solrName = "solr-$solrVersion"
@themattconnolly
themattconnolly / Perficient.MediaTypes.config
Last active September 21, 2018 18:11
Sitecore PDF Open In Same Browser Patch - MediaTypes
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/">
<sitecore>
<settings>
<setting name="Media.EnableRangeRetrievalRequest">
<patch:attribute name="value">false</patch:attribute>
</setting>
<setting name="Media.RequestExtension">
<patch:attribute name="value"></patch:attribute>
</setting>
</settings>