On Thu, Jun 28, 2012 at 12:37 AM, ferran <[email protected]> wrote: > Hello django users, > > In the last 3 weeks I'm receiving in my email a many "Broken INTERNAL link" > how this: > > " > Referrer: http://www.marquezshop.com/es/catalogo/sales/ > Requested URL: /es/catalogo/sales/undefined/ > User agent: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/536.5 (KHTML, like > Gecko) Chrome/19.0.1084.56 Safari/536.5 > IP address: ------- > " > or > > " > Referrer: > http://www.marquezshop.com/es/catalogo/sales/sal-compactada-en-pastillas-piscinas-salnet.html/ > Requested URL: > /es/catalogo/sales/sal-compactada-en-pastillas-piscinas-salnet.html/undefined/ > User agent: Mozilla/5.0 (Windows NT 5.1) AppleWebKit/534.30 (KHTML, like > Gecko) Chrome/12.0.742.122 Safari/534.30 > IP address: ---------------- > " > > The pattern from requested URL can be any, but, always have a end string > "/undefined/" > > I'm not update the code, but update, nginx, mysql, apache > > Program versions: > django 1.1.4 > localeurl 1.5 (tip version) > > Do you have any Idea?
It's impossible to say without seeing all your code, but you only get those emails if there is a link on your page that returns a 404. That means that pages on your site are being rendered with <a href=".../undefined/"> on them. The link may not be in an obvious location -- I'm going to guess that they've been found by a robot that is scraping your site -- but if your getting the emails, you can be fairly certain that the links exist *somewhere*. Yours, Russ Magee %-) -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

