Re: TemplateDoesNotExist Error on deploying

2018-01-13 Thread yingi keme
udrup wrote: >> > >> > Hi Yingi, >> > >> >> On 2018-01-13 14:46, yingi keme wrote: >> >> I tried deploying my app to pythonanywhere hosting service and i am >> >> getting >> >> TemplateDoesNotExist Error >> >&g

Re: TemplateDoesNotExist Error on deploying

2018-01-13 Thread Jani Tiainen
h. > > Thanks for saving me... > > Yingi Kem > > > On 13 Jan 2018, at 2:52 PM, Kasper Laudrup > wrote: > > > > Hi Yingi, > > > >> On 2018-01-13 14:46, yingi keme wrote: > >> I tried deploying my app to pythonanywhere hosting service and i a

Re: TemplateDoesNotExist Error on deploying

2018-01-13 Thread yingi keme
Thanks Kasper. It was the backslash. Thanks for saving me... Yingi Kem > On 13 Jan 2018, at 2:52 PM, Kasper Laudrup wrote: > > Hi Yingi, > >> On 2018-01-13 14:46, yingi keme wrote: >> I tried deploying my app to pythonanywhere hosting service and i am getting >&

Re: TemplateDoesNotExist Error on deploying

2018-01-13 Thread Kasper Laudrup
Hi Yingi, On 2018-01-13 14:46, yingi keme wrote: I tried deploying my app to pythonanywhere hosting service and i am getting TemplateDoesNotExist Error Everything seems to work out well with my development server. But its not working fine when hosting Anyhelp please!! Here is my View def

TemplateDoesNotExist Error on deploying

2018-01-13 Thread yingi keme
I tried deploying my app to pythonanywhere hosting service and i am getting TemplateDoesNotExist Error Everything seems to work out well with my development server. But its not working fine when hosting Anyhelp please!! Here is my View def Home(request): template = 'Home\First

Re: TemplateDoesNotExist Error...

2012-11-19 Thread rmschne
Yes, with guidance from Django/Python, I am sure the error occurs there. Django/Pythyon presents the trace and the line number which causes the exception is reported to the command Line. However, I will look again at that line and all lines above. Yes, I know there is a "good" chance as the cl

Re: TemplateDoesNotExist Error...

2012-11-19 Thread Chris Cogdon
If you're sure your error appears at the "txt=" line, look at the definition for that template. There is a good chance it's trying to pull in a template (via an include, or a extends) that doesn't exist. If you need more debugging, you can always modify the LOGGING variable to drop a bunch of l

TemplateDoesNotExist Error...

2012-11-19 Thread rmschne
I have moved to a new laptop which is both my development and production platform. The only change in infrastructure is that I run Python, Django, and all else in a virtual environment (VirtualEnv). I am not using Django to run on a web server. I have a function which produces a set of H

Re: All of the sudden getting TemplateDoesNotExist error

2012-07-25 Thread rmschne
ents/source/django/projects/socmgmt/templates/. >> My ID has appropriate permissions (running on Mac OS/X). >> >> All of the sudden today (and it worked a few days ago), I get >> "TemplateDoesNotExist" error. This happens for any of the templates I try >&g

Re: All of the sudden getting TemplateDoesNotExist error

2012-07-24 Thread Karen Tracey
permissions (running on Mac OS/X). > > All of the sudden today (and it worked a few days ago), I get > "TemplateDoesNotExist" error. This happens for any of the templates I try > to load. > > Frankly, I'm at a kinda loss as to where to start debugging this since > ev

All of the sudden getting TemplateDoesNotExist error

2012-07-24 Thread rmschne
s/. My ID has appropriate permissions (running on Mac OS/X). All of the sudden today (and it worked a few days ago), I get "TemplateDoesNotExist" error. This happens for any of the templates I try to load. Frankly, I'm at a kinda loss as to where to start debugging this since e

Re: TemplateDoesNotExist error when running tests in django.contrib.sitemaps.tests.basic.SitemapTests

2011-02-22 Thread Karen Tracey
On Tue, Feb 22, 2011 at 4:18 AM, sajal wrote: > Installing django from the svn trunk no more fails the tests. Perhaps > the archives should not be skipping these files? > This problem was reported in the bug tracker and has already been fixed: http://code.djangoproject.com/ticket/14990 Can't f

TemplateDoesNotExist error when running tests in django.contrib.sitemaps.tests.basic.SitemapTests

2011-02-22 Thread sajal
when running python manage.py test i get the following output :- http://pastie.org/1592973 I am using django 1.3 beta 1 (the problem also occurred in alpha) Basically it complains about a missing file: custom_sitemap.xml After investigating, i realized that all the packaged archives from http:/

Re: Django Admin Site "TemplateDoesNotExist" Error.

2010-01-31 Thread Gramware
Ok, solved this by including 'django.contrib.admin', in INSTALLED APPS in settings.py -- 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 emai

Django Admin Site "TemplateDoesNotExist" Error.

2010-01-31 Thread Gramware
I get the following output on running http://localhost:8000/admin/ TemplateDoesNotExist at /admin/ admin/login.html Request Method: GET Request URL:http://localhost:8000/admin/ Exception Type: TemplateDoesNotExist Exception Value: admin/login.html Exception Location: /usr/lib/python2.6/sit

Re: TemplateDoesNotExist error when postmortem says it exists?

2009-03-29 Thread Russell Keith-Magee
On Mon, Mar 30, 2009 at 1:42 AM, Rob Hudson wrote: > > Wow, that was a tricky one to track down... ... > I take it that gets interpreted as a single value tuple.  D'oh!  That It does, operator precedence notwithstanding (for example, a lambda expression returning a tuple that is being used as an

Re: TemplateDoesNotExist error when postmortem says it exists?

2009-03-29 Thread Rob Hudson
Wow, that was a tricky one to track down... After putting debug output in django/template/loaders/filesystem.py I saw that filepath was set to: '/Users/rob/git/anglers/anglers/templates/('book/ search_form.html',)' I back tracked that and found that I had a trailing comma in my view code:

Re: TemplateDoesNotExist error when postmortem says it exists?

2009-03-29 Thread Rob Hudson
On Sun, Mar 29, 2009 at 8:28 AM, Karen Tracey wrote: > That generally means the permissions don't allow the code to access the > file.  You don't mention if this happens with the dev server (which would > surprise me, since you can load the template from the shell) or only with a > real web serve

Re: TemplateDoesNotExist error when postmortem says it exists?

2009-03-29 Thread Karen Tracey
On Sun, Mar 29, 2009 at 11:18 AM, Rob Hudson wrote: > > This is a stumper... > > I have a very simple view that is a wrapper around the generic view > direct_to_template. The loader finds the template as indicated in the > output "(File exists)", but yet I stil

TemplateDoesNotExist error when postmortem says it exists?

2009-03-29 Thread Rob Hudson
This is a stumper... I have a very simple view that is a wrapper around the generic view direct_to_template. The loader finds the template as indicated in the output "(File exists)", but yet I still get a TemplateDoesNotExist error. Any ideas? I can go to the Django shell and lo

Re: TemplateDoesNotExist error

2008-02-08 Thread Marcin Mierzejewski
The latest one is a TemplateDoesNotExist error. This is what the stack > shows: > > ... > File "C:\progra~1\Python25\lib\site-packages\django\template > \loader.py", line 79, in get_template > source, origin = find_template_source(template_name) > File "C:\progra~1

TemplateDoesNotExist error

2008-02-07 Thread Schmoopie
I'm slaying the configuration bugs, slowly but surely, with your help. The latest one is a TemplateDoesNotExist error. This is what the stack shows: ... File "C:\progra~1\Python25\lib\site-packages\django\template \loader.py", line 79, in get_template source, origin = find_

Re: Generic Views - TemplateDoesNotExist Error

2005-08-21 Thread Robin Munn
On 8/20/05, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Okay, well that was weird. Apparently you need executable permissions > on the directory that this archive file is in. In Unix, read permissions on a directory mean that you can look at a directory listing, but you may or may not be ab

Re: Generic Views - TemplateDoesNotExist Error

2005-08-19 Thread [EMAIL PROTECTED]
Okay, well that was weird. Apparently you need executable permissions on the directory that this archive file is in.

Generic Views - TemplateDoesNotExist Error

2005-08-19 Thread [EMAIL PROTECTED]
Hi Folks, My app is nearing completion (god I love Django so far), but this is a missing piece for me. I'm trying to create a generic view for a table, based on daily archives. My (abbreviated) app-level URLCONF file is (I'm removing "main/" from it in my settings-level URLCONF file, so it isn't