3 <title>Tiny Tiny RSS - Installer</title>
4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
5 <link rel="stylesheet" type="text/css" href="../utility.css">
6 <style type="text/css">
7 textarea { font-size : 12px; }
13 function make_password($length = 8) {
16 $possible = "0123456789abcdfghjkmnpqrstvwxyzABCDFGHJKMNPQRSTVWXYZ*%+^";
20 while ($i < $length) {
21 $char = substr($possible, mt_rand(0, strlen($possible)-1), 1);
23 if (!strstr($password, $char)) {
32 function sanity_check($db_type) {
35 if (version_compare(PHP_VERSION, '5.3.0', '<')) {
36 array_push($errors, "PHP version 5.3.0 or newer required.");
39 if (!function_exists("curl_init") && !ini_get("allow_url_fopen")) {
40 array_push($errors, "PHP configuration option allow_url_fopen is disabled, and CURL functions are not present. Either enable allow_url_fopen or install PHP extension for CURL.");
43 if (!function_exists("json_encode")) {
44 array_push($errors, "PHP support for JSON is required, but was not found.");
47 if ($db_type == "mysql" && !function_exists("mysql_connect") && !function_exists("mysqli_connect")) {
48 array_push($errors, "PHP support for MySQL is required for configured $db_type in config.php.");
51 if ($db_type == "pgsql" && !function_exists("pg_connect")) {
52 array_push($errors, "PHP support for PostgreSQL is required for configured $db_type in config.php");
55 if (!function_exists("mb_strlen")) {
56 array_push($errors, "PHP support for mbstring functions is required but was not found.");
59 if (!function_exists("hash")) {
60 array_push($errors, "PHP support for hash() function is required but was not found.");
63 if (!function_exists("ctype_lower")) {
64 array_push($errors, "PHP support for ctype functions are required by HTMLPurifier.");
67 if (!function_exists("iconv")) {
68 array_push($errors, "PHP support for iconv is required to handle multiple charsets.");
71 /* if (ini_get("safe_mode")) {
72 array_push($errors, "PHP safe mode setting is not supported.");
75 if (!class_exists("DOMDocument")) {
76 array_push($errors, "PHP support for DOMDocument is required, but was not found.");
82 function print_error($msg) {
83 print "<div class='error'><span><img src='../images/sign_excl.svg'></span>
84 <span>$msg</span></div>";
87 function print_notice($msg) {
88 print "<div class=\"notice\">
89 <span><img src=\"../images/sign_info.svg\"></span><span>$msg</span></div>";
92 function db_connect($host, $user, $pass, $db, $type, $port = false) {
93 if ($type == "pgsql") {
95 $string = "dbname=$db user=$user";
98 $string .= " password=$pass";
102 $string .= " host=$host";
106 $string = "$string port=" . $port;
109 $link = pg_connect($string);
113 } else if ($type == "mysql") {
114 if (function_exists("mysqli_connect")) {
116 return mysqli_connect($host, $user, $pass, $db, $port);
118 return mysqli_connect($host, $user, $pass, $db);
121 $link = mysql_connect($host, $user, $pass);
123 $result = mysql_select_db($db, $link);
124 if ($result) return $link;
130 function make_config($DB_TYPE, $DB_HOST, $DB_USER, $DB_NAME, $DB_PASS,
131 $DB_PORT, $SELF_URL_PATH) {
133 $data = explode("\n", file_get_contents("../config.php-dist"));
139 if (function_exists("mcrypt_decrypt")) {
140 $crypt_key = make_password(24);
145 foreach ($data as $line) {
146 if (preg_match("/define\('DB_TYPE'/", $line)) {
147 $rv .= "\tdefine('DB_TYPE', '$DB_TYPE');\n";
148 } else if (preg_match("/define\('DB_HOST'/", $line)) {
149 $rv .= "\tdefine('DB_HOST', '$DB_HOST');\n";
150 } else if (preg_match("/define\('DB_USER'/", $line)) {
151 $rv .= "\tdefine('DB_USER', '$DB_USER');\n";
152 } else if (preg_match("/define\('DB_NAME'/", $line)) {
153 $rv .= "\tdefine('DB_NAME', '$DB_NAME');\n";
154 } else if (preg_match("/define\('DB_PASS'/", $line)) {
155 $rv .= "\tdefine('DB_PASS', '$DB_PASS');\n";
156 } else if (preg_match("/define\('DB_PORT'/", $line)) {
157 $rv .= "\tdefine('DB_PORT', '$DB_PORT');\n";
158 } else if (preg_match("/define\('SELF_URL_PATH'/", $line)) {
159 $rv .= "\tdefine('SELF_URL_PATH', '$SELF_URL_PATH');\n";
160 } else if (preg_match("/define\('FEED_CRYPT_KEY'/", $line)) {
161 $rv .= "\tdefine('FEED_CRYPT_KEY', '$crypt_key');\n";
162 } else if (!$finished) {
166 if (preg_match("/\?\>/", $line)) {
174 function db_query($link, $query, $type, $die_on_error = true) {
175 if ($type == "pgsql") {
176 $result = pg_query($link, $query);
178 $query = htmlspecialchars($query); // just in case
180 die("Query <i>$query</i> failed [$result]: " . ($link ? pg_last_error($link) : "No connection"));
184 } else if ($type == "mysql") {
186 if (function_exists("mysqli_connect")) {
187 $result = mysqli_query($link, $query);
189 $result = mysql_query($query, $link);
192 $query = htmlspecialchars($query);
194 die("Query <i>$query</i> failed: " . ($link ? mysql_error($link) : "No connection"));
201 function make_self_url_path() {
202 $url_path = ($_SERVER['HTTPS'] != "on" ? 'http://' : 'https://') . $_SERVER["HTTP_HOST"] . parse_url($_SERVER["REQUEST_URI"], PHP_URL_PATH);
209 <div class="floatingLogo"><img src="../images/logo_small.png"></div>
211 <h1>Tiny Tiny RSS Installer</h1>
213 <div class='content'>
217 if (file_exists("../config.php")) {
218 require "../config.php";
220 if (!defined('_INSTALLER_IGNORE_CONFIG_CHECK')) {
221 print_error("Error: config.php already exists in tt-rss directory; aborting.");
226 @$op = $_REQUEST['op'];
228 @$DB_HOST = strip_tags($_POST['DB_HOST']);
229 @$DB_TYPE = strip_tags($_POST['DB_TYPE']);
230 @$DB_USER = strip_tags($_POST['DB_USER']);
231 @$DB_NAME = strip_tags($_POST['DB_NAME']);
232 @$DB_PASS = strip_tags($_POST['DB_PASS']);
233 @$DB_PORT = strip_tags($_POST['DB_PORT']);
234 @$SELF_URL_PATH = strip_tags($_POST['SELF_URL_PATH']);
236 if (!$SELF_URL_PATH) {
237 $SELF_URL_PATH = preg_replace("/\/install\/$/", "/", make_self_url_path());
241 <form action="" method="post">
242 <input type="hidden" name="op" value="testconfig">
244 <h2>Database settings</h2>
247 $issel_pgsql = $DB_TYPE == "pgsql" ? "selected" : "";
248 $issel_mysql = $DB_TYPE == "mysql" ? "selected" : "";
252 <label>Database type</label>
253 <select name="DB_TYPE">
254 <option <?php echo $issel_pgsql ?> value="pgsql">PostgreSQL</option>
255 <option <?php echo $issel_mysql ?> value="mysql">MySQL</option>
260 <label>Username</label>
261 <input required name="DB_USER" size="20" value="<?php echo $DB_USER ?>"/>
265 <label>Password</label>
266 <input required name="DB_PASS" size="20" type="password" value="<?php echo $DB_PASS ?>"/>
270 <label>Database name</label>
271 <input required name="DB_NAME" size="20" value="<?php echo $DB_NAME ?>"/>
275 <label>Host name</label>
276 <input name="DB_HOST" size="20" value="<?php echo $DB_HOST ?>"/>
277 <span class="hint">If needed</span>
282 <input name="DB_PORT" type="number" size="20" value="<?php echo $DB_PORT ?>"/>
283 <span class="hint">Usually 3306 for MySQL or 5432 for PostgreSQL</span>
286 <h2>Other settings</h2>
288 <p>This should be set to the location your Tiny Tiny RSS will be available on.</p>
291 <label>Tiny Tiny RSS URL</label>
292 <input type="url" name="SELF_URL_PATH" placeholder="<?php echo $SELF_URL_PATH; ?>" size="60" value="<?php echo $SELF_URL_PATH ?>"/>
296 <p><input type="submit" value="Test configuration"></p>
300 <?php if ($op == 'testconfig') { ?>
302 <h2>Checking configuration</h2>
305 $errors = sanity_check($DB_TYPE);
307 if (count($errors) > 0) {
308 print "<p>Some configuration tests failed. Please correct them before continuing.</p>";
312 foreach ($errors as $error) {
313 print "<li style='color : red'>$error</li>";
323 if (!function_exists("curl_init")) {
324 array_push($notices, "It is highly recommended to enable support for CURL in PHP.");
327 if (count($notices) > 0) {
328 print_notice("Configuration check succeeded with minor problems:");
332 foreach ($notices as $notice) {
333 print "<li>$notice</li>";
338 print_notice("Configuration check succeeded.");
343 <h2>Checking database</h2>
346 $link = db_connect($DB_HOST, $DB_USER, $DB_PASS, $DB_NAME, $DB_TYPE, $DB_PORT);
349 print_error("Unable to connect to database using specified parameters.");
353 print_notice("Database test succeeded."); ?>
355 <h2>Initialize database</h2>
357 <p>Before you can start using tt-rss, database needs to be initialized. Click on the button below to do that now.</p>
360 $result = db_query($link, "SELECT true FROM ttrss_feeds", $DB_TYPE, false);
363 print_error("Existing tt-rss tables will be removed from the database. If you would like to keep your data, skip database initialization.");
364 $need_confirm = true;
366 $need_confirm = false;
372 <input type="hidden" name="op" value="installschema">
374 <input type="hidden" name="DB_USER" value="<?php echo $DB_USER ?>"/>
375 <input type="hidden" name="DB_PASS" value="<?php echo $DB_PASS ?>"/>
376 <input type="hidden" name="DB_NAME" value="<?php echo $DB_NAME ?>"/>
377 <input type="hidden" name="DB_HOST" value="<?php echo $DB_HOST ?>"/>
378 <input type="hidden" name="DB_PORT" value="<?php echo $DB_PORT ?>"/>
379 <input type="hidden" name="DB_TYPE" value="<?php echo $DB_TYPE ?>"/>
380 <input type="hidden" name="SELF_URL_PATH" value="<?php echo $SELF_URL_PATH ?>"/>
382 <?php if ($need_confirm) { ?>
383 <p><input onclick="return confirm('Please read the warning above. Continue?')" type="submit" value="Initialize database" style="color : red"></p>
385 <p><input type="submit" value="Initialize database" style="color : red"></p>
391 <input type="hidden" name="DB_USER" value="<?php echo $DB_USER ?>"/>
392 <input type="hidden" name="DB_PASS" value="<?php echo $DB_PASS ?>"/>
393 <input type="hidden" name="DB_NAME" value="<?php echo $DB_NAME ?>"/>
394 <input type="hidden" name="DB_HOST" value="<?php echo $DB_HOST ?>"/>
395 <input type="hidden" name="DB_PORT" value="<?php echo $DB_PORT ?>"/>
396 <input type="hidden" name="DB_TYPE" value="<?php echo $DB_TYPE ?>"/>
397 <input type="hidden" name="SELF_URL_PATH" value="<?php echo $SELF_URL_PATH ?>"/>
399 <input type="hidden" name="op" value="skipschema">
400 <p><input type="submit" value="Skip initialization"></p>
407 } else if ($op == 'installschema' || $op == 'skipschema') {
409 $link = db_connect($DB_HOST, $DB_USER, $DB_PASS, $DB_NAME, $DB_TYPE);
412 print_error("Unable to connect to database using specified parameters.");
416 if ($op == 'installschema') {
418 print "<h2>Initializing database...</h2>";
420 $lines = explode(";", preg_replace("/[\r\n]/", "", file_get_contents("../schema/ttrss_schema_".basename($DB_TYPE).".sql")));
422 foreach ($lines as $line) {
423 if (strpos($line, "--") !== 0 && $line) {
424 db_query($link, $line, $DB_TYPE);
428 print_notice("Database initialization completed.");
431 print_notice("Database initialization skipped.");
434 print "<h2>Generated configuration file</h2>";
436 print "<p>Copy following text and save as <code>config.php</code> in tt-rss main directory. It is suggested to read through the file to the end in case you need any options changed fom default values.</p>";
438 print "<p>After copying the file, you will be able to login with default username and password combination: <code>admin</code> and <code>password</code>. Don't forget to change the password immediately!</p>"; ?>
440 <form action="" method="post">
441 <input type="hidden" name="op" value="saveconfig">
442 <input type="hidden" name="DB_USER" value="<?php echo $DB_USER ?>"/>
443 <input type="hidden" name="DB_PASS" value="<?php echo $DB_PASS ?>"/>
444 <input type="hidden" name="DB_NAME" value="<?php echo $DB_NAME ?>"/>
445 <input type="hidden" name="DB_HOST" value="<?php echo $DB_HOST ?>"/>
446 <input type="hidden" name="DB_PORT" value="<?php echo $DB_PORT ?>"/>
447 <input type="hidden" name="DB_TYPE" value="<?php echo $DB_TYPE ?>"/>
448 <input type="hidden" name="SELF_URL_PATH" value="<?php echo $SELF_URL_PATH ?>"/>
449 <?php print "<textarea cols=\"80\" rows=\"20\">";
450 echo make_config($DB_TYPE, $DB_HOST, $DB_USER, $DB_NAME, $DB_PASS,
451 $DB_PORT, $SELF_URL_PATH);
452 print "</textarea>"; ?>
454 <?php if (is_writable("..")) { ?>
455 <p>We can also try saving the file automatically now.</p>
457 <p><input type="submit" value="Save configuration"></p>
460 print_error("Unfortunately, parent directory is not writable, so we're unable to save config.php automatically.");
463 print_notice("You can generate the file again by changing the form above.");
465 } else if ($op == "saveconfig") {
467 print "<h2>Saving configuration file to parent directory...</h2>";
469 if (!file_exists("../config.php")) {
471 $fp = fopen("../config.php", "w");
474 $written = fwrite($fp, make_config($DB_TYPE, $DB_HOST,
475 $DB_USER, $DB_NAME, $DB_PASS,
476 $DB_PORT, $SELF_URL_PATH));
479 print_notice("Successfully saved config.php. You can try <a href=\"..\">loading tt-rss now</a>.");
482 print_notice("Unable to write into config.php in tt-rss directory.");
487 print_error("Unable to open config.php in tt-rss directory for writing.");
490 print_error("config.php already present in tt-rss directory, refusing to overwrite.");