In doc/README.txt there are two URL Visit examples. I'm able to get the second URL to work:<br><br>http://www.piedmontgeographic.com/cgi-bin/tilecache/tilecache.py/1.0.0/basemap/0/0/0.png<br><br>but when I try the first URL I get:<br><br>http://www.piedmontgeographic.com/cgi-bin/tilecache/tilecache.py?LAYERS=basemap&amp;SERVICE=WMS&amp;VERSION=1.1.1&amp;REQUEST=GetMap&amp;SRS=EPSG:4326&amp;BBOX=-79.55334892, 35.50717788, -78.22326740, 36.26503708&amp;WIDTH=256&amp;HIGHT=256<br><span style="font-family: monospace;"><br></span>An error occurred: can't find resolution index for 0.005196. Available resolutions are: <span style="font-family: monospace;"><br></span>[0.00274658203125, 0.001373291015625, 0.0006866455078125, 0.00034332275390625, 0.000171661376953125, 8.58306884765625e-05, 4.291534423828125e-05, 2.1457672119140625e-05, 1.0728836059570312e-05, 5.3644180297851562e-06]<br><br>I am using the MapServer example, in doc/EXAMPLE.txt, in my tilecache.cfg. That example does
 not include "resolutions", so why am I getting this message? Could it be WMS setting? In my mapfile I have the projection defined as:<br><br>PROJECTION<br>&nbsp;&nbsp; "init=epsg:4326"<br>END<br><br>in tilecache.cfg I have it defined as srs=EPSG:4326. Is this correct? In each Layer I have basemap defined as:<br><br>&nbsp;&nbsp;&nbsp;&nbsp; METADATA<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "wms_title" "basemap"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "wms_srs" "epsg:4326"<br>&nbsp;&nbsp;&nbsp;&nbsp; END<br><br>Is this correct. When I installed mapserver I specified --with-wmsclient, and also updated my python mapscript. I have a 64 bit machine, so my mapscripts are in /usr/lib64/python2.5/site-packages/. Do you know if this would cause a conflict?<br><br>Jim<br><br>I have provided further background information below.<br><br>Below is my info in
 tilecache.cfg:<br><br>[basemap]<br>type=MapServerLayer<br>layers=basemap<br>mapfile=/var/www/html/mapdata/rdubsmll.map<br>extension=png<br>bbox=-79.55334892, 35.50717788, -78.22326740, 36.26503708<br>debug=on<br><br>I can run the same mapfile through openlayers (without tilecache), with out setting maxResolution or resolutions, and it will show my data at a global resolution. I have also tried setting resolution in tilecache.cfg, but I get the same error message. I even have used the resolutions from the error output, which in openlayers produce expected results. I'm running mod_python, so when I make changes to my tilecache.cfg, I restart my server. I have tried numerous variations and I always get the same result.<br>