<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
</head>
<body bgcolor="#ffffff" text="#000000">
<font size="-1"><font face="Arial">Dear All,<br>
<br>
I'm trying to change to SVG output format following this tutorial:
<a class="moz-txt-link-freetext" href="http://mapserver.gis.umn.edu/docs/howto/svg-howto">http://mapserver.gis.umn.edu/docs/howto/svg-howto</a><br>
Mapserver generates fine the svg output (a simple picture) with this
sample script,<br>
</font></font>
<pre class="literal-block">&lt;?php

  dl("php_mapscript.so");

  $oMap = ms_newmapObj("my/path/to/my-svg.map");

  $img = $oMap-&gt;draw();

  header("Content-type: image/svg+xml");

  $url = $img-&gt;saveImage("");

?&gt;      
</pre>
But if I try to open the same map file in chameleon environment it just
doesn't display the map...what could be wrong?<br>
<br>
Any help would be very much appreciated!<br>
<br>
Thanks,<br>
<br>
Attila<br>
</body>
</html>