<blockquote style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;" class="gmail_quote">Could you provide an example URL you are using to test out the WMS-T?
 I am using WMS-T on 5.6.3 without any known issues.  Please note that
if your time table gets very large, you may hit this quirk:<br></blockquote><br>I am using URL like:<br><a href="http://mapserver-tutorial/cgi-bin/mapserv?map=/home/vbox/map_directory/tile_time_2.map&amp;layer=radar&amp;layer=time_idx_pg&amp;mode=map&amp;TIME=2004-01-01T10:10:00">http://mapserver-tutorial/cgi-bin/mapserv?map=/home/vbox/map_directory/tile_time_2.map&amp;layer=radar&amp;layer=time_idx_pg&amp;mode=map&amp;TIME=2004-01-01T10:10:00</a><br>
<br>It shows an image but always the first -&gt; /home/vbox/Downloads/animacio/sat1.tif , that have the timestamp: 2007-05-11 10:00Z<br><br>My table its very little, I was wrong about the version, is the 5.4.2, i&#39;ll try to do the same with the 5.6 but it&#39;s very strange that any configuration that I tried doesn&#39;t work.<br>
<br><blockquote><blockquote style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;" class="gmail_quote">need to be in the METADATA section of the &quot;sat_w&quot; layer.<br></blockquote>
</blockquote>I tried a lot of combinations, also with all the metadata in sat_w like &quot;official&quot; tutorial<br><br><br>thanks a lot!<br><br><br><br><br><div class="gmail_quote">2010/7/1 Alexander Petkov <span dir="ltr">&lt;<a href="mailto:greenkov@gmail.com">greenkov@gmail.com</a>&gt;</span><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div><div></div><div class="h5">On Thu, Jul 1, 2010 at 6:27 AM, rai 8 &lt;<a href="mailto:max1000@gmail.com">max1000@gmail.com</a>&gt; wrote:<br>

&gt; Hello,<br>
&gt;<br>
&gt; I&#39;ve been working with mapserver to get a map with time support, time<br>
 &gt; parameter, I followed the tutorial in documetation<br>
&gt; <a href="http://mapserver.org/ogc/wms_time.html" target="_blank">http://mapserver.org/ogc/wms_time.html</a> and this post<br>
&gt; <a href="http://osgeo-org.1803224.n2.nabble.com/Accessing-images-using-time-dimension-td1991324.html#a1991324" target="_blank">http://osgeo-org.1803224.n2.nabble.com/Accessing-images-using-time-dimension-td1991324.html#a1991324</a><br>

&gt; and I can&#39;t run the mapserver to change the image with a time parameter.<br>
&gt;<br>
&gt; I test several configurations but any works, the last is the same like the<br>
&gt; post in the maillist, this is what i&#39;ve done:<br>
&gt;<br>
&gt; in a postgis database<br>
&gt;<br>
&gt; create table satellite (image_path text, image_time timestamp);<br>
&gt; select AddGeometryColumn(&#39;satellite&#39;, &#39;the_geom&#39;, 4326, &#39;POLYGON&#39;, 2);<br>
&gt;<br>
&gt; insert into satellite (image_path, image_time, the_geom)<br>
&gt; values (&#39;/home/vbox/Downloads/animacio/sat1.tif&#39;, &#39;2007-05-11 10:00Z&#39;,<br>
&gt; GeomFromText(&#39;POLYGON((-31.82 75.55, -31.82 26.5, 51.31 26.5,51.31 75.55,<br>
&gt; -31.82 75.55))&#39;, 4326));<br>
&gt;<br>
&gt; insert into satellite (image_path, image_time, the_geom)<br>
&gt; values (&#39;/home/vbox/Downloads/animacio/sat2.tif&#39;, &#39;2007-05-11 11:00Z&#39;,<br>
&gt; GeomFromText(&#39;POLYGON((-31.82 75.55, -31.82 26.5, 51.31 26.5,51.31 75.55,<br>
&gt; -31.82 75.55))&#39;, 4326));<br>
&gt;<br>
&gt;<br>
&gt; and the map file:<br>
&gt;<br>
&gt;  LAYER<br>
&gt;     NAME    &quot;time_w&quot;<br>
&gt;     TYPE    POLYGON<br>
&gt;     STATUS    ON<br>
&gt;     CONNECTIONTYPE  POSTGIS<br>
&gt;     CONNECTION    &quot;dbname=tile_index host=127.0.0.1 user=postgres<br>
&gt; password=xxxxxx&quot;<br>
&gt;     DATA    &quot;the_geom from satellite using unique oid using srid = 4326&quot;<br>
&gt;     METADATA<br>
&gt;         &quot;wms_title&quot;    &quot;time_index_w&quot;<br>
&gt;         &quot;wms_srs&quot;    &quot;EPSG:4326&quot;<br>
&gt;         &quot;wms_timeextent&quot;    &quot;2007-01-01/2007-12-31&quot;<br>
&gt;         &quot;wms_timedefault&quot;   &quot;2007-05-11T11:00:00Z&quot;<br>
&gt;         &quot;wms_timeitem&quot;    &quot;image_time&quot; #a column in postgis table of type<br>
&gt;     END<br>
&gt;   END<br>
&gt;<br>
&gt;   LAYER<br>
&gt;     NAME    &quot;sat_w&quot;<br>
&gt;     STATUS  ON<br>
&gt;     TYPE    RASTER<br>
&gt;     METADATA<br>
&gt;         &quot;wms_title&quot;    &quot;Satellite&quot;<br>
&gt;         &quot;wms_timeextent&quot;    &quot;2007-01-01/2007-12-31&quot;<br>
&gt;     END<br>
&gt;     PROJECTION<br>
&gt;       &quot;init=epsg:4326&quot;<br>
&gt;     END<br>
&gt;     TILEINDEX &quot;time_w&quot; # Layer name containing time index<br>
&gt;     TILEITEM  &quot;image_path&quot; # DB column containing path to image<br>
&gt;   END<br>
&gt;<br>
&gt;<br>
&gt; anyone finds some error?<br>
&gt;<br>
&gt;<br>
&gt; thanks<br>
<br>
</div></div>The time-related metadata items:<br>
<div class="im"><br>
&quot;wms_timeextent&quot;    &quot;2007-01-01/2007-12-31&quot;<br>
        &quot;wms_timedefault&quot;   &quot;2007-05-11T11:00:00Z&quot;<br>
        &quot;wms_timeitem&quot;    &quot;image_time&quot; #a column in postgis table of type<br>
<br>
<br>
</div>need to be in the METADATA section of the &quot;sat_w&quot; layer.<br>
<br>
Alex<br>
</blockquote></div><br>