>-- Messaggio Originale -- >Date: Tue, 17 Jan 2006 11:12:01 -0600 >Reply-To: Adam J Siber <[EMAIL PROTECTED]> >From: Adam J Siber <[EMAIL PROTECTED]> >Subject: [UMN_MAPSERVER-USERS] php5 Linux >To: [email protected] > > >I am trying to configure mapserver with php5 on linux as a DSO but not >having much success? I have searched the boards/lists for instructions, >hints, etc but have only seen a couple listings which are limited. Could >someone please post a "how to" or some notes on this subject. > >Thank you, >Adam
Adam, You can install Apache2 with --enable-modules=so option: $ ./configure --enable-modules=so $ make $ make install and PHP (as module) in this way: $ ./configure --with-apxs2=/path/to/apxs/executable $ make $ make install The procedure generates a loadable module (libphp5.so).It is necessary to change the Apache configuration file httpd.conf as the following: LoadModule php5_module /path/to/module/ (if not present) Addtype application/x-httpd-php .php .phtml (obviously if you want that PHP manage .php and .phtml files) to allow Apache load the module. After that you can install Mapserver. But, if I'm not in error, Mascript is supported as CGI and not as DSO, so with the previous installation you can have some problems. Regards. Omar _________________________________________________________________ TISCALI ADSL Web&Mail Solo con Tiscali Adsl navighi e telefoni senza canone Telecom a partire da 14,95 Euro/mese. Attivala subito! Per te 500 MB inclusi per navigare, inviare e ricevere messaggi e-mail, foto ed mp3. http://abbonati.tiscali.it/adsl/sa/2wam_tc/
