Go and read the mod_python documentation again. In particular: """An example might make this clearer. Suppose you have some applications under /usr/local/django-apps/ (for example, /usr/local/ django-apps/weblog/ and so forth), your settings file is at /var/www/ mysite/settings.py and you have specified DJANGO_SETTINGS_MODULE as in the above example. In this case, you would need to write your PythonPath directive as:
PythonPath "['/usr/local/django-apps/', '/var/www'] + sys.path" With this path, import weblog and import mysite.settings will both work. If you had import blogroll in your code somewhere and blogroll lived under the weblog/ directory, you would also need to add /usr/ local/django-apps/weblog/ to your PythonPath. Remember: the parent directories of anything you import directly must be on the Python path.""" What the last paragraph is saying is that because of the way that you are using imports and or urls.py, you need to add the site directory as well as its parent to PythonPath. Thus: PythonPath "['/home/priya','/home/priya/mysite'] + sys.path] This is the preferred way if using mod_python and avoids needing to symlink stuff into your Python site-packages directory. Graham On Nov 8, 6:04 pm, stranger <[EMAIL PROTECTED]> wrote: > Can you please tell me how to put crimemap on path. What is sym- > linking? Can you explain briefly? > thanks a lot for the help.. > > On Nov 7, 11:02 pm, Kenneth Gonsalves <[EMAIL PROTECTED]> wrote: > > > On 08-Nov-07, at 12:23 PM, stranger wrote: > > > > crimemap is the name of the project. and the bottom part of the page > > > shows the META and SETTINGS. > > > is crimemap in your path? symlink it to the site-packages directory > > and try again > > > -- > > > regards > > kghttp://lawgon.livejournal.comhttp://nrcfosshelpline.in/web/ --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---