提问者:小点点

Symfony随机崩溃-调试类加载器。php


我有一个基于symfony框架的网站,但在开发环境中,我有随机崩溃,例外情况是:(有坏字符)

警告:class_实现():class���� 不存在,无法加载

或者

警告:class_implements():类H d不存在,无法加载

或者

DebugClassLoader中的ContextErrorException。php第203行:
警告:class_implements():类多部分/表单数据不存在,无法加载

(php未使用symfony表单,请求为GET)

或者

DebugClassLoader中的OutOfMemoryException。php第203行:
错误:允许的内存大小134217728字节已用尽(尝试分配1141972672字节)

(内存限制设置为128MB,但请求需要约6MB)

所有这些不同的异常都是在一个带有相同参数的url上抛出的(出于测试目的),所以它们在整个web上随机抛出。

这个错误不是在生产环境中才发展出来的。

开发环境在带有XAMPP/apache的windows 7计算机上。

如果我restrat apache并按F5一切都好,网络工作正常。

我试图清除所有缓存,但没有成功。

有什么想法吗?

编辑:

激活OPCache后,问题仍然存在...

如果我运行命令php bin/symfony_requirements从CLI

> PHP is using the following php.ini file:
  C:\xampp7.0.9\php\php.ini

> Checking Symfony requirements:
  ...........................WW.......


 [OK]
 Your system is ready to run Symfony projects


Optional recommendations to improve your setup
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

 * intl extension should be available
   > Install and enable the intl extension (used for validators).

 * a PHP accelerator should be installed
   > Install and/or enable a PHP accelerator (highly recommended).


Note  The command console could use a different php.ini file
~~~~  than the one used with your web server. To be on the
      safe side, please check the requirements from your web
      server using the web/config.php script.


共1个答案

匿名用户

我对“警告:类\实现():类”也有同样的问题���� 不存在,无法加载“

我在php.ini增加了realpath_cache_size,现在apache工作,没有错误。