安装了PHP加速器,但symfony 3无法识别它

时间:2016-07-13 18:30:17

标签: php symfony apcu

当我安装symfony时,它推荐我:
安装和/或启用PHP加速器(强烈推荐)。

我根据http://www.ivangabriele.com/php-how-to-install-php-accelerator-in-xampp/

安装了apcu

APCu 安装成功并且phpinfo()显示已启用,但symfony仍然收到此消息:
安装和/或启用PHP加速器(强烈推荐)。

1 个答案:

答案 0 :(得分:0)

感谢您提供@ceejayoz的信息。我想知道你是否有一个链接描述为什么PHP 7.0中的加速器是不必要的,我将不胜感激。

否则Jinx,你可以试试php70u-opcache。这就是我用过的东西:

<?php 
session_start();

if(!isset($_SESSION['auth'])){
    die('Access denied');
}

<html>
<link rel="stylesheet" type="text/css" href="Style.css">
<body>


<h1> Hello User </h1>

<p style="Font-Size:15px;">FitnessCenter can be used to book customers into multiple services<br>
Use the buttons to start using the database 
</p>

</body>
</html>

这是在CentOS上,您可能有不同的Linux发行版,因此命令可能会有所不同。它也可能不是'php70u'。但是当你运行yum install php70u-opcache 时,你将无法获得有关加速器的消息。