Excuse my inexperience but I have another query about getting query functionality to work in GeoMoose. It seems to be querying the database for a few seconds, then I get no Valid Response and the following error in PHP: <br>
httpd: mappostgis.c:1882: msPostGISLayerResultsGetShape: Assertion `layer-&gt;layerinfo != ((void *)0)&#39; failed.<br><br>I have the following section of mapbook:<br><br>    &lt;service name=&quot;search_oas&quot;&gt;<br>
        &lt;url&gt;php/query.php&lt;/url&gt;<br>        &lt;step type=&quot;input&quot;&gt;<br><br>            &lt;input type=&quot;select&quot; name=&quot;comparitor0&quot; title=&quot;Percentage Travel by UG 2001&quot;&gt;<br>
                &lt;option value=&quot;gt&quot;&gt;Greater Than&lt;/option&gt;<br>                &lt;option value=&quot;eq&quot;&gt;Equal To&lt;/option&gt;<br>                &lt;option value=&quot;lt&quot;&gt;Less Than&lt;/option&gt;<br>
            &lt;/input&gt;<br>            &lt;input type=&quot;user&quot; name=&quot;value0&quot; title=&quot;&quot;/&gt;<br>            &lt;input type=&quot;hidden&quot; name=&quot;highlight&quot; value=&quot;true&quot;/&gt;<br>
            &lt;input type=&quot;hidden&quot; name=&quot;mode&quot; value=&quot;search&quot;/&gt;<br><br>            &lt;input type=&quot;hidden&quot; name=&quot;layer0&quot; value=&quot;uglines/oas&quot;/&gt;<br>            &lt;input type=&quot;hidden&quot; name=&quot;template0&quot; value=&quot;itemquery&quot;/&gt;<br>
            &lt;input type=&quot;hidden&quot; name=&quot;zoom_to_first&quot; value=&quot;false&quot;/&gt;<br>            &lt;input type=&quot;hidden&quot; name=&quot;fieldname0&quot; value=&quot;per_ttw_lu&quot;/&gt;<br>        &lt;/step&gt;<br>
    &lt;/service&gt;<br><br>and the layer definition below:<br><br>LAYER<br>CONNECTIONTYPE postgis<br>NAME &quot;oas&quot;<br>CONNECTION &quot;user=postgres password=postgres dbname=lustations host=localhost&quot;<br>DATA &quot;the_geom from (SELECT gid, the_geom, census_code,  ttw_by_lu, (ttw_by_lu::REAL/tot_pop::REAL)*100 as per_ttw_lu, tot_pop FROM oa_data) as foo using srid=27700 using unique gid&quot;<br>
STATUS ON<br>TYPE POLYGON<br><br>METADATA<br>identify_record &quot;identify_oas.html&quot;<br>itemquery &quot;oa_itemquery.html&quot;<br>END<br><br>CLASS<br>    STYLE<br>        OUTLINECOLOR 0 0 0<br>        #COLOR 216 250 138<br>
        WIDTH 1<br>    END<br>END<br>END<br><br>my oa_itemquery.html looks like this:<br><br>&lt;!-- MapServer Template --&gt;<br>&lt;tr bgcolor=&quot;#DEE5EB&quot;&gt;&lt;td colspan=&quot;2&quot;&gt;&lt;b&gt;&lt;u&gt;Output Areas&lt;/u&gt;&lt;/b&gt;&lt;/tr&gt;<br>
&lt;tr&gt;<br>&lt;td align=&quot;right&quot;&gt;&lt;b&gt;Census Code:&lt;/b&gt;&lt;/td&gt;<br>&lt;td&gt;[census_code]&lt;/td&gt;<br>&lt;/tr&gt;<br>&lt;tr&gt;<br>&lt;td align=&quot;right&quot;&gt;&lt;b&gt;Percentage travel by LU:&lt;/b&gt;&lt;/td&gt;<br>
&lt;td&gt;[per_ttw_lu]&lt;/td&gt;<br>&lt;/tr&gt;<br>&lt;tr&gt;<br>&lt;td&gt;&amp;nbsp;&lt;/td&gt;<br>&lt;td&gt;&amp;nbsp;&lt;/td&gt;<br>&lt;/tr&gt;<br><br>