<html>
<head>
<style>
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 10pt;
font-family:Verdana
}
</style>
</head>
<body class='hmmessage'>
Hello, I have got a problem with the tile.php of a&nbsp;WMS layer.<BR>
&nbsp;<BR>
This layer is of the spanish catastro.<BR>
&nbsp;<BR>
There are some tiles that I can't see, and I go to see the files in the tmp and see tiles white.<BR>
&nbsp;<BR>
When I go to kamap in another time the tiles are white again, and I have got that delete the tiles in the directory tmp.<BR>
Then KAMAP redraw it ok<BR>
&nbsp;<BR>
I think that&nbsp;kamp would must&nbsp;&nbsp;can refresh the screen with this problem even when the configuration of this layer is tilesource: cache<BR>
&nbsp;<BR>
&nbsp;<BR>
In the tile.php there is this code:<BR>
&nbsp;<BR><FONT size=2>
//acquire shared lock for reading to prevent a problem that could occur<BR>
//if a tile exists but is only partially generated.<BR>
flock($fpLockFile, LOCK_SH);<BR>
$h = fopen($szCacheFile, "r");<BR>
header("Content-Type: ".$szImageHeader);<BR>
header("Content-Length: " . filesize($szCacheFile));<BR>
header("Expires: " . date( "D, d M Y H:i:s GMT", time() + 31536000 ));<BR>
header("Cache-Control: max-age=31536000, must-revalidate" );<BR>
fpassthru($h);<BR>
fclose($h);<BR>
//release lock<BR>
fclose($fpLockFile);<BR>
/* bug 1253 - root permissions required to delete cached files */<BR>
umask($orig_umask);<BR></FONT>
&nbsp;<BR>
&nbsp;<BR>
Can somebody help me? Please<BR><BR><BR>
<DIV>Saludos, <BR>----------- <BR>Antonio García Benlloch <BR><BR><STRONG>Correo: <BR></STRONG>angarben@hotmail.com <BR><A href="mailto:angarben@aaa.upv.es">angarben@aaa.upv.es</A> <BR><BR><STRONG>Web: <BR></STRONG>http://personales.alumno.upv.es/~angarben</DIV><BR><BR><BR><BR>&gt; Date: Wed, 3 Sep 2008 12:02:49 -0400<BR>&gt; From: ka-map-users-request@lists.maptools.org<BR>&gt; Subject: ka-Map-users Digest, Vol 41, Issue 1<BR>&gt; To: ka-map-users@lists.maptools.org<BR>&gt; <BR>&gt; Send ka-Map-users mailing list submissions to<BR>&gt; ka-map-users@lists.maptools.org<BR>&gt; <BR>&gt; To subscribe or unsubscribe via the World Wide Web, visit<BR>&gt; http://lists.maptools.org/mailman/listinfo/ka-map-users<BR>&gt; or, via email, send a message with subject or body 'help' to<BR>&gt; ka-map-users-request@lists.maptools.org<BR>&gt; <BR>&gt; You can reach the person managing the list at<BR>&gt; ka-map-users-owner@lists.maptools.org<BR>&gt; <BR>&gt; When replying, please edit your Subject line so it is more specific<BR>&gt; than "Re: Contents of ka-Map-users digest..."<BR>&gt; <BR>&gt; <BR>&gt; Today's Topics:<BR>&gt; <BR>&gt; 1. Re: auto refresh layers (Edward Cooley)<BR>&gt; <BR>&gt; <BR>&gt; ----------------------------------------------------------------------<BR>&gt; <BR>&gt; Message: 1<BR>&gt; Date: Tue, 2 Sep 2008 13:25:33 -0500<BR>&gt; From: Edward Cooley &lt;ecooley@strategy5.com&gt;<BR>&gt; Subject: Re: [ka-Map-users] auto refresh layers<BR>&gt; To: marco mugnaini &lt;sitigenova@gmail.com&gt;<BR>&gt; Cc: ka-map-users@lists.maptools.org<BR>&gt; Message-ID: &lt;D69A4B4D-8A6C-4912-99FA-E1E1DB5CB216@strategy5.com&gt;<BR>&gt; Content-Type: text/plain; charset=US-ASCII; format=flowed; delsp=yes<BR>&gt; <BR>&gt; If you only have a few alerts (less than 50) you should consider using <BR>&gt; geoObjects instead of a layer. That way you can issue an AJAX request <BR>&gt; that returns an updated array of alerts and handle with javascript <BR>&gt; rather than the bulk of refreshing a layer.<BR>&gt; <BR>&gt; Having said that, there is auto-refresh timers built into kamap that <BR>&gt; can be used to refresh a layer.<BR>&gt; <BR>&gt; Here is an example of a layer I use for radar weather images updating <BR>&gt; every 10 minutes.<BR>&gt; <BR>&gt; LAYER<BR>&gt; GROUP "Weather"<BR>&gt; NAME "weather"<BR>&gt; STATUS OFF<BR>&gt; METADATA<BR>&gt; "opacity" "50"<BR>&gt; "redraw_interval" "600"<BR>&gt; "tile_source" "redraw"<BR>&gt; "refresh_interval" "300"<BR>&gt; END<BR>&gt; TYPE RASTER<BR>&gt; STATUS OFF<BR>&gt; DATA "../data/weather/weather.gif"<BR>&gt; END<BR>&gt; <BR>&gt; <BR>&gt; ---<BR>&gt; Edward J. Cooley<BR>&gt; Strategy Systems, Inc.<BR>&gt; http://www.strategysystems.com<BR>&gt; Phone: 479-271-7400 Ext. 103<BR>&gt; Photograph Blog - Photo Galleries<BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; On Aug 22, 2008, at 1:41 AM, marco mugnaini wrote:<BR>&gt; <BR>&gt; &gt; Hello,<BR>&gt; &gt; i'm a rookie for ka-map and i need some information...<BR>&gt; &gt;<BR>&gt; &gt; ka-map it's the right application to make visual alert system?<BR>&gt; &gt;<BR>&gt; &gt; in practice, it's possible to set an autorefresh for the layers?<BR>&gt; &gt;<BR>&gt; &gt; have you any experience in that?<BR>&gt; &gt;<BR>&gt; &gt; ...to make an example: info traffic in real time..<BR>&gt; &gt;<BR>&gt; &gt; thanks to everyone from italy!<BR>&gt; &gt; _______________________________________________<BR>&gt; &gt; ka-Map-users mailing list<BR>&gt; &gt; ka-Map-users@lists.maptools.org<BR>&gt; &gt; http://lists.maptools.org/mailman/listinfo/ka-map-users<BR>&gt; <BR>&gt; <BR>&gt; <BR>&gt; ------------------------------<BR>&gt; <BR>&gt; _______________________________________________<BR>&gt; ka-Map-users mailing list<BR>&gt; ka-Map-users@lists.maptools.org<BR>&gt; http://lists.maptools.org/mailman/listinfo/ka-map-users<BR>&gt; <BR>&gt; <BR>&gt; End of ka-Map-users Digest, Vol 41, Issue 1<BR>&gt; *******************************************<BR><br /><hr />Entra ya en I love Messenger y consigue 30 emoticonos <a href='http://www.vivelive.com/ilovemessenger' target='_new'> ¡Gratis!</a></body>
</html>