i'm installing symfony project on pc having same specifications yet has been giving me following error whenever i'm running app in dev environment:
authentication request not processed due system problem.
i thought clearing cache solve everything. tried suggested process might solve problem here. yet it's still same. cleared cache(console , manual), created new user running command:
php app\console fos:user:create testuser test@example.com p@ssw0rd
and these:
php app\console doctrine:schema:update --force
php app\console doctrine:schema:update --dump-sql
what else think should do?
add-ons
when run prod environment, receive following errors , warnings:
warning: erroneous data format unserializing 'matrix\matrixuserbundle\entity\user' in c:\xampp\htdocs\tracker\vendor\doctrine\orm\lib\doctrine\orm\mapping\classmetadatainfo.php on line 869
notice: unserialize(): error @ offset 46 of 47 bytes in c:\xampp\htdocs\tracker\vendor\doctrine\orm\lib\doctrine\orm\mapping\classmetadatainfo.php on line 869
fatal error: __clone method called on non-object in c:\xampp\htdocs\tracker\vendor\doctrine\orm\lib\doctrine\orm\mapping\classmetadatainfo.php on line 872
there issue upgrading php 5.6 breaks unserialize
function. encountered using jmsserializerbundle in symfony. fixed in current master of jmsserializerbundle fixed problem changing composer.json use
"jms/serializer-bundle": "dev-master"
it may updating doctrine version use master in composer.json mentioned here: