Hello,<br><br>I have a basic question.  I am trying to put Mezzanine under Apache using wsgi.  In order to not clutter up the system site-packages directory, I have a directory like so:<br><br>/srv/website/www/site-packages<br>
<br>Under this site-packages are a number of packages provided by Mezzanine:<br><br>bleach-1.1.5-py2.6.egg<br>filebrowser_safe-0.2.12-py2.6.egg<br>Mezzanine-1.2.4-py2.6.egg<br>pytz-2012h-py2.6.egg<br>Django-1.4.2-py2.6.egg<br>
grappelli_safe-0.2.10-py2.6.egg<br>Pillow-1.7.8-py2.6-linux-x86_64.egg<br>setuptools-0.6c11-py2.6.egg<br>easy-install.pth<br>html5lib-0.95-py2.6.egg<br>pip-1.1-py2.6.egg<br>setuptools.pth<br><br>The eggs are really directories themselves, and under each .egg lies the module.  So for example, under Mezzanine-1.2.4-py2.6.egg, there's a 'mezzanine' directory.<br>
<br>In the wsgi launcher, I have a call like this:<br><br>sys.path.append('/srv/website/www/site-packages')<br><br>This appears to not be working, as Apache can't find any of the modules under that site-packages directory that are within the eggs.<br>
<br>Is there a cleaner or more elegant way to get to where I want to be?<br><br>Thanks!<br>-JK<br>