Error en Wordpress: Allocation of JIT memory failed, PCRE JIT will be disabled. This is likely caused by security restrictions. Either grant PHP permission to allocate executable memory, or set pcre.jit=0
Este error me aparecía en un sitio web WordPress, instalado en un servidor web local montado con XAMPP.
La solución es sencilla:
Abrir el archivo "php.ini", en mi caso, la ruta es: Applications/XAMPP/xamppfiles/etc/php.ini
En la linea 1077, está el código de configuración de la librería [Pcre].
En esta sección hay que añadir esta linea de código:
pcre.jit=0
Guardar los cambios y reiniciar Apache Web Server.
![el $cfg['tempdir'] (./tmp/) es inaccesible. el $cfg['tempdir'] (./tmp/) es inaccesible](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgJlvXt75aVrAGybDkLCjCBXo-J0hnhWYc_9I9gQeV3GdRMs941GNV7jR6pUPL8VuCmrUZmAjPkFiRsJlsD4sZvgnILdm0GHiI8qHNFCoeiGHLTujhyFvkgxrnvuOhaVLRAqwUusPC73fw/w320-h238/Captura+de+pantalla+2018-07-28+a+las+6.12.42.png)
