If your receiving the error “The current node list is empty” while using Behat, then likely your project is returning an HTTP 500 error. This
Using Behat i needed to be able to set a date in a form (x) number of days from the current date. This however is
While needing to write a test to check the order of 2 items (within a given CSS query) in Behat, I did a little googling
So i had to implement a mechanism to re-order Categories and also Boards for my forum bundle, and with though there are many ways to
If you are using validation groups and have created a custom validator, you will want to use it in your validation group, however its a
I needing to setup a staging environment that more or less emulates the platform of your deployment system, i needed to setup a LAMP stack
So i had an issue that i am still somewhat unsure of the cause, though i suspect the culprit was an upgrade to a newer
Quick cheat sheet for referencing. Tags are a way to bookmark a particular version of your git repository for future referencing. Use them to bookmark
Following a discussion on the IRC room from someone who viewed my post about login/logout handlers in SF2, i wanted to clarify that when dealing
1) create a branch. $ git checkout -b feature/newFeature 2) add new files and commit. $ git add ./* $ git commit -a 3) push