Blogging
After a small amount of deliberation I've decided to put the latest version of my personal blog live again. You may notice a change in the front-end which I initially started work on over a year ago! The blog is the same as before, in that it is a custom built web application using my own MVC components together with Smarty but in the latest version the inner dependencies are managed using Composer. These components are still in the pre-release stages of development but watch this space.
Getting current action from view component in symfony
$action =
$this->getContext()->getActionStack()
->getLastEntry()->getActionInstance();
$action->redirect(''); // etc
Serving multiple Symfony apps from one project with one vhost
I have created this simple three step approach for a Symfony project to switch application contexts while respecting the desire to have a global project-wide config file, vhost and default mod_rewrite configuration.