if this site looks broken its because you're using an old-ass browser! seriously like 10 years old! get a better one!
  • blog
  • about
  • symfony

    Search By Category 'symfony'

    4 results found.

    symfony shortcut build scripts

    24/11/2010 Posted in symfony Posted by: rek

    My shortcut scripts for building symfony projects. I store these in one letter commands, eg: my build is /bin/f

     

    Build Propel:


    #!/bin/bash
    echo "Tryin to build all symfony OBJECTS..."
    ./symfony propel:build-model
    ./symfony propel:build-sql
    ./symfony propel:build-forms
    ./symfony propel:build-filters
    echo "Build attempt finished"

     

    Load Propel:


    #!/bin/bash
    echo "Tryin to load all symfony DATA..."
    ./symfony propel:insert-sql --env=dev  --no-confirmation
    ./symfony propel:data-load --env=dev


    Build Doctrine:


    #!/bin/sh
    #./symfony doctrine:clean-model-files
    ./symfony doctrine:build --all-classes --sql

    Load Doctrine:


    #!/bin/sh
    ./symfony doctrine:drop-db
    ./symfony doctrine:build-db
    ./symfony doctrine:insert-sql --env=dev
    ./symfony doctrine:data-load --env=dev

    Gamebeak: Beta launch

    11/10/2010 Posted in symfony, tech Posted by: rek

    Today we have opened up gamebeak.com. Its officially beta time. Have a play, let me know what you think. Especially bugs etc. So the site basically works like this: You sign up and then 'subscribe' to stuff you like.. and it makes a news feed for you.

     

    Built mostly with symfony 1.4 and Propel 1.5.

     

    whats this? new MCMS! Version 3.x is rolling out.

    18/08/2010 Posted in symfony Posted by: rek

     

    We are pleased to announce the new release of our CMS type thing.

    Look how pretty it is:

    Our development has been on hold for a while for various life reasons. But finally, we have a nice symfony 1.4 release:

     

    http://svn.malarky.co.nz/sfMCMSPlugin/trunk (anon:anon)

     

    (trunk for now, we will branch in a few weeks to: http://svn.malarky.co.nz/sfMCMSPlugin/branches/1.4)

    Symfony: Admin generator, cannot change a FK value

    12/08/2010 Posted in symfony Posted by: rek

    If you have a fk field (lets say a sfwidgetformpropelchoice) and you are using the admin generator, but when attempting to change the value of this field the form is successfully posting, but nothing is changing.

    Check to make sure the field is not also a PK!