On 24 Jul 01:28, navnath gadakh wrote: > i have created crontab for custom management command like this :* * * * * > /usr/lib/python2.7 > /media/Sonisons/SOrigin/instaShare/src/instaShare/manage.py cronjobs > >>/home/navnath/tt.txt 2>&1 > But error is: > /bin/sh: 1: /usr/lib/python2.7: Permission denied > I have done chmod 777 - R /usr/lib/python2.7 but still this error prompt > please help. > thanks in advance.
Welllll.... /usr/lib/python2.7 is likely to be a directory, so you're trying to execute the directory... Maybe you want /usr/bin/python2.7 -- Brett Parker -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/django-users. For more options, visit https://groups.google.com/groups/opt_out.

