Git
Temel Linux Terminal Komutları
Bash
Windows Terminal
Sql Local Db
############################### | |
# Core EditorConfig Options # | |
############################### | |
root = true | |
# All files | |
[*] | |
indent_style = space |
this configuration section cannot be used at this path. this happens when the section is locked at a parent level. locking is either by default (overridemodedefault="deny"), or set explicitly by a location tag with overridemode="deny" or the legacy allowoverride="false".
Goto : C:\Windows\System32\inetsrv\config
Open : applicationHost.config
Find : <section name="modules" allowDefinition="MachineToApplication" overrideModeDefault="Deny" />
Replace : <section name="modules" allowDefinition="MachineToApplication" overrideModeDefault="Allow" />
If u are getting below error while indexing:
{
"error": {
"root_cause": [
{
"type": "cluster_block_exception",
"reason": "blocked by: [FORBIDDEN/12/index read-only / allow delete (api)];"
}
| https://stackoverflow.com/questions/64604872/elasticsearch-index-red-status
curl -XPOST 'localhost:9200/_cluster/reroute?retry_failed'
(function(document, EventTarget) { | |
var elementProto = window.Element.prototype, | |
matchesFn = elementProto.matches; | |
/* Check various vendor-prefixed versions of Element.matches */ | |
if(!matchesFn) { | |
['webkit', 'ms', 'moz'].some(function(prefix) { | |
var prefixedFn = prefix + 'MatchesSelector'; | |
if(elementProto.hasOwnProperty(prefixedFn)) { | |
matchesFn = elementProto[prefixedFn]; |