Hi, I posted about this problem a little while ago and i still cant get past it.<br> <br>My WMS layer will only display if STATUS is set to DEFAULT within the mapfile. If status is set to ON, i get following error message within OL Map window. &quot;WMSLoadGetMapParams(): WMS Server Error&quot;. What am i missing to call the layer within openlayers?<br>
 <br>My Code is as follows:<br> <br>      var bounds = new OpenLayers.Bounds(0, 0, 660046, 1229782);<br>      var map, layer1, layer2;<br>      var options = { maxExtent: bounds, maxResolution: 1000, numZoomLevels: 10};<br>
 <br>      <br>      <br>      function init(){<br>          map = new OpenLayers.Map(&#39;map&#39;, options);<br> <br>      layer1 = new OpenLayers.Layer.WMS(&quot;OpenLayers WMS&quot;,<br>      &quot;<a href="http://localhost/cgi-bin/mapserv.exe?map=c:/ms4w/apps/openlayers-2.8/data/uk2.map">http://localhost/cgi-bin/mapserv.exe?map=c:/ms4w/apps/openlayers-2.8/data/uk2.map</a>&quot;, { layers: &quot;250&quot; },<br>
      {gutter: 15});<br> <br>      map.addLayer(layer1);<br>      map.zoomToMaxExtent();<br> <br> <br> Thanks for any help in advance<br> <br>Paul