[mapserver-users] RE: Upgrading 5.2 - 5.4 generating CGI error (5.1 and 6.0) ... Possible BUG?

2009-06-10 Thread Passmore, James H
I'm not sure if this helps anyone debug this issue, but I used MS4W 2.3.1 and then MapServer version 5.4.0-rc2 to obtain my binaries. I have these working on Microsoft Server 2003 / IIS 6 with shapefiles as my data to provide a WMS e.g.

Re: [mapserver-users] Re: Upgrading 5.2 - 5.4 generating CGI error on IIS(5.1 and 6.0) ... Possible BUG?

2009-06-10 Thread Paul james
I don´t think its related to security settings... I can run the CGI on 5.2 ... And as well with fastcgi on 5.4 ... Anyway I gave all permission to all user in mapserver directory and app directory... Nothing changes... Anyone test that with Postgis layer? I´m trying to get a shapefile to test ...

Re: [mapserver-users] Re: Upgrading 5.2 - 5.4 generating CGI error on IIS(5.1 and 6.0) ... Possible BUG?

2009-06-10 Thread Tamas Szekeres
It would anyway be helpful if you could describe the steps to reproduce the issue. I'm afraid I won't be able to find out the problem without inspecting that locally by using a debug version of the builds. There have been a lot of changes between 5.2 and 5.4 so it's quite difficult to identify the

Re: [mapserver-users] Re: Upgrading 5.2 - 5.4 generating CGI error on IIS(5.1 and 6.0) ... Possible BUG?

2009-06-10 Thread Paul james
I tested with a Shapefile, same bug with 5.4 and CGI Working fine with fastcgi... Paul On Wed, Jun 10, 2009 at 1:14 PM, Tamas Szekeres szeker...@gmail.com wrote: It would anyway be helpful if you could describe the steps to reproduce the issue. I'm afraid I won't be able to find out the

RE: [mapserver-users] Re: Upgrading 5.2 - 5.4 generating CGI error on IIS(5.1 and 6.0) ... Possible BUG?

2009-06-10 Thread Brian Fischer
My tests where with shapefiles as well and I was using the MS4W 3.0 Beta 2 download. I was not doing anything fancy with IIS just tried to upgrade an existing application that is working fine with 5.2 to 5.4. I think if you were to test with the MS4W 3.0 beta release that hopefully would

Re: [mapserver-users] Rendering order of objects in a layer

2009-06-10 Thread Thomas Bonfort
three different layers is not optimal, as the outlines won't join nicely together (of course, if you aren't using outlines, then no problem). You can do this in mapserver with a postgis query: DATA the_geom from (select gid, the_geom, ... from roads order by importance asc )as foo using unique

Re: [mapserver-users] Re: Upgrading 5.2 - 5.4 generating CGI error on IIS(5.1 and 6.0) ... Possible BUG?

2009-06-10 Thread Tamas Szekeres
2009/6/10 Brian Fischer bfisc...@houstoneng.com My tests where with shapefiles as well and I was using the MS4W 3.0 Beta 2 download. I was not doing anything fancy with IIS just tried to upgrade an existing application that is working fine with 5.2 to 5.4. I think if you were to test with

Re: [mapserver-users] cartographic lines

2009-06-10 Thread David Nugent
On Tue, 09 Jun 2009 16:21:32 +1000, David Nugent dav...@datalinktech.com.au wrote: On Tue, 09 Jun 2009 14:06:09 +1000, Rahkonen Jukka jukka.rahko...@mmmtike.fi wrote: Thomas Bonfort seems to do it this way: CLASS EXPRESSION primary STYLE WIDTH 14

Re: [mapserver-users] Rendering order of objects in a layer

2009-06-10 Thread David Nugent
On Thu, 11 Jun 2009 02:08:54 +1000, Dan Little danlit...@yahoo.com wrote: If you're already pulling from a view, you might want to consider three views: interstates highways local roads (or how ever you layer it) Yep, that is what I was originally doing, but I broke it by purposely

Re: [mapserver-users] cartographic lines

2009-06-10 Thread David Nugent
On Thu, 11 Jun 2009 14:58:47 +1000, Thomas Bonfort thomas.bonf...@camptocamp.com wrote: a variation of this a couple of weeks back I kept getting the mapserver message: Cartoline drawing is deprecated with AGG, so I figured that wasn't the correct way to do it. :-) Just to follow this up...

Re: [mapserver-users] Rendering order of objects in a layer

2009-06-10 Thread Thomas Bonfort
I will try playing with ordering in the DATA property as Thomas suggests. I wasn't aware it would handle order by (but only too aware that while being sql like it isn't exactly sql :-)). it is *exactly sql* : that query string is being sent to your database, so you can do joins, groupby's,