From ba6765a40301a549f2fcbe5ddcf0dffd53e205fc Mon Sep 17 00:00:00 2001 From: friendica Date: Sun, 23 Mar 2014 15:48:08 -0700 Subject: report curl errors during install when they are most needed --- mod/setup.php | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mod/setup.php') diff --git a/mod/setup.php b/mod/setup.php index d12627e84..83317dc4c 100755 --- a/mod/setup.php +++ b/mod/setup.php @@ -103,6 +103,7 @@ function setup_post(&$a) { $test = z_fetch_url($siteurl."/setup/testrewrite"); if((! $test['success']) || ($test['body'] != 'ok')) { $a->data['url_fail'] = true; + $a->data['url_error'] = $test['error']; return; } } @@ -169,6 +170,8 @@ function setup_content(&$a) { if(x($a->data,'url_fail')) { $install_wizard_pass = 3; $wizard_status = t('Could not connect to specified site URL. Possible SSL certificate or DNS issue.'); + if($a->data['url_error']) + $wizard_status .= ' ' . $a->data['url_error']; } if(x($a->data,'db_create_failed')) { -- cgit v1.2.3