Re: 404 only in Chrome

2011-12-10 Thread neridaj
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: >

Re: 404 only in Chrome

2011-12-10 Thread Tomasz Zieliński
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

Re: 404 only in Chrome

2011-12-10 Thread Bruno Tikami
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

Re: 404 only in Chrome

2011-12-09 Thread neridaj
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

Re: 404 only in Chrome

2011-12-09 Thread Furbee
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.