Yes, I'd been messing around with different options for the layers and map, so there were some remnants left over.<br>I made your changes to the Layer parameters and options and what do you know - it all appears fine in FF2.0
 again.<br>Even using port 80.<br>Thanks.<br><br>Now to figure out how to over-ride these event handlers....<br><br><br><div><span class="gmail_quote">On 16/11/06, <b class="gmail_sendername">Christopher Schmidt</b> &lt;<a href="mailto:crschmidt@metacarta.com">
crschmidt@metacarta.com</a>&gt; wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">On Wed, Nov 15, 2006 at 02:47:08PM -0800, Justin Fail wrote:
<br>&gt;<br>&gt; Hi All,<br>&gt; I've recently starting testing with OpenLayers (ie. yesterday) and my test<br>&gt; sites worked fine with version 2.1.<br>&gt; I transferred to version 2.2 today and now my app does not work in Firefox
<br>&gt; 2.0. It works fine in IE 6.<br>&gt; Anything that I'm doing wrong here, or could be doing better?<br><br>There's a couple things I'd mention.<br><br>&gt;&nbsp;&nbsp;&nbsp;&nbsp; var wms = new OpenLayers.Layer.WMS.Untiled( &quot;UCL WMS&quot;,
<br>&gt; &quot;<a href="http://localhost/cgi-bin/mapserv_tracker.exe?service=WMS">http://localhost/cgi-bin/mapserv_tracker.exe?service=WMS</a>&quot;, {layers:<br>&gt; 'Coastline',format:'gif',buffer:1,maxExtent:maxBounds,maxResolution:'auto'}
<br>&gt; );<br><br>You're adding 'buffer', maxExtent, etc. into the params of the layer<br>instead of the options. This should be:<br><br>var wms = new OpenLayers.Layer.WMS.Untiled( &quot;UCL WMS&quot;,<br>&quot;<a href="http://localhost/cgi-bin/mapserv_tracker.exe?service=WMS">
http://localhost/cgi-bin/mapserv_tracker.exe?service=WMS</a>&quot;, {layers:<br>'Coastline',format:'gif'},{buffer:1,maxExtent:maxBounds,maxResolution:'auto'}<br>);<br><br>Additionally, for untiled, buffer doesn't make any difference.
<br><br>However, when I take your code and look at it in FF 1.5 and FF2.0 it<br>seems to work (other than not being able to generate an image). OL 2.2<br>does introduce some rather strict checking of the tile URL to ensure it
<br>matches the tile that was asked for. If you are using a port 80 in your<br>URL, this might be your problem: <a href="http://localhost:80/">http://localhost:80/</a> won't work,<br>because Firefox strips the :80 from the URL of the 
img.src after loading<br>the image. (Improving this behavior is on the chopping block for 2.3.)<br><br>Can you reproduce the failure with any of the examples in the<br>distribution?<br><br>If you need to get up and running, you can use
<br><a href="http://openlayers.org/api/2.1/OpenLayers.js">http://openlayers.org/api/2.1/OpenLayers.js</a> while we work to resolve<br>your issues with 2.2.<br><br>Regards,<br>--<br>Christopher Schmidt<br>MetaCarta<br></blockquote>
</div><br>