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:&nbsp; <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>&nbsp;&nbsp;&nbsp; var map = new OpenLayers.Map(&#39;map&#39;, {&#39;projection&#39;:&#39;EPSG:26915&#39;, &#39;units&#39;:&#39;meters&#39;,<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#39;maxExtent&#39;: new OpenLayers.Bounds(485662,4775700,720470,4989969),
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#39;maxResolution&#39;: 469.616 } );<br>&nbsp;&nbsp;&nbsp; var districts = new OpenLayers.Layer.WMS( &quot;School Districts&quot;, &quot;<a href="http://www.flatlandmaps.com/tc/tilecache-1.4/tilecache.cgi?">http://www.flatlandmaps.com/tc/tilecache-1.4/tilecache.cgi?
</a>&quot;, {layers: &#39;tcdistricts&#39;});<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:&nbsp; <br><a href="http://www.flatlandmaps.com/tc/tilecache-1.4/tilecache.cgi?LAYERS=tcdistricts&amp;SERVICE=WMS&amp;VERSION=1.1.1&amp;REQUEST=GetMap&amp;STYLES=&amp;EXCEPTIONS=application%2Fvnd.ogc.se_inimage&amp;FORMAT=image%2Fjpeg&amp;SRS=EPSG%3A26915&amp;BBOX=485662%2C4775700%2C605883.696%2C4895921.696&amp;WIDTH=256&amp;HEIGHT=256">
http://www.flatlandmaps.com/tc/tilecache-1.4/tilecache.cgi?LAYERS=tcdistricts&amp;SERVICE=WMS&amp;VERSION=1.1.1&amp;REQUEST=GetMap&amp;STYLES=&amp;EXCEPTIONS=application%2Fvnd.ogc.se_inimage&amp;FORMAT=image%2Fjpeg&amp;SRS=EPSG%3A26915&amp;BBOX=485662%2C4775700%2C605883.696%2C4895921.696&amp;WIDTH=256&amp;HEIGHT=256
</a><br><br>Thanks, <br><br>David.<br><br>