提问者:小点点

JIT编译失败:没有更多的内存til.php#1425preg_replace


我正在尝试离线构建一个站点,并且已经登录,打算创建一个子主题,但是出现了一些错误。

我尝试在php.ini中添加以下行:"pcre.jit=0"

这是显示的错误:

JIT编译失败:没有更多的内存til.php#1425preg_replace

回溯

./库/类/Util.php#1425:preg_replace(string'/\.?0$/', string", string'48.0', ) ./库/类/Util.php#1295: PhpMyAdmin\Util::formatNumber(双48.0,整数5,整数1,布尔值true,).\util::formatByteDown(双48.0,整数3,整数1,)。/库/类/控制器/数据库/数据库结构ontroller.php#1006: PhpMyAdmin\控制器\数据库\数据库结构控件-


共1个答案

匿名用户

如果您使用MAMP,您应该找到"$YourMampDir/php/etc/php.ini"文件。打开它,并寻求:

; Enables or disables JIT compilation of patterns. This requires the PCRE
; library to be compiled with JIT support.
; pcre.jit=1

您应该将其编辑为:

; Enables or disables JIT compilation of patterns. This requires the PCRE
; library to be compiled with JIT support.
pcre.jit=0

不要忘记重新加载Apache Web Server。之后,错误应该就没有了。