I've created a new application with ...

    django-admin.py startproject mysite

Then I've copied over my files from oldapp into the mysite directory
and continued to edit and add to my new application from there. I've
obviously gone through mysite and changed any database settings, views
and urls.py to point to mysite. Everything works fine and I'm not
having any problems with the mysite application itself.

However, when I try to use the admin panel of mysite, to change user
info around. What happens is I get the error ...

ProgrammingError at /admin/auth/user/1/

ERROR: relation "oldapp1_userprofile" does not exist SELECT COUNT(*)
FROM "oldapp1_userprofile" WHERE ("oldapp1_userprofile"."user_id" = 1)

Basically, my new app at mysite still thinks its pointed to oldapp.
I've searched all the directory tree of mysite for the string
'oldapp', and it's definitely not there.

Thanks ....


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to