CartoWeb 3.4.0 installation

Phân loại:

Requirements libraries and packages:

- Mapserver/Mapscript

Mapserver requires:

- GD library (Currently version 2.0.35).

- Proj4

- GDAL

- GEOS

Installation from source code (steps in order):

1. Install GD (2.0.34 or 2.0.35): ./configure --prefix=$HOME && make && make install && echo "DONE". Hostmonster already has GD 2.0.34 version. This action may not be necessary.

2. Install PROJ4 (4.6.0): ./configure --prefix=$HOME && make && make install && echo "DONE"

3. Install GEOS (3.0.0): ./configure --prefix=$HOME && make && make install && echo "DONE"

4. Install GDAL (1.4.2: make ok, install err/1.5.0: make err): ./configure --prefix=$HOME --with-geos=$HOME/bin/geos-config --with-static-proj4=$HOME --with-php --with-mysql && make && make install && echo "DONE"

5. Install Mapserver (5.0.2): ./configure --prefix=$HOME --with-gd -with-xpm=/usr/X11R6/lib64 --with-proj=$HOME --with-geos=$HOME/bin/geos-config --with-ogr=$HOME/bin/gdal-config --with-gdal=$HOME/bin/gdal-config -with-php=/usr/include/php --with-wfs --with-wfsclient --with-wmsclient && make && make install && echo "DONE"

All compilations are ok.