[mapserver-users] Re: Installing PHP MapScript with MapServer 6.0.0-3 and PHP 5.3.6 on Mac OS X 10.6.8

Léo D. leo_dumont at yahoo.fr
Tue Jul 5 12:19:19 EDT 2011


Thanks to both of you for your answers.

I've allready edit my php.ini to add "extension=php_mapscript.so" and with a
phpinfo() I can see the section about MapScript.
Moreover when I run this script to test if the extension is loaded or not
and I have a positive result, so I think that PHP MapScript is working:

if (!extension_loaded('MapScript')) {
echo"Not loaded";
}
else {
echo"Loaded!";
}

But when I try to run the example script from the mapserver.org
documentation (without the dl() instruction), it doesn't work and I have no
error message, just an empty page. Here is my php code:

<?php
$map = ms_newMapObj("~/macbook/Sites/mapeserver/introduction/test.map");
$image = $map->draw();
$image_url = $image->saveWebImage();

echo'<html>
   <head>
     <title>Exemple : Afficher un shapefile</title>
   </head>
   <body>
      '.$image_url.' 
   </body>
</html>';
?>

And here is my mapfile:

MAP
NAME "Europe en bleu"
SIZE 400 400
STATUS ON
EXTENT -31.2467 27.6065 40.1199 80.762
UNITS DD
SHAPEPATH "~/macbook/Sites/mapserver/introduction/shape/"
	
WEB
  IMAGEPATH '~/macbook/Sites/mapeserver/temp/'
  IMAGEURL  '/temp/'
END

LAYER
  NAME "Europe"
  TYPE POLYGON
  STATUS ON
  DATA "europe"
  CLASS
    STYLE
      COLOR 20 10 110
      OUTLINECOLOR 200 200 200
    END
  END
END

END

Maybe I've made a mistake in one of these files…
Thanks for your help !

Léo

--
View this message in context: http://osgeo-org.1803224.n2.nabble.com/Installing-PHP-MapScript-with-MapServer-6-0-0-3-and-PHP-5-3-6-on-Mac-OS-X-10-6-8-tp6546297p6550486.html
Sent from the Mapserver - User mailing list archive at Nabble.com.


More information about the mapserver-users mailing list