On Oct 12, 8:46 pm, dbee <[EMAIL PROTECTED]> wrote:
> I'm bringing my django code base from production server to a clean
> install on development. The environments are different, but I'm
> getting some very strange errors that I don't seem to be able to
> figure out ... I was wondering if anyone had experienced the same
> issues ...
>
> Prod Server : django-.97 && Python 2.3.4
>
> Dev Server: django 1.0 && Python 2.5
>
> ### ERROR 1 ###
<snip>
> Exception Value: 'WSGIRequest' object has no attribute 'has_key'


Since you're running different versions, have you looked at the
backwards incompatible changes page? This issue is described there:
http://code.djangoproject.com/wiki/BackwardsIncompatibleChanges#Removeddictionaryaccesstorequestobject

Basically, you can no longer do request['key'] to get a value from the
request object, or request.has_key('key'). You have to do
request.REQUEST.has_key('key').



> ### ERROR 2 ###
<snip>
> Exception Type: ProgrammingError at /blog/venture-capital-pitfalls/
> Exception Value: ERROR:  operator does not exist: character varying =
> integer
> LINE 1: ...M "tarait1_blog" WHERE ("tarait1_blog"."category" = 0  AND
> "...
>                                                              ^
> HINT:  No operator matches the given name and argument type(s). You
> might need to add explicit type casts.
>
> SELECT COUNT(*) FROM "tarait1_blog" WHERE ("tarait1_blog"."category" =
> 0  AND "tarait1_blog"."active" = True )


This sounds like a difference in the way your database is set up. Are
you sure you have the same table definitions, collations, charsets,
etc?


> Neither error occurs on the production server. These are fairly
> strange errors that occur on both the dev server locally and the local
> apache server ...
>
> Anyone have any ideas ?

Yes: run the same version in both environments.
--
DR.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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