Category / Tools & Frameworks

Doctrine DBAL with Symfony2

Featured Image

I regularly use Doctrine ORM for database operations in my Symfony2 project, but there was one situation that I had to write database importer from SQLITE database into projects Mysql …

3

Symfony2 writing data-fixtures

Featured Image

In last article about fixtures I wrote about manual setup for using data-fixtures with your Symfony2 project. Now it’s time to write first data fixture.

3

Symfony2 CLI

Featured Image

As someone of you know there is pretty good feature made in Symfony2 that is worth to mention: Console interface with commands that make our life easier to generate different …

5

Symfony2 data fixtures setup

Featured Image

First time I was wondering: what will I do with this? Do I need data fixtures? When started project, soon I realized that fixtures is a must in my project.

9

TWIG with WordPress part1

Featured Image

Making TWIG autoload from WP plugin Maybe someone will say: this is a crazy idea. Why would someone want to do that? Maybe it really is crazy, but I would …

0

Parsing Amazon affiliate links in WordPress

Featured Image

Recently my team had problem with Amazon affiliate links on our web site. On the web, we have wordpress installation and inside main content of web page we have some …

1

Symfony2 – Internal server error 500

Featured Image

Did you ever had problems with Internal server error 500 with symfony2? I did few days ago. When I open my web application in development mode (http://mysymfony2url/app_dev.php/something) It works OK, …

1

Symfony2 Doctrine2 transactions

Featured Image

Like everything else, using transactions in Symfony2 is easy task. I had a case that I had to use transactions to make sure that everything or none is saved to …

8

Symfony2 Forms – Entity field type

Featured Image

NOTE: Tested on Symfony2 Beta3. Might not work on later releases! Symfony2 offers many prebuilt field types for using when creating forms. The one of them I found interesting is …

22

Symfony2 from beta1 to beta2

Featured Image

Today I had to migrate existing project from Symfony2 Beta 1 version to Beta2. First I looked at the difference between my config files and new one provided with Beta2.

2