Re: Unable to parse connection string: "" when using django cache

2016-03-20 Thread Nandakumar Chandrasekhar
Thanks I had not caught that but I am not sure if that is the issue. On Thu, Mar 17, 2016 at 7:39 AM, wrote: > As an aside, it looks like you're including CommonMiddleware twice. > > -- > You received this message because you are subscribed to a topic in the > Google Groups

Re: Unable to parse connection string: "" when using django cache

2016-03-10 Thread Nandakumar Chandrasekhar
Sorry forgot to add the traceback I am getting: Internal Server Error: / Traceback (most recent call last): File "/Users/nchandrasekhar/PycharmProjects/horizon/.venv/lib/python2.7/site-packages/django/core/handlers/base.py", line 88, in get_response response = middleware_method(request)

Re: [Bug 713738] Re: font-manager package crashes on startup

2014-12-11 Thread Nandakumar Chandrasekhar
Sorry about that it was not my intention to keep it open. I could not close it and have gone for the next best thing of fix- released. I hope that will do. Cheers, nav On Thu, Dec 11, 2014 at 6:03 PM, Jerry Casiano 713...@bugs.launchpad.net wrote: Please close this bug. It's over three

[Bug 713738] Re: font-manager package crashes on startup

2014-12-11 Thread Nandakumar Chandrasekhar
** Changed in: font-manager (Ubuntu) Status: Triaged = Fix Released ** Bug watch added: code.google.com/p/font-manager/issues #30 http://code.google.com/p/font-manager/issues/detail?id=30 -- You received this bug notification because you are a member of Ubuntu Bugs, which is

Re: [Ubuntustudio-bugs] [Bug 713738] Re: font-manager package crashes on startup

2014-12-11 Thread Nandakumar Chandrasekhar
Sorry about that it was not my intention to keep it open. I could not close it and have gone for the next best thing of fix- released. I hope that will do. Cheers, nav On Thu, Dec 11, 2014 at 6:03 PM, Jerry Casiano 713...@bugs.launchpad.net wrote: Please close this bug. It's over three

Re: Setting an unusable password on an existing user

2012-09-23 Thread Nandakumar Chandrasekhar
: On Sat, Sep 22, 2012 at 3:18 PM, Nandakumar Chandrasekhar <navanitach...@gmail.com> wrote: Thanks Andrew but I have a requirement where I have to programmatically set it to an unusable password based on a particular condition. Andrew's given you the answer - it's just not clear that

Re: Setting an unusable password on an existing user

2012-09-22 Thread Nandakumar Chandrasekhar
Thanks Andrew but I have a requirement where I have to programmatically set it to an unusable password based on a particular condition. I know this is a rare requirement but in the context of the application I am building it makes sense. :-) nav On Friday 21 September 2012 12:22 PM, Andrew

Re: Setting an unusable password on an existing user

2012-09-21 Thread Nandakumar Chandrasekhar
Thanks Paul, I have tried this on the Django shell and works for me as well. Since I am using some third party software to do social site authentication I might have made a mistake and not accessed the actual django user object. Thanks once again. nav On Friday 21 September 2012 03:17 PM,

Re: Django development running on 127.0.0.1:8000 not accessible from same machine

2012-08-31 Thread Nandakumar Chandrasekhar
Chris, Thank you for your email. I had cleared my cache quite a number of times before. What is interesting is that if I start a new Django 1.4.1 the browser finds the server running at 127.0.0.1:8000 and says it worked. The application I am working on however still redirects to

Re: Django development running on 127.0.0.1:8000 not accessible from same machine

2012-08-27 Thread Nandakumar Chandrasekhar
Hi Jirka, That does not seem to be the case. I set rhe proxy server settings to no proxy and it still prepends a www in front of the IP address. I could investigate this further but I am little pressed for time at present. Thanks, nav On Tuesday 28 August 2012 10:39 AM,

Re: [Bug 713738] Re: font-manager package crashes on startup

2011-02-06 Thread Nandakumar Chandrasekhar
On Sunday 06 February 2011 02:20 AM, Jerry Casiano wrote: Haven't seen that before... Try rm ~/.cache/font-manager/font-manager.* See if that helps. Thanks that seems to do the trick. :-) Cheers, nav -- You received this bug notification because you are a member of Ubuntu Bugs, which

[Bug 713738] [NEW] font-manager package crashes on startup

2011-02-05 Thread Nandakumar Chandrasekhar
Public bug reported: Binary package hint: font-manager Dear Folks, I am currently running Ubuntu 10.10 Maverick and have the font-manager package version 0.5.6-1 installed. Every time I try to start it up it crashes with the following error below:

[Rails] Need to add path to routes.rb

2010-12-07 Thread Nandakumar Chandrasekhar
Dear Folks, I am Web developer and have experience mainly with the Django Web framework for Python and wish to learn ROR. I am currently using Rails 3.0.3 and was getting a routing error whenever I added a view to a controller until I found out I had to add the path to the routes.rb file under

Replacement for e.message() in python 2.6

2010-02-17 Thread Nandakumar Chandrasekhar
Dear Folks, In previous versions of Python I used to use e.message() to print out the error message of an exception like so: try: result = x / y except ZeroDivisionError, e: print e.message() Unfortunately in Python 2.6 the message method is deprecated. Is there any