I'm trying to launch custom admin commands with a cron(outside the project path). I'm running Django 1.1.1. I've tried to add the -- pythonpath='path_to_my_project' option, but it doesn't work either.
When I call path_to_my_project/manage.py my_command -- pythonpath='path_to_my_project' from inside the project path it all goes well, but when I'm outside(cwd). It only gives a Unknown command: 'my_command' Type 'manage.py help' for usage. error. I've put a trace inside the manage.py and followed it until I got to: /usr/lib/pymodules/python2.6/django/core/management/__init__.py Method: def find_management_module(app_name) if os.path.basename(os.getcwd()) != part: raise e The problem is that os.path.basename(os.getcwd()) returns my current working directory(the last part of it) that will never be equal to 'part' that is the project_name. Only if you are inside your project path. So because of that all my custom commands are never 'discovered'. I've been stucked here yesterday on other machine but somehow it solved magically!! I hope I'm doing some really stupid noob error here and so it can be easily solved. Regards, Tim D.G. -- 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.