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
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
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
>&
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
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
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
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
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
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
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
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
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
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:/
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
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
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
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:
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
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
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
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
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_
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
Okay, well that was weird. Apparently you need executable permissions
on the directory that this archive file is in.
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
25 matches
Mail list logo