On Wed, Nov 5, 2008 at 5:41 PM, kele <[EMAIL PROTECTED]> wrote: > > the debug flag in settings.py . > > what i want to do is to only change the DEBUG varialbe to True when > just the specific remote address( ip) to send the request . > cause i do not hope all my users can read the err msg while i am > coding . > > something like this : > if remoteAdd == 192.168.0.1 : > DEBUG = True > else: > DEBUG = False > > > but how ? need help pls .
"Remote address" is http specific, while settings does not (and to keep it loosely coupled probably should not) know anything about http requests. Have a look at INTERNAL_IPS setting to achieve what you want: http://docs.djangoproject.com/en/dev/ref/settings/#internal-ips Ronny --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---