I have a simple OpenLayers app that I am trying to get working with TileCache. The layer is a MapServer served WMS layer. The image is 500x500. I am getting pink tiles, no images for the tilecache layer. Below is quite a bit of info, let me know any other info is needed to diagnose.
<br><br>The URL is: <a href="http://www.flatlandmaps.com/schooldistricts/dev2distinfo.html">http://www.flatlandmaps.com/schooldistricts/dev2distinfo.html</a><br><br>The data is in EPSG:26915 (meters)<br><br>Here are the map and layer definitions from the html file:
<br> var map = new OpenLayers.Map('map', {'projection':'EPSG:26915', 'units':'meters',<br> 'maxExtent': new OpenLayers.Bounds(485662,4775700,720470,4989969),
<br> 'maxResolution': 469.616 } );<br> var districts = new OpenLayers.Layer.WMS( "School Districts", "<a href="http://www.flatlandmaps.com/tc/tilecache-1.4/tilecache.cgi?">http://www.flatlandmaps.com/tc/tilecache-1.4/tilecache.cgi?
</a>", {layers: 'tcdistricts'});<br><br>Here is the layer entry from tilecache.cfg:<br>[tcdistricts]<br>type=WMSLayer<br>url=<a href="http://www.flatlandmaps.com/cgi-bin/mapserv?map=/var/www/flatlandmaps.com/maps/schooldist/schooldist.map">
http://www.flatlandmaps.com/cgi-bin/mapserv?map=/var/www/flatlandmaps.com/maps/schooldist/schooldist.map</a><br>layers=districts<br>extension=png<br>metaTile=true<br>maxResolution=469.616<br>srs=EPSG:26915<br>metaBuffer=10
<br>bbox=485662,4775700,720470,4989969<br><br>From FireBug, the tiles that are failing have a URL of: <br><a href="http://www.flatlandmaps.com/tc/tilecache-1.4/tilecache.cgi?LAYERS=tcdistricts&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&STYLES=&EXCEPTIONS=application%2Fvnd.ogc.se_inimage&FORMAT=image%2Fjpeg&SRS=EPSG%3A26915&BBOX=485662%2C4775700%2C605883.696%2C4895921.696&WIDTH=256&HEIGHT=256">
http://www.flatlandmaps.com/tc/tilecache-1.4/tilecache.cgi?LAYERS=tcdistricts&SERVICE=WMS&VERSION=1.1.1&REQUEST=GetMap&STYLES=&EXCEPTIONS=application%2Fvnd.ogc.se_inimage&FORMAT=image%2Fjpeg&SRS=EPSG%3A26915&BBOX=485662%2C4775700%2C605883.696%2C4895921.696&WIDTH=256&HEIGHT=256
</a><br><br>Thanks, <br><br>David.<br><br>