Your Tiki is not completely installed because Composer has not been run to fetch package dependencies.

"; $content .= "

You need to run sh setup.sh from the command line.

"; $content .= "

See https://doc.tiki.org/Composer for details.

"; createPage($title, $content); exit; } /** * creates the HTML page to be displayed. * * Tiki may not have been installed when we reach here, so we can't use our templating system yet. * This needs to be done before tiki-setup.php is called because tiki-setup.php produces a message formatted for command-line only * * @param string $title page Title * @param mixed $content page Content */ function createPage($title, $content) { echo << $title
Site Logo

$title

$content
Powered by Tiki Wiki CMS Groupware
END; die; }