So I'm trying to implement tagging on my website and I found the django-tagging project and threw it in my app and it works great... on my laptop. Go to put things up on the server (dreamhost using their new passenger method) and started to run into some issues. I did easy install using --prefix so I could install it in my home directory. My structure looks something like this: ~/django |--applications | `-- pythonlib | `-- lib | `-- python2.4 | `-- site-packages | `-- django_tagging-0.3-py2.4.egg | |-- EGG-INFO | `-- tagging | |-- templatetags | `-- tests |--projects |--source
source is my copy of the Django source code and then projects is where I keep my application souce code. Also, in order to get it to install, I had to put the site-packages path in my PYTHONPATH in .bash_profile: export PYTHONPATH=$PYTHONPATH:$HOME/django/source:$HOME/django/ projects:$HOME/django/applications/pythonlib/lib/python2.4/site- packages So far so good: $ python manage.py shell Python 2.4.4 (#2, Oct 22 2008, 20:20:22) [GCC 4.1.2 20061115 (prerelease) (Debian 4.1.1-21)] on linux2 Type "help", "copyright", "credits" or "license" for more information. (InteractiveConsole) >>> import tagging >>> tagging.VERSION (0, 3, 'pre') I think great, that was pretty easy... I should be ready to go. Push my code up to the server, run syncdb, it makes the tables and index... but I get a 500 Internal Server Error. What's most frustrating is I can't seem to get a debug error page, despite having Debug = True but that just seems to be a quirk of using dreamhost. So fearing maybe my code is borked, I undid my recent checkout... sites fine again. If I put in 'tagging', into the INSTALLED_APPS, I get the 500 Internal Server Error. I realize this is probably due to the way dreamhost is setup. In my passenger_wsgi.py script, I have a bunch of sys.path.inserts to add the same folders in my PYTHONPATH, I'm just not understanding where the disconnect it. If someone has some insight into why this might be happening, I'd love to hear it. Both laptop and server are using Django version 1.1.1. Is there something I'm missing with my paths? I've spent more time trying to fix this than I have adding the tags. :- (
-- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.