I'm trying to install Symfony CMF with mysql database. Can somebody tell me step after step how to do it ? I've already downloaded project and i'm trying to migrate to mysql from sqlite but i don't know how.
Asked
Active
Viewed 731 times
2 Answers
4
There is a tutorial in the doc: http://symfony.com/doc/master/cmf/cookbook/editions/cmf_sandbox.html . look into the file app/config/phpcr.yml that you create in the configuration step.

dbu
- 1,497
- 9
- 8
-
thanks , that helped ;) You need also to enable extension intl in xampp :) – woj_jas Jul 27 '14 at 21:27
3
The database is configured in app/config/parameters.yml. you will have to modify that file to use MySQL. you will then also have to reinitialize the database etc. note if you want to migrate the data from the sqlite install you should export your data to xml before you switch to mysql using app/console doctrine:phpcr:workspace:export /cms

Lukas Kahwe Smith
- 626
- 4
- 11