Posts Tagged ‘symfony 1.3’

symfony 1.3.6 and 1.4.6 security release available at ServerGrove

New versions of symfony framework have been released today. The 1.3.6 and 1.4.6 releases include a security vulnerability patch, check out the blog post announcing the release for more details. We recommend all our customers (and non-customers as well) to update their projects with the latest releases.

As always, all these new versions are already available on all our servers. If you are a VPS customer, make sure to update your local library to get the latest and greatest. And happy symfony coding!

29

06 2010

Release candidate versions of symfony 1.3 and 1.4 released

Just a couple of weeks ago we included the beta of symfony 1.3 in our servers. This week the symfony core team released the first release cadidate versions of symfony 1.3 AND 1.4 at the same time. Yes, they are rocking!

As expected, we included these releases in our servers so if you want to play around with them is as easy as including the library path and clear your cache. It’s also important that you test your applications with the new versions.

Here is how to use symfony 1.4


require_once '/usr/local/php/symfony14/lib/autoload/sfCoreAutoload.class.php';
sfCoreAutoload::register();

class ProjectConfiguration extends sfProjectConfiguration
{
  public function setup()
  {
    // for compatibility / remove and enable only the plugins you want
    $this->enableAllPluginsExcept(array('sfPropelPlugin'));
  }
}

Remember! symfony 1.3 and 1.4 are still in beta, so use it at your own risk.

Stable releases are scheduled to be available later this month. We will keep updating the repository as new versions are released.

18

11 2009