diff options
author | zotlabs <mike@macgirvin.com> | 2016-10-27 19:02:27 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2016-10-27 19:02:27 -0700 |
commit | 9c05f37c0f270cfc7a220060f5ef19b5a701a0ba (patch) | |
tree | 0eb22304c659a7a33cb6b32b89478ac353b84a03 /Zotlabs/Module/Setup.php | |
parent | b5c72611b45eba71bdcf6e4afe391fa88fc8a964 (diff) | |
download | volse-hubzilla-9c05f37c0f270cfc7a220060f5ef19b5a701a0ba.tar.gz volse-hubzilla-9c05f37c0f270cfc7a220060f5ef19b5a701a0ba.tar.bz2 volse-hubzilla-9c05f37c0f270cfc7a220060f5ef19b5a701a0ba.zip |
update setup and install documents for PDO and the freebsd issue with
dns_get_record()
Diffstat (limited to 'Zotlabs/Module/Setup.php')
-rw-r--r-- | Zotlabs/Module/Setup.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index 18a20885b..fde9fe823 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -501,7 +501,7 @@ class Setup extends \Zotlabs\Web\Controller { $this->check_add($ck_funcs, t('libCurl PHP module'), true, true); $this->check_add($ck_funcs, t('GD graphics PHP module'), true, true); $this->check_add($ck_funcs, t('OpenSSL PHP module'), true, true); - $this->check_add($ck_funcs, t('mysqli or postgres PHP module'), true, true); + $this->check_add($ck_funcs, t('PDO database PHP module'), true, true); $this->check_add($ck_funcs, t('mb_string PHP module'), true, true); $this->check_add($ck_funcs, t('xml PHP module'), true, true); @@ -531,9 +531,9 @@ class Setup extends \Zotlabs\Web\Controller { $ck_funcs[2]['status'] = false; $ck_funcs[2]['help'] = t('Error: openssl PHP module required but not installed.'); } - if(! function_exists('mysqli_connect') && !function_exists('pg_connect')) { + if(! class_exists('PDO')) { $ck_funcs[3]['status'] = false; - $ck_funcs[3]['help'] = t('Error: mysqli or postgres PHP module required but neither are installed.'); + $ck_funcs[3]['help'] = t('Error: PDO database PHP module required but not installed.'); } if(! function_exists('mb_strlen')) { $ck_funcs[4]['status'] = false; |