X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Finstall.php;h=81e4805b2e5c7c1ee00ef1945b5dbf87e6293d64;hb=c54a2c1e83822f6e043b449468570d2c9ed3ab3a;hp=ed75e624b58c97a894ec9c92ce4b2bd875e47d49;hpb=a29b7e71532814f548e5b85a5caa9092fade6bfe;p=friendica.git diff --git a/mod/install.php b/mod/install.php old mode 100755 new mode 100644 index ed75e624b5..81e4805b2e --- a/mod/install.php +++ b/mod/install.php @@ -1,9 +1,12 @@ $install_title, @@ -316,7 +319,7 @@ function check_php(&$phpath, &$checks) { $help = ""; if (!$passed) { $help .= t('Could not find a command line version of PHP in the web server PATH.'). EOL; - $help .= t("If you don't have a command line version of PHP installed on server, you will not be able to run the background processing. See 'Setup the poller'") . EOL; + $help .= t("If you don't have a command line version of PHP installed on your server, you will not be able to run the background processing. See 'Setup the worker'") . EOL; $help .= EOL . EOL; $tpl = get_markup_template('field_input.tpl'); $help .= replace_macros($tpl, array( @@ -501,7 +504,7 @@ function check_imagik(&$checks) { if (class_exists('Imagick')) { $imagick = true; - $supported = Photo::supportedTypes(); + $supported = Image::supportedTypes(); if (array_key_exists('image/gif', $supported)) { $gif = true; } @@ -533,9 +536,7 @@ function load_database_rem($v, $i) { } function load_database() { - - require_once("include/dbstructure.php"); - $errors = update_structure(false, true); + $errors = DBStructure::update(false, true); return $errors; } @@ -544,7 +545,7 @@ function what_next() { $baseurl = System::baseUrl(); return t('

What next

') - ."

".t('IMPORTANT: You will need to [manually] setup a scheduled task for the poller.') + ."

".t('IMPORTANT: You will need to [manually] setup a scheduled task for the worker.') .t('Please see the file "INSTALL.txt".') ."

" .t("Go to your new Friendica node registration page and register as new user. Remember to use the same email you have entered as administrator email. This will allow you to enter the site admin panel.")