I think it might be related to a jquery plugin i'm using. It appears
that the plugin is not finding an attribute on an image, and is
therefore appending the undefined status to the url in developer
tools. If I comment out the plugin the error is gone.
On Dec 10, 7:36 am, Tomasz Zieliński
wrote:
>
Can it be a browser caching issue:
http://www.google.pl/support/forum/p/Chrome/thread?tid=3bb0a94bfb063745&hl=en
?
Best,
Tomasz Zielinski
--
You received this message because you are subscribed to the Google Groups
"Django users" group.
To view this discussion on the web visit
https://groups
Hi,
don't know if that helps but when I was working with app engine there were
errors that would only occur while using the "Incognito" windows.
Cheers,
Tkm
On Fri, Dec 9, 2011 at 11:52 PM, neridaj wrote:
> Thanks for the reply but that didn't help.
>
> On Dec 9, 5:41 pm, Furbee wrote:
> > I
Thanks for the reply but that didn't help.
On Dec 9, 5:41 pm, Furbee wrote:
> In urls.py:
>
> Change:
> (r'^portfolio/', include('project.urls.web')),
>
> To:
> (r'^portfolio/$', include('project.urls.web')),
>
> The dollar sign makes it the end of the regular expression string. Without
> it, /po
In urls.py:
Change:
(r'^portfolio/', include('project.urls.web')),
To:
(r'^portfolio/$', include('project.urls.web')),
The dollar sign makes it the end of the regular expression string. Without
it, /portfolio/ will match with /portfolio/funstuff,
/portfolio/?my_hax_rock, etc. See if that helps.
5 matches
Mail list logo