Hi Thomas,

On Tue, 2007-05-22 at 22:58 -0700, Thomas Ashelford wrote:
> 
> 
> On May 23, 3:16 pm, "James Bennett" <[EMAIL PROTECTED]> wrote:
> > In order for Python to be able to use some bit of code -- in this
> > case, Django -- that bit of code has to be in a directory that's on
> > the "Python path"; that's a list of directories Python looks into
> > whenever you have an 'import' statement. The job of setup.py is to
> > automatically place a new Python-based application on the Python path
> > so that Python can import code from it, though this is really provided
> > as a convenience.
> James, thanks for the succinct explanation. That confirms what I
> thought (in a slightly uncertain way) was happening.
> 
> > The "manual" option is to either copy the "django" directory
> > containing all of Django's code into a directory that's on the Python
> > path, or to edit the Python path to include the directory Django is
> > in. Editing the Python path varies across operating systems, so you
> > may want to simply copy Django over to somewhere on the path.
> I have actually edited my Python path already  - that's how I got the
> development version working - so perhaps there's something else not
> right? In any case, moving 0.96 onto the Python path is not really an
> option for me, as I already have a working copy of 0.95 sitting there.
> I was actually trying to set up an alternate instance of Django so I
> could test its compatibility with my code, before upgrading the copy
> of Django that runs behind my main server. 

This should be possible (and I would have said trivial, except that this
is apparently not so). It will be a matter of adjusting the Python path
to point to you "alternate" version in your (fastcgi?) setup file. What
will not work is having *both* Django versions on the Python path at the
same time.

> I don't want the
> embarrassment of upgrading and ending up with a broken site. The fact
> that I can get the dev version working in the alternate directory, but
> not the 0.96 version makes me worry that it's something more than just
> the Python path.

This I don't understand. The 0.96 release is basically just a tarball of
an "svn export"-ed version of the source whenever the release was made.
So it should have a "django/" directory inside it and you would need to
adjust the Pythonpath to point to /what/ever/dir/Django-0.96/ (you are
putting Django-0.96/ on the path, too, right? Not stopping one directory
too soon?)

One other thing I just thought of: check the permissions on the tarball.
Can the web server read the Django-0.96 directory? It should at least
have the execute bit set in the "other" set of permissions (the
permission sets reading user/group/other from left to right).

> By the way, my site *does* break under the dev version - I have a
> couple of FloatFields in there - but as soon as I changed them it
> worked fine. So what started as a cautious test of my code's
> compatibility with the latest version of Django, has now made me worry
> about my ability to install an official Django release! Previously
> I've worked with either dev releases (using svn), or pre-installed
> official releases (on WebFaction), so I haven't had to face this
> before.

If you don't have a "doh!" moment anytime soon, how about posting how
you have set things up to make the development version work. This might
be easier if we knew some details of how you are trying to make it work.
Since you mention you don't have root, it sounds like you're using a
hosting environment. So what did you do to make the subversion version
work? And where have you untarred Django-0.96? Given that information,
we should be able to work out the necessary changes.

Regards,
Malcolm


--~--~---------~--~----~------------~-------~--~----~
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