blob: 6e75204a61528534730217608ce5f3c8497882ab (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Use the magic mime file from Apache as the mime database
if [ -a /etc/httpd/magic ]; then
ln -s /etc/httpd/magic /etc/magic.mime
else
cat << EOF
This extension requires a MIME database /etc/magic.mime. You can
symlink to the one included with Apache with the following command
# ln -s /etc/httpd/magic /etc/magic.mime
EOF
fi
if ! grep ^extension=fileinfo.so /etc/httpd/php.ini 2>&1 > /dev/null; then
cat << EOF
Add the following line to the /etc/httpd/php.ini configuration
file in order to enable this extension
extension=fileinfo.so
EOF
fi
|