There was a permission denied error 'cause if your webserver was
running under some user other than root (as it should be), it won't be
able to write to the root's home directory (as it shouldn't).

Assuming you are using Apache with mod_python, here is something you
could put in your httpd.conf:

SetEnv PYTHON_EGG_CACHE /tmp/python-eggs

Include this with the rest of your settings for the django app.

Best,

R

On Wed, May 21, 2008 at 3:04 AM, Rodrigo Culagovski
<[EMAIL PROTECTED]> wrote:
>
> For future reference: fixed, it stabilized to the 3rd error message. I
> added this to __init.py__ in the application's directory:
>
> import os
> os.environ['PYTHON_EGG_CACHE'] = '/tmp'
>
> Apparently there was some permission error on '/root/.python-eggs'
> >
>

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