Configurazioni Apache, PHP e MySql

Su Luke ho installato Fedora Core 3. Avrei preferito un’altra distribuzione ma voglio avere la stessa che è installata sul server online (non decisa da me) in modo da non ritrovarmi poi delle sorprese in fase di pubblicazione online.

Apache

Versione 2.0.59 con questo configure:
[root@Luke httpd-2.0.59]# cat config.nice
#! /bin/sh
#
# Created by configure

“./configure” \
“–enable-so” \
“–enable-rewrite” \
“$@”
[root@Luke httpd-2.0.59]#

PHP
Versione 5.1.5 con questo configure:
[root@Luke php-5.1.5]# cat config.nice
#! /bin/sh
#
# Created by configure

‘./configure’ \
‘–with-apxs2=/usr/local/apache2/bin/apxs’ \
‘–with-config-file-path=/etc’ \
‘–with-xml’ \
‘–enable-bcmath’ \
‘–enable-calendar’ \
‘–enable-ftp’ \
‘–with-gd’ \
‘–with-jpeg-dir=/usr/local’ \
‘–with-png-dir=/usr/local’ \
‘–with-kerberos’ \
‘–enable-magic-quotes’ \
‘–with-mysql=/usr/local/mysql/’ \
‘–enable-discard-path’ \
‘–with-pear’ \
‘–enable-sockets’ \
‘–enable-track-vars’ \
‘–with-freetype-dir=/usr’ \
‘–enable-gd-native-ttf’ \
‘–enable-versioning’ \
‘–with-zlib’ \
“$@”
[root@Luke php-5.1.5]#

Mysql
Versione 5.0.21 con questo configure:
[root@Luke mysql-5.0.21]# ./configure --prefix=/usr/local/mysql --enable-local-infile

Lascia una Risposta