[OpenLayers-Users] Pink tiles in FireFox doesn't disappear after refresh - a possible solution

2010-03-15 Thread Pietro Ianniello
Dear list, this is second time I make this post: for some reason the first post was lost... and it's good because it was buggy! On to the problem: pink tiles showing up in FireFox. The pink tiles are generated because of too many connections, so my problem it's not that there are pink tiles, the

Re: [OpenLayers-Users] Pink tiles in FireFox doesn't disappear after refresh - a possible solution

2010-03-15 Thread Pietro Ianniello
I said "and by using a temporary var doesn't have to check if it was added or not." This is wrong. It's absolutley necessary to test if it was added before: var dummy = "&uuu"; *if (this.src.match(dummy + "$") != dummy)* { this.src = this.src + "&uuu"; } If you don't do so you

[OpenLayers-Users] Pink tiles in FireFox doesn't disappear after refresh - a possible solution

2010-03-15 Thread Pietro Ianniello
Dear list, I have a problem on pink tiles showing up in FireFox. The are generated because of too many connection. It's OK that they are displayed. The problem is that when I zoom out and zoom in they don't disappear as they should. This is because of aggressive caching on tile to be displayed. If

Re: [OpenLayers-Users] Pink tiles in FireFox doesn't disappear after refresh - a possible solution

2010-03-14 Thread Pietro Ianniello
WOW! I was looking on nabble if my post was arrived, made a search and...I have just found another "solution" like mine! http://n2.nabble.com/Possible-pink-tile-fix-td1827492.html by Ben Brehmer. It's interesting, He appends "&retry="+this._attempts; and by using a temporary var doesn't have to che