Re: [mapserver-users] postgis layer - postgresql table join eror

2012-08-13 Thread thomas bonfort
You're missing a FROM clause, probably something like: DATA 'the_geom FROM (SELECT Pipeline.the_geom AS the_geom, Pipeline.gid AS gid, Pipeline.status AS status, Kondur_block.id_wk AS id_wk FROM Pipeline LEFT JOIN Kondur_block ON Pipeline.id_wk = Kondur_block.id_wk) as subquery USING UNIQUE

Re: [mapserver-users] postgis layer - postgresql table join eror

2012-08-13 Thread surahman putra
Thanks Thomas, But After I add FROM clause, it still give same message. Do you have any idea what should I do to fix this problem? Surahman On Mon, Aug 13, 2012 at 2:26 PM, thomas bonfort thomas.bonf...@gmail.comwrote: You're missing a FROM clause, probably something like: DATA 'the_geom

Re: [mapserver-users] RV: Mapserver ignores classgroup parameters for raster layers?

2012-08-13 Thread Helen San Segundo Navazo
ok, I would try the 6.2, thanks De: Lime, Steve D (DNR) [steve.l...@state.mn.us] Enviado el: viernes, 10 de agosto de 2012 16:49 Para: San Segundo Navazo, Helen; mapserver-users@lists.osgeo.org Asunto: RE: [mapserver-users] Mapserver ignores classgroup

Re: [mapserver-users] The GetFeatureInfo return a GML without a validation schema.

2012-08-13 Thread Rahkonen Jukka
Andrea Peri wrote: Hi, If GetFeatureInfo would produce GML with different schema than WFS GetFeature, how the users are supposed to read it? WMS does not have request DescribeGetFeatureInfoSchema and building such for Mapserver does not feel optimal. So the GetFeatureInfo GML should have a

Re: [mapserver-users] RV: Mapserver ignores classgroup parameters for raster layers?

2012-08-13 Thread Helen San Segundo Navazo
hi, with the 6.2 beta2 version the classgroup with raster layers works. Helen El 13/08/12 10:54, Helen San Segundo Navazo escribió: ok, I would try the 6.2, thanks De: Lime, Steve D (DNR) [steve.l...@state.mn.us] Enviado el: viernes, 10 de agosto de

Re: [mapserver-users] postgis layer - postgresql table join eror

2012-08-13 Thread Stephen Woodbridge
Make sure you sub-query works ins psql or pgadmin first. You care getting a SQL error not a mapserver error. SELECT Pipeline.the_geom AS the_geom, Pipeline.gid AS gid, Pipeline.status AS status, Kondur_block.id_wk AS id_wk FROM Pipeline LEFT JOIN Kondur_block ON

[mapserver-users] php extension

2012-08-13 Thread Jeff Lake
mapserver is working, decided to give the php extension a whirl but this error has me baffled PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/php_mapscript.so' - /usr/lib64/php/modules/php_mapscript.so: undefined symbol: DGifGetScreenDesc in Unknown on line 0

Re: [mapserver-users] php extension

2012-08-13 Thread Jeff McKenna
On 12-08-13 10:19 AM, Jeff Lake wrote: mapserver is working, decided to give the php extension a whirl but this error has me baffled PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/php_mapscript.so' - /usr/lib64/php/modules/php_mapscript.so: undefined

Re: [mapserver-users] php extension

2012-08-13 Thread Daryl Herzmann
On Mon, Aug 13, 2012 at 8:19 AM, Jeff Lake ad...@michiganwxsystem.com wrote: mapserver is working, decided to give the php extension a whirl but this error has me baffled PHP Warning: PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/php_mapscript.so' -

Re: [mapserver-users] php extension

2012-08-13 Thread Jeff Lake
hey Daryl... centos 5.8 64bit ldd /usr/lib64/php/modules/php_mapscript.so linux-vdso.so.1 = (0x7fff1e29a000) libexpat.so.0 = /lib64/libexpat.so.0 (0x2aef63c38000) libgd.so.2 = /usr/lib64/libgd.so.2 (0x2aef63e5b000) libjpeg.so.62 =

[mapserver-users] Projection library error. no options found in 'init' file

2012-08-13 Thread Puneet Kishor
I am, out of the blue, getting the following error [Mon Aug 13 15:55:37 2012].825787 msProcessProjection(): Projection library error. no options found in 'init' file What is it trying to tell me? This was working fine as of a few days ago, and I don't recall messing with it.

Re: [mapserver-users] Projection library error. no options found in 'init' file

2012-08-13 Thread Daniel Morissette
On 12-08-13 5:03 PM, Puneet Kishor wrote: I am, out of the blue, getting the following error [Mon Aug 13 15:55:37 2012].825787 msProcessProjection(): Projection library error. no options found in 'init' file What is it trying to tell me? This was working fine as of a few days

Re: [mapserver-users] Projection library error. no options found in 'init' file

2012-08-13 Thread Stephen Woodbridge
On 8/13/2012 5:03 PM, Puneet Kishor wrote: I am, out of the blue, getting the following error [Mon Aug 13 15:55:37 2012].825787 msProcessProjection(): Projection library error. no options found in 'init' file What is it trying to tell me? This was working fine as of a few days

Re: [mapserver-users] Projection library error. no options found in 'init' file

2012-08-13 Thread Puneet Kishor
Never mind I upgraded macports, and that whacked my epsg file. Restored that, and am back in bidness. On Aug 13, 2012, at 4:03 PM, Puneet Kishor punk.k...@gmail.com wrote: I am, out of the blue, getting the following error [Mon Aug 13 15:55:37 2012].825787 msProcessProjection():

Re: [mapserver-users] postgis layer - postgresql table join eror

2012-08-13 Thread surahman putra
I have change the SQL to this one: SELECT Pipeline.the_geom AS the_geom, Pipeline.gid AS gid, Pipeline.status AS status, Kondur_block.id_wk AS id_wk FROMPipeline LEFT JOIN Kondur_block ON Pipeline.id_wk = Kondur_block.id_wk and it works on psql, but when I tried

[mapserver-users] php mapscript querymap doesnt highlight

2012-08-13 Thread Jessica Clarke
Hi, I'm trying to highlight the queried shape, using mapscript. It doesn't work if I include the querymap in the mapfile QUERYMAP STATUS ON STYLE HILITE END and it doesn't work in the php file $map-querymap-set('style', 2); Can someone please give me an example of how to do this? the