I am having this strange issue with a fresh Symfony 3.0.1 installation. I generated a new CRUD Controller with a Form PostType which contains an url and a title. Nothing fancy.<
In my case it was that the var/sessions/
folder wasn't writable. The default is var/sessions which is set at config.yml.
session:
# http://symfony.com/doc/current/reference/configuration/framework.html#handler-id
handler_id: session.handler.native_file
save_path: "%kernel.root_dir%/../var/sessions/%kernel.environment%"
Make sure you have var/ folders
writable.
chmod 775 -R var/sessions/
chmod 775 -R var/log/
chmod 775 -R var/cache/