X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Finstall.php;h=81e4805b2e5c7c1ee00ef1945b5dbf87e6293d64;hb=0b5f7da270bcaa679cb684dbbbbe40781f0b49c6;hp=9c9d60eeffbe535c342117773318c347a5c1b208;hpb=a21f6135fcd8f0bfdb49de38a5ab4954d1784503;p=friendica.git diff --git a/mod/install.php b/mod/install.php old mode 100755 new mode 100644 index 9c9d60eeff..81e4805b2e --- a/mod/install.php +++ b/mod/install.php @@ -1,10 +1,12 @@ 'Setup the worker'") . 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( @@ -502,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; } @@ -534,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; }