From 75248512cc5b208a92588f0520b37b5fc7003be9 Mon Sep 17 00:00:00 2001 From: Friendika Date: Thu, 18 Nov 2010 15:57:09 -0800 Subject: [PATCH] more pre-install checking --- mod/install.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mod/install.php b/mod/install.php index 86edc4c287..7f150ef1dc 100644 --- a/mod/install.php +++ b/mod/install.php @@ -122,6 +122,8 @@ function check_php(&$phpath) { } function check_funcs() { + if((function_exists('apache_get_modules')) && (! in_array('mod_rewrite',apache_get_modules()))) + notice( t('Error: Apache webserver mod-rewrite module is required but not installed.') . EOL); if(! function_exists('curl_init')) notice( t('Error: libCURL PHP module required but not installed.') . EOL); if(! function_exists('imagecreatefromjpeg')) @@ -130,6 +132,8 @@ function check_funcs() { notice( t('Error: openssl PHP module required but not installed.') . EOL); if(! function_exists('mysqli_connect')) notice( t('Error: mysqli PHP module required but not installed.') . EOL); + if((x($_SESSION,'sysmsg')) && strlen($_SESSION['sysmsg'])) + notice( t('Please see the file "INSTALL".') . EOL); }