Stefanie Ostrowski
Stefanie Ostrowski
Hi - I have the same issue. Has anyone found a workaround?
Hi -- I solved this problem by updating the file ekino-wordpress-symfony/core.php: replace ``` require_once sprintf('%s/app/bootstrap.php.cache', WP_SYMFONY_PATH); ``` with ``` require sprintf('%s/app/autoload.php', WP_SYMFONY_PATH); include_once sprintf('%s/app/bootstrap.php.cache', WP_SYMFONY_PATH); ```
Hi -- I'm having the same problem. Has anyone found a workaround other than using a different entity manager? When I use a different entity manager, I am unable to...
Update: I can get around this issue a bit by including just the Users entity in my symfony entity manager by moving User.orm.xml and UserMeta.orm.xml to endor/ekino/wordpress-bundle/Resources/config/doctrine/user/ and updating my...