hi all,
have the couple schema/data that worked with symfony 1.2 but now, with
v1.4, i recieve:

>> doctrine  Loading data fixtures from 
>> "/lan/http/symfony/projects/cms/data/fixtures"
Segmentation fault

it seems a fixture problem cause
php symfony doctrine:build --db
works as expected.

this is my data.yml:

Menu:
  _menu_main:
    label: home
    module: main
    children: []
  _menu_menu:
    label: menu
    module: menu
    AclCredential: _aclcredential_all
    children: []
  _menu_acl:
    label: acl
    children:
      _menu_aclgroup:
        label: groups
        module: aclgroup
        AclCredential: _aclcredential_acl
        children: []
      _menu_aclcredential:
        label: credentials
        module: aclcredential
        AclCredential: _aclcredential_acl
        children: []
      _menu_acluser:
        label: users
        module: acluser
        AclCredential: _aclcredential_acl
        children: []

AclGroup:
  _aclgroup_admin:
    name: admin
    description: who can do everything
  _aclgroup_editor:
    name: editor
    description: who can edit contents

AclUser:
  _acluser_lo:
    username: username1
    password: password1
    email: ema...@domain.com
    AclGroups: [_aclgroup_admin]
  _acluser_test:
    username: username2
    password: password2
    email: ema...@domain.com
    AclGroups: [_aclgroup_editor]

AclCredential:
  _aclcredential_all:
    name: all
    description: passepartout
    AclGroups: [_aclgroup_admin]
  _aclcredential_acl:
    name: acl
    description: who can manage users
    AclGroups: [_aclgroup_admin]
  _aclcredential_contents:
    name: contents
    description: who can manage contents
    AclGroups: [_aclgroup_editor]

what has changed from 1.2 to 1.4?
thanks!
-- 
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-us...@googlegroups.com.
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en.


Reply via email to