简体   繁体   English

symfony2:生产服务器上的ContextErrorException“用于反序列化的错误数据格式”

[英]symfony2: ContextErrorException on production server “Erroneous data format for unserializing”

I want to deploy symfony2 application. 我想部署symfony2应用程序。 On localhost works perfect, the only difference my web directory is in public_html, but when I installed on my prod server, after register some user, the exception has been thrown. 在localhost上运行完美,我的Web目录唯一的区别是在public_html中,但是当我在产品服务器上安装时,注册了一些用户后,抛出了异常。 Looks like unserializing can't decode, my entity "0:{}": 看起来无法序列化无法解码,我的实体“ 0:{}”:

ContextErrorException: Warning: Erroneous data format for unserializing 'CodeCats\PanelBundle\Entity\User' in /home/progress/domains/progress-checker.pl/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php line 869

    in /home/progress/domains/progress-checker.pl/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php line 869
    at ErrorHandler->handle('2', 'Erroneous data format for unserializing 'CodeCats\PanelBundle\Entity\User'', '/home/progress/domains/progress-checker.pl/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php', '869', array())
    at unserialize('O:32:"CodeCats\PanelBundle\Entity\User":0:{}') in /home/progress/domains/progress-checker.pl/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php line 869
    at ClassMetadataInfo->newInstance() in /home/progress/domains/progress-checker.pl/vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php line 2444
    at UnitOfWork->newInstance(object(ClassMetadata)) in /home/progress/domains/progress-checker.pl/vendor/doctrine/orm/lib/Doctrine/ORM/UnitOfWork.php line 2546
    at UnitOfWork->createEntity('CodeCats\PanelBundle\Entity\User', array('id' => '1', 'username' => 'tomek11', 'email' => 'tomek11@gmail.com', 'password' => '2f5e325c351294588e238389d1cc86a39a0c58f2', 'grade' => 'USER', 'avatar_id' => null, 'companyEmail_id' => null), array()) in /home/progress/domains/progress-checker.pl/vendor/doctrine/orm/lib/Doctrine/ORM/Internal/Hydration/SimpleObjectHydrator.php line 132
    at SimpleObjectHydrator->hydrateRowData(array('id1' => '1', 'username2' => 'tomek11', 'email3' => 'tomek11@gmail.com', 'password4' => '2f5e325c351294588e238389d1cc86a39a0c58f2', 'grade5' => 'USER', 'avatar_id6' => null, 'companyEmail_id7' => null), array('id1' => array('name' => 'id', 'type' => 'integer'), 'username2' => array('name' => 'username', 'type' => 'string'), 'email3' => array('name' => 'email', 'type' => 'string'), 'password4' => array('name' => 'password', 'type' => 'string'), 'grade5' => array('name' => 'grade', 'type' => 'string'), 'avatar_id6' => array('name' => 'avatar_id', 'type' => 'integer'), 'companyEmail_id7' => array('name' => 'companyEmail_id', 'type' => 'integer')), array()) in /home/progress/domains/progress-checker.pl/vendor/doctrine/orm/lib/Doctrine/ORM/Internal/Hydration/SimpleObjectHydrator.php line 48

Additional info: The magic gpc in turned on. 附加信息:魔术gpc已打开。

Update my check.php result: 更新我的check.php结果:

** Mandatory requirements **

 OK       PHP version must be at least 5.3.3 (5.4.29 installed)
 OK       PHP version must not be 5.3.16 as Symfony won't work properly with it
 OK       Vendor libraries must be installed
 OK       app/cache/ directory must be writable
 OK       app/logs/ directory must be writable
 OK       date.timezone setting must be set
 OK       Configured default timezone "Europe/Warsaw" must be supported by your installation of PHP
 OK       json_encode() must be available
 OK       session_start() must be available
 OK       ctype_alpha() must be available
 OK       token_get_all() must be available
 OK       simplexml_import_dom() must be available
 OK       detect_unicode must be disabled in php.ini
 OK       PCRE extension must be available

** Optional recommendations **

 OK       Requirements file should be up-to-date
 OK       You should use at least PHP 5.3.4 due to PHP bug #52083 in earlier versions
 OK       When using annotations you should have at least PHP 5.3.8 due to PHP bug #55156
 OK       You should not use PHP 5.4.0 due to the PHP bug #61453
 OK       When using the logout handler from the Symfony Security Component, you should have at least PHP 5.4.11 due to PHP bug #63379 (as a workaround, you can also set invalidate_session to false in the security logout handler configuration)
 OK       You should use PHP 5.3.18+ or PHP 5.4.8+ to always get nice error messages for fatal errors in the development environment due to PHP bug #61767/#60909
 OK       PCRE extension should be at least version 8.0 (8.32 installed)
 OK       PHP-XML module should be installed
 OK       mb_strlen() should be available
 OK       iconv() should be available
 OK       utf8_decode() should be available
 WARNING  posix_isatty() should be available
          Install and enable the php_posix extension (used to colorize the CLI output).

 OK       intl extension should be available
 OK       intl extension should be correctly configured
 OK       intl ICU version should be at least 4+
 WARNING  a PHP accelerator should be installed
          Install and enable a PHP accelerator like APC (highly recommended).

 WARNING  short_open_tag should be disabled in php.ini
          Set short_open_tag to off in php.ini*.

 OK       magic_quotes_gpc should be disabled in php.ini
 OK       register_globals should be disabled in php.ini
 OK       session.auto_start should be disabled in php.ini
 OK       PDO should be installed
 OK       PDO should have some drivers installed (currently available: mysql, pgsql, sqlite)

For those still coming across this issue, updating the doctrine/orm dependency worked. 对于仍然遇到此问题的人员,更新理论/规范依赖项是可行的。

My new doctrine dependency line in composer.json: "doctrine/orm": ">=2.2.3,<2.5", 我在composer.json中新的教义依赖行:“ doctrine / orm”:“> = 2.2.3,<2.5”,

Then I updated composer as per usual from the command line: php composer.phar update 然后我像往常一样从命令行更新了作曲家:php composer.phar update

Since it's the top Google result for this error I'll just paste the dirty quick fix here to get you going more easily. 由于它是此错误的最高Google结果,因此我将在此处粘贴快速修复程序,以使您更轻松地进行操作。

Note: In nearly every case you shouldn't modify any vendor files like this. 注意:几乎在每种情况下, 您都不应修改任何供应商文件。 However, if you have some dependency problem which couldn't be solved for some reason here's the trick for you. 但是,如果您遇到某些因某些原因而无法解决的依赖关系问题,那么这就是您的窍门。

This is a Doctrine error, so you should modify the Doctrine ORM bundle a bit. 这是一个Doctrine错误,因此您应该稍微修改Doctrine ORM软件包。

Add your PHP_VERSION_ID to the newInstance() function in 将您的PHP_VERSION_ID添加到newInstance()函数中

/vendor/doctrine/orm/lib/Doctrine/ORM/Mapping/ClassMetadataInfo.php

The final result looks like this for me: 最终结果对我来说是这样的:

public function newInstance()
{
    // echo PHP_VERSION_ID; die();  // Uncomment this, in case you don't know your PHP_VERSION_ID
    if ($this->_prototype === null) {
        if (PHP_VERSION_ID === 50429 || PHP_VERSION_ID === 50513 || PHP_VERSION_ID === 50603 || PHP_VERSION_ID === 70009) { // This is the tricky line
            $this->_prototype = $this->reflClass->newInstanceWithoutConstructor();
        } else {
            $this->_prototype = unserialize(sprintf('O:%d:"%s":0:{}', strlen($this->name), $this->name));
        }
    }

    return clone $this->_prototype;
}

The original solution can be found here: https://github.com/symfony/symfony/issues/11056 原始解决方案可以在这里找到: https : //github.com/symfony/symfony/issues/11056

I had the same issue. 我遇到过同样的问题。 I solved it by updating "doctrine/orm" package in Composer.json to "~2.4" version and then running: 我通过将Composer.json中的“ doctrine / orm”包更新为“〜2.4 版本并运行来解决了该问题:
composer update doctrine/orm 作曲家更新学说/规范
from the command line. 从命令行。 This should only update the concerned package. 这仅应更新有关的软件包。 After this refreshing the webpage and/or logging in again and the error was gone. 在刷新网页和/或再次登录之后,错误消失了。
Hope this helps. 希望这可以帮助。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 symfony2“用于错误序列化用户实体的错误数据格式”(FOS UserBundle) - symfony2 “Erroneous data format for unserializing user entity” (FOS UserBundle) Laravel 错误:用于反序列化“Symfony\Component\Routing\CompiledRoute”的错误数据格式 - Laravel Error: Erroneous data format for unserializing 'Symfony\Component\Routing\CompiledRoute' Symfony2 Faker填充ContextErrorException - Symfony2 Faker Populate ContextErrorException 从Symfony2捕获ContextErrorException - Catch ContextErrorException from Symfony2 Symfony2 ContextErrorException:警告:filemtime():stat失败 - Symfony2 ContextErrorException: Warning: filemtime(): stat failed 自定义身份验证提供程序中的Symfony2 ContextErrorException - Symfony2 ContextErrorException in Custom Authentication Provider Vagrant + Symfony2环境ContextErrorException怪异 - Vagrant + Symfony2 Environment ContextErrorException Weirdness symfony2 CLI [Symfony \\ Component \\ Debug \\ Exception \\ ContextErrorException] - symfony2 CLI [Symfony\Component\Debug\Exception\ContextErrorException] Symfony在远程服务器上部署项目ContextErrorException - Symfony Deploying Project on Distant Server ContextErrorException 将应用程序上载到共享主机后,Symfony2会抛出ContextErrorException - Symfony2 throws ContextErrorException after uploading the application to shared host
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM