Re: Various problems porting to Magic Removal

2006-04-24 Thread Don Arbow
On Apr 24, 2006, at 3:28 PM, Richie Hindle wrote: >> o When I run "manage.py runserver" I get this: >> >> admin.logentry: 'user' has relation with uninstalled model User >> admin.logentry: 'content_type' has relation with uninstalled >> model >> ContentType > > This was because

Re: Various problems porting to Magic Removal

2006-04-24 Thread Ken Kennedy
Yes, we're discussing the SQL migration steps over in dev right now. Among other things, the change in auth_permission (adding content_type_id as the referencing field, rather than the reference to the deleted package field) requires some DML (UPDATEs) to be added to the migration steps. I'm

Re: Various problems porting to Magic Removal

2006-04-22 Thread scum
I think I got it. Basically, my old file structure looked like this: wiki (directory) __init.py__ views.py models (directory) __init__.py wiki.py What I did was move wiki.py into the wiki folder and rename it models.py. Then I deleted the models folder. So the final result

Re: Various problems porting to Magic Removal

2006-04-22 Thread oggie rob
> admin.logentry: 'user' has relation with uninstalled model User >admin.logentry: 'content_type' has relation with uninstalled model > ContentType I would guess you need "UPDATE" statements for the content_types table. You should be able to see what those are (and they will vary for

Re: Various problems porting to Magic Removal

2006-04-22 Thread Steven Armstrong
On 04/23/06 00:15, Richie Hindle wrote: > Hi, > > I'm porting my app from the trunk to Magic Removal. I've carried out all > the steps at http://code.djangoproject.com/wiki/RemovingTheMagic but I'm > having various problems - I imagine they're all linked to some mistake > I've made somewhere

Re: Various problems porting to Magic Removal

2006-04-22 Thread scum
Wow! I was just upgrading an app and came up with these three questions myself. Any help would be appriciated. This seems to be a porting issue, as I am not having problems 1 & 2 with the new site I am working on. --~--~-~--~~~---~--~~ You received this

Various problems porting to Magic Removal

2006-04-22 Thread Richie Hindle
Hi, I'm porting my app from the trunk to Magic Removal. I've carried out all the steps at http://code.djangoproject.com/wiki/RemovingTheMagic but I'm having various problems - I imagine they're all linked to some mistake I've made somewhere along the line: o When I run "manage.py runserver" I