> Hi all,
> I wanted to use html5 in my website so downloaded
> django-html5boilerplate
> (https://github.com/HowlingEverett/django-html5boilerplate).Now, I am
> getting following error when I run "python manage.py runserver". Page
> loads without any error, but gives following 404 errors in terminal:
>
> error:
> [19/Jan/2012 08:55:27] "GET / HTTP/1.1" 200 3984
> [19/Jan/2012 08:55:27] "GET
> /static/style.css%7C0/0/css/style.css?version=3613de347c61c22d6570ac95170381b50c516229
> HTTP/1.1" 404 1823
> [19/Jan/2012 08:55:27] "GET
> /static/main.js%7C0/js/libs/modernizr-2.0.min.js?version=fbfbfed67834caccf0672ee74b171f70823c05a7
> HTTP/1.1" 404 1856
> [19/Jan/2012 08:55:27] "GET
> /static/main.js%7C1/js/libs/respond.js?version=33f8790234012648ce9fe3ccea30dfb0ebab3a6a
> HTTP/1.1" 404 1826
> [19/Jan/2012 08:55:27] "GET
> /static/main.js%7C2/.media_url.js?version=9af983aec3356053aa327ae5bb7f55452adfbe3b
> HTTP/1.1" 404 1811
%7c means a pipe character (|), so you're doing something funny in your
configuration somewhere.
/static/main.js%7C0/js/libs/modernizr-2.0.min.js gives a 404, but it
should probably be
/static/js/libs/modernizr-2.0.min.js
So it is all relative to main.js and it somehow has a | and some number
behind it.
I think you've mis-configured something with that django-mediagenerator
you mention. (or django-mediagenerator is defective, I don't know as I
haven't heard about it).
Reinout
--
Reinout van Rees http://reinout.vanrees.org/
reinout@vanrees.org http://www.nelen-schuurmans.nl/
"If you're not sure what to do, make something. -- Paul Graham"
--
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 django-users+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
0 comments:
Post a Comment