3 * @file mod/install.php
7 use Friendica\Core\Install;
8 use Friendica\Core\L10n;
9 use Friendica\Core\System;
10 use Friendica\Database\DBA;
11 use Friendica\Util\Temporal;
13 $install_wizard_pass = 1;
15 function install_init(App $a) {
17 // $baseurl/install/testrwrite to test if rewite in .htaccess is working
18 if ($a->argc == 2 && $a->argv[1] == "testrewrite") {
23 // We overwrite current theme css, because during install we could not have a working mod_rewrite
24 // so we could not have a css at all. Here we set a static css file for the install procedure pages
26 $a->setConfigValue('system', 'value', '../install');
27 $a->theme['stylesheet'] = System::baseUrl()."/view/install/style.css";
29 global $install_wizard_pass;
30 if (x($_POST, 'pass')) {
31 $install_wizard_pass = intval($_POST['pass']);
36 function install_post(App $a) {
37 global $install_wizard_pass;
39 switch($install_wizard_pass) {
43 break; // just in case return don't return :)
45 $urlpath = $a->get_path();
46 $dbhost = notags(trim($_POST['dbhost']));
47 $dbuser = notags(trim($_POST['dbuser']));
48 $dbpass = notags(trim($_POST['dbpass']));
49 $dbdata = notags(trim($_POST['dbdata']));
50 $phpath = notags(trim($_POST['phpath']));
52 require_once("include/dba.php");
53 if (!DBA::connect($dbhost, $dbuser, $dbpass, $dbdata)) {
54 $a->data['db_conn_failed'] = true;
60 $urlpath = $a->get_path();
61 $dbhost = notags(trim($_POST['dbhost']));
62 $dbuser = notags(trim($_POST['dbuser']));
63 $dbpass = notags(trim($_POST['dbpass']));
64 $dbdata = notags(trim($_POST['dbdata']));
65 $phpath = notags(trim($_POST['phpath']));
66 $timezone = notags(trim($_POST['timezone']));
67 $language = notags(trim($_POST['language']));
68 $adminmail = notags(trim($_POST['adminmail']));
71 DBA::connect($dbhost, $dbuser, $dbpass, $dbdata);
73 $errors = Install::createConfig($urlpath, $dbhost, $dbuser, $dbpass, $dbdata, $phpath, $timezone, $language, $adminmail);
76 $a->data['db_failed'] = $errors;
80 $errors = Install::installDatabaseStructure();
83 $a->data['db_failed'] = $errors;
85 $a->data['db_installed'] = true;
93 function install_content(App $a) {
95 global $install_wizard_pass;
98 $install_title = L10n::t('Friendica Communications Server - Setup');
102 if (x($a->data, 'db_conn_failed')) {
103 $install_wizard_pass = 2;
104 $wizard_status = L10n::t('Could not connect to database.');
106 if (x($a->data, 'db_create_failed')) {
107 $install_wizard_pass = 2;
108 $wizard_status = L10n::t('Could not create table.');
111 $db_return_text = "";
112 if (x($a->data, 'db_installed')) {
113 $txt = '<p style="font-size: 130%;">';
114 $txt .= L10n::t('Your Friendica site database has been installed.') . EOL;
115 $db_return_text .= $txt;
118 if (x($a->data, 'db_failed')) {
119 $txt = L10n::t('You may need to import the file "database.sql" manually using phpmyadmin or mysql.') . EOL;
120 $txt .= L10n::t('Please see the file "INSTALL.txt".') . EOL ."<hr>";
121 $txt .= "<pre>".$a->data['db_failed'] . "</pre>". EOL;
122 $db_return_text .= $txt;
125 if (DBA::$connected) {
126 $r = q("SELECT COUNT(*) as `total` FROM `user`");
127 if (DBA::isResult($r) && $r[0]['total']) {
128 $install_wizard_pass = 2;
129 $wizard_status = L10n::t('Database already in use.');
133 if (x($a->data, 'txt') && strlen($a->data['txt'])) {
134 $db_return_text .= manual_config($a);
137 if ($db_return_text != "") {
138 $tpl = get_markup_template('install.tpl');
139 return replace_macros($tpl, [
140 '$title' => $install_title,
142 '$text' => $db_return_text . what_next(),
146 switch ($install_wizard_pass) {
147 case 1: { // System check
149 $phpath = defaults($_POST, 'phpath', 'php');
151 list($checks, $checkspassed) = Install::check($phpath);
153 $tpl = get_markup_template('install_checks.tpl');
154 $o .= replace_macros($tpl, [
155 '$title' => $install_title,
156 '$pass' => L10n::t('System check'),
157 '$checks' => $checks,
158 '$passed' => $checkspassed,
159 '$see_install' => L10n::t('Please see the file "INSTALL.txt".'),
160 '$next' => L10n::t('Next'),
161 '$reload' => L10n::t('Check again'),
162 '$phpath' => $phpath,
163 '$baseurl' => System::baseUrl(),
168 case 2: { // Database config
170 $dbhost = notags(trim(defaults($_POST, 'dbhost' , 'localhost')));
171 $dbuser = notags(trim(defaults($_POST, 'dbuser' , '' )));
172 $dbpass = notags(trim(defaults($_POST, 'dbpass' , '' )));
173 $dbdata = notags(trim(defaults($_POST, 'dbdata' , '' )));
174 $phpath = notags(trim(defaults($_POST, 'phpath' , '' )));
175 $adminmail = notags(trim(defaults($_POST, 'adminmail', '' )));
177 $tpl = get_markup_template('install_db.tpl');
178 $o .= replace_macros($tpl, [
179 '$title' => $install_title,
180 '$pass' => L10n::t('Database connection'),
181 '$info_01' => L10n::t('In order to install Friendica we need to know how to connect to your database.'),
182 '$info_02' => L10n::t('Please contact your hosting provider or site administrator if you have questions about these settings.'),
183 '$info_03' => L10n::t('The database you specify below should already exist. If it does not, please create it before continuing.'),
185 '$status' => $wizard_status,
187 '$dbhost' => ['dbhost', L10n::t('Database Server Name'), $dbhost, '', 'required'],
188 '$dbuser' => ['dbuser', L10n::t('Database Login Name'), $dbuser, '', 'required', 'autofocus'],
189 '$dbpass' => ['dbpass', L10n::t('Database Login Password'), $dbpass, L10n::t("For security reasons the password must not be empty"), 'required'],
190 '$dbdata' => ['dbdata', L10n::t('Database Name'), $dbdata, '', 'required'],
191 '$adminmail' => ['adminmail', L10n::t('Site administrator email address'), $adminmail, L10n::t('Your account email address must match this in order to use the web admin panel.'), 'required', 'autofocus', 'email'],
193 '$lbl_10' => L10n::t('Please select a default timezone for your website'),
195 '$baseurl' => System::baseUrl(),
197 '$phpath' => $phpath,
199 '$submit' => L10n::t('Submit'),
203 case 3: { // Site settings
204 $dbhost = ((x($_POST, 'dbhost')) ? notags(trim($_POST['dbhost'])) : 'localhost');
205 $dbuser = notags(trim($_POST['dbuser']));
206 $dbpass = notags(trim($_POST['dbpass']));
207 $dbdata = notags(trim($_POST['dbdata']));
208 $phpath = notags(trim($_POST['phpath']));
210 $adminmail = notags(trim($_POST['adminmail']));
211 $timezone = ((x($_POST, 'timezone')) ? ($_POST['timezone']) : 'America/Los_Angeles');
212 /* Installed langs */
213 $lang_choices = L10n::getAvailableLanguages();
215 $tpl = get_markup_template('install_settings.tpl');
216 $o .= replace_macros($tpl, [
217 '$title' => $install_title,
218 '$pass' => L10n::t('Site settings'),
220 '$status' => $wizard_status,
222 '$dbhost' => $dbhost,
223 '$dbuser' => $dbuser,
224 '$dbpass' => $dbpass,
225 '$dbdata' => $dbdata,
226 '$phpath' => $phpath,
228 '$adminmail' => ['adminmail', L10n::t('Site administrator email address'), $adminmail, L10n::t('Your account email address must match this in order to use the web admin panel.'), 'required', 'autofocus', 'email'],
231 '$timezone' => Temporal::getTimezoneField('timezone', L10n::t('Please select a default timezone for your website'), $timezone, ''),
232 '$language' => ['language', L10n::t('System Language:'), 'en', L10n::t('Set the default language for your Friendica installation interface and to send emails.'), $lang_choices],
233 '$baseurl' => System::baseUrl(),
237 '$submit' => L10n::t('Submit'),
246 function manual_config(App $a) {
247 $data = htmlentities($a->data['txt'],ENT_COMPAT, 'UTF-8');
248 $o = L10n::t('The database configuration file "config/local.ini.php" could not be written. Please use the enclosed text to create a configuration file in your web server root.');
249 $o .= "<textarea rows=\"24\" cols=\"80\" >$data</textarea>";
253 function load_database_rem($v, $i) {
255 if (strlen($l)>1 && ($l[0] == "-" || ($l[0] == "/" && $l[1] == "*"))) {
262 function what_next() {
263 $baseurl = System::baseUrl();
265 L10n::t('<h1>What next</h1>')
266 ."<p>".L10n::t('IMPORTANT: You will need to [manually] setup a scheduled task for the worker.')
267 .L10n::t('Please see the file "INSTALL.txt".')
269 .L10n::t('Go to your new Friendica node <a href="%s/register">registration page</a> 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.', $baseurl)