Re: Not reading from TEMPLATE_DIRS in settings.py

2012-08-18 Thread Melvyn Sopacua
On 17-8-2012 14:47, madala wrote: > Thanks I solved it. Was looking up wrong directory because I followed the > instructions to put the absolute path. If I put the relative path it works > fine. Thanks for taking time to answer anyway. People are so kind! :0) You didn't solve it because it /shou

Re: Not reading from TEMPLATE_DIRS in settings.py

2012-08-17 Thread Amyth Arora
Glad that you solved it! However, i would recommend using absolute path instead of a relative path as it might break when you clone or move it to another location. On Fri, Aug 17, 2012 at 6:17 PM, madala wrote: > Thanks I solved it. Was looking up wrong directory because I followed the > instru

Re: Not reading from TEMPLATE_DIRS in settings.py

2012-08-17 Thread madala
Thanks I solved it. Was looking up wrong directory because I followed the instructions to put the absolute path. If I put the relative path it works fine. Thanks for taking time to answer anyway. People are so kind! :0) On Tuesday, 14 August 2012 14:54:45 UTC+1, ephan wrote: > > Have you checked

Re: Not reading from TEMPLATE_DIRS in settings.py

2012-08-17 Thread madala
Thanks I solved it. Was looking up wrong directory because I followed the instructions to put the absolute path. If I put the relative path it works fine. Thanks for taking time to answer anyway. People are so kind! :0) On Tuesday, 14 August 2012 14:59:11 UTC+1, Alexis Roda wrote: > > Al 14/08/1

Re: Not reading from TEMPLATE_DIRS in settings.py

2012-08-17 Thread madala
Thanks I solved it. Was looking up wrong directory because I followed the instructions to put the absolute path. If I put the relative path it works fine. Thanks for taking time to answer anyway. People are so kind! :0) On Friday, 17 August 2012 10:21:22 UTC+1, Amyth wrote: > > While you get thi

Re: Not reading from TEMPLATE_DIRS in settings.py

2012-08-17 Thread Amyth Arora
While you get this error do you see your template dir listed on the error/debug page ? On Fri, Aug 17, 2012 at 2:46 PM, madala wrote: > Thanks you for replying. Here is traceback: > > Traceback (most recent call last): > File "/usr/lib/python2.7/wsgiref/handlers.py", line 85, in run > self.

Re: Not reading from TEMPLATE_DIRS in settings.py

2012-08-17 Thread madala
Thanks you for replying. Here is traceback: Traceback (most recent call last): File "/usr/lib/python2.7/wsgiref/handlers.py", line 85, in run self.result = application(self.environ, self.start_response) File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/wsgi.py", line 241,

Re: Not reading from TEMPLATE_DIRS in settings.py

2012-08-17 Thread madala
Yes I can access the directories. Here's the traceback: Traceback (most recent call last): File "/usr/lib/python2.7/wsgiref/handlers.py", line 85, in run self.result = application(self.environ, self.start_response) File "/usr/local/lib/python2.7/dist-packages/django/core/handlers/wsgi.py",

Re: Not reading from TEMPLATE_DIRS in settings.py

2012-08-14 Thread Alexis Roda
Al 14/08/12 12:50, En/na madala ha escrit: So I carried on and started tutorial 3 till I got halfway down and had to do same thing but no matter what I try can't get Django to recognize my directories. Can anyone see where I am going wrong please? thanks in anticipation. What error are you ge

Re: Not reading from TEMPLATE_DIRS in settings.py

2012-08-14 Thread ephan
Have you checked the permissions of the directory and template files? run ls -l in the parent directory of the template folder and inside the folder itself . madala wrote: > Have followed tutorial 2 instructions carefully. So far everything has > worked as described in tutorials but cannot get djan