Whenever you rebuild your model, you have to loose your old data in Symfony. You will need to rebuild model whenever you change or add something new to your schema. If you are learning Symfony then you may not bother to loose data and may not feel too much for… READ MORE
You can very easily assign file extension of your choice to pages in Symfony framework. Go to your modules’s ./config/settings.xml file and assign page extension of your choice. If settings.yml page is not available then create it.
prod:
.settings:
no_script_name: off
suffix: .html
dev:
.settings:
error_reporting: 4095
web_debug: on
no_script_name:… READ MORE
For adding any template page in symfony, add your template to apps/appName/modules/urModule/templates/ dir. Name it like listSuccess.php. Now for accessing this page from browser, you need to associate this page from an action. Define an action for this page. As you named your page like listSuccess.php, you need to create… READ MORE
Symfony Framework is riding on popularity chart. Yahoo has used symfony for their bookmark project.
Symfony framework is very helpful in development of big web 2.0 websites. It provides various facilities:
* simple templating and helpers* cache management* smart URLs (Search Engine Friendly)* scaffolding* multilingualism and I18N support* object model… READ MORE