Fail to run TT RSS web interface

Hi guys,

I am getting a weird error when trying to run my installation of Tiny Tiny RSS. The feeds seems to be updating, but when i run the URL, the page shows the error below. Does anybody have any idea what might be wrong?

<?php if (file_exists("install") && !file_exists("config.php")) { header("Location: install/"); } if (!file_exists("config.php")) { print "Fatal Error: You forgot to copy config.php-dist to config.php and edit it.\n"; exit; } // we need a separate check here because functions.php might get parsed // incorrectly before 5.3 because of :: syntax. if (version_compare(PHP_VERSION, '5.3.0', '<')) { print "Fatal Error: PHP version 5.3.0 or newer required.\n"; exit; } set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR . get_include_path()); require_once "autoload.php"; require_once "sessions.php"; require_once "functions.php"; require_once "sanity_check.php"; require_once "version.php"; require_once "config.php"; require_once "db-prefs.php"; require_once "lib/Mobile_Detect.php"; $mobile = new Mobile_Detect(); if (!init_plugins()) return; if (!$_REQUEST['mobile']) { if ($mobile->isTablet() && PluginHost::getInstance()->get_plugin("digest")) { header('Location: backend.php?op=digest'); exit; } else if ($mobile->isMobile() && PluginHost::getInstance()->get_plugin("mobile")) { header('Location: backend.php?op=mobile'); exit; } else if ($mobile->isMobile() && PluginHost::getInstance()->get_plugin("digest")) { header('Location: backend.php?op=digest'); exit; } } login_sequence(); header('Content-Type: text/html; charset=utf-8'); ?> Tiny Tiny RSS
<script type="text/javascript">
	var __ttrss_version = "<?php echo VERSION ?>"
</script>

<?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
<?php echo stylesheet_tag("css/layout.css"); ?>

<?php if ($_SESSION["uid"]) {
	$theme = get_pref( "USER_CSS_THEME", $_SESSION["uid"], false);
	if ($theme && theme_valid("$theme")) {
		echo stylesheet_tag(get_theme_path($theme));
	} else {
		echo stylesheet_tag("themes/default.php");
	}
}
?>

<?php print_user_stylesheet() ?>

<style type="text/css">
<?php
	foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
		if (method_exists($p, "get_css")) {
			echo $p->get_css();
		}
	}
?>
</style>

<link rel="shortcut icon" type="image/png" href="images/favicon.png"/>
<link rel="icon" type="image/png" sizes="72x72" href="images/favicon-72px.png" />

<script>
	dojoConfig = {
		async: true,
		cacheBust: new Date(),
		packages: [
			{ name: "fox", location: "../../js" },
		]
	};
</script>

<?php
foreach (array("lib/prototype.js",
			"lib/scriptaculous/scriptaculous.js?load=effects,controls",
			"lib/dojo/dojo.js",
			"lib/dojo/tt-rss-layer.js",
			"errors.php?mode=js") as $jsfile) {

	echo javascript_tag($jsfile);

} ?>

<script type="text/javascript">
	require({cache:{}});
<?php
	require_once 'lib/jshrink/Minifier.php';

	print get_minified_js(array("tt-rss",
		"functions", "feedlist", "viewfeed", "PluginHost"));

	foreach (PluginHost::getInstance()->get_plugins() as $n => $p) {
		if (method_exists($p, "get_js")) {
			echo "try {";
			echo JShrink\Minifier::minify($p->get_js());
			echo "} catch (e) {
			 	console.warn('failed to initialize plugin JS: $n');
				console.warn(e);
			}";
		}
	}

	init_js_translations();
?>
</script>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<meta name="referrer" content="no-referrer"/>

<script type="text/javascript">
	Event.observe(window, 'load', function() {
		init();
	});
</script>
<?php echo __("Loading, please wait...") ?>

<?php print_error('Javascript is disabled. Please enable it.') ?>
<?php echo __("Loading, please wait..."); ?>
	<?php
	foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_MAIN_TOOLBAR_BUTTON) as $p) {
		echo $p->hook_main_toolbar_button();
	}
	?>

	<form id="headlines-toolbar" action="" onsubmit='return false'>

	</form>

	<form id="main_toolbar_form" action="" onsubmit='return false'>

	<select name="view_mode" title="<?php echo __('Show articles') ?>"
		onchange="viewModeChanged()"
		dojoType="dijit.form.Select">
		<option selected="selected" value="adaptive"><?php echo __('Adaptive') ?></option>
		<option value="all_articles"><?php echo __('All Articles') ?></option>
		<option value="marked"><?php echo __('Starred') ?></option>
		<option value="published"><?php echo __('Published') ?></option>
		<option value="unread"><?php echo __('Unread') ?></option>
		<option value="has_note"><?php echo __('With Note') ?></option>
		<!-- <option value="noscores"><?php echo __('Ignore Scoring') ?></option> -->
	</select>

	<select title="<?php echo __('Sort articles') ?>"
		onchange="viewModeChanged()"
		dojoType="dijit.form.Select" name="order_by">
		<option selected="selected" value="default"><?php echo __('Default') ?></option>
		<option value="feed_dates"><?php echo __('Newest first') ?></option>
		<option value="date_reverse"><?php echo __('Oldest first') ?></option>
		<option value="title"><?php echo __('Title') ?></option>
	</select>

	<div dojoType="dijit.form.ComboButton" onclick="catchupCurrentFeed()">
		<span><?php echo __('Mark as read') ?></span>
		<div dojoType="dijit.DropDownMenu">
			<div dojoType="dijit.MenuItem" onclick="catchupCurrentFeed('1day')">
				<?php echo __('Older than one day') ?>
			</div>
			<div dojoType="dijit.MenuItem" onclick="catchupCurrentFeed('1week')">
				<?php echo __('Older than one week') ?>
			</div>
			<div dojoType="dijit.MenuItem" onclick="catchupCurrentFeed('2week')">
				<?php echo __('Older than two weeks') ?>
			</div>
		</div>
	</div>

	</form>

	<div class="actionChooser">

		<?php
			foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_TOOLBAR_BUTTON) as $p) {
				 echo $p->hook_toolbar_button();
			}
		?>

		<button id="net-alert" dojoType="dijit.form.Button" style="display : none" disabled="true"
			title="<?php echo __("Communication problem with server.") ?>">
			<img src="images/error.png" />
		</button>

		<div dojoType="dijit.form.DropDownButton">
			<span><?php echo __('Actions...') ?></span>
			<div dojoType="dijit.Menu" style="display: none">
				<div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcPrefs')"><?php echo __('Preferences...') ?></div>
				<div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcSearch')"><?php echo __('Search...') ?></div>
				<div dojoType="dijit.MenuItem" disabled="1"><?php echo __('Feed actions:') ?></div>
				<div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddFeed')"><?php echo __('Subscribe to feed...') ?></div>
				<div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcEditFeed')"><?php echo __('Edit this feed...') ?></div>
				<!-- <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcRescoreFeed')"><?php echo __('Rescore feed') ?></div> -->
				<div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcRemoveFeed')"><?php echo __('Unsubscribe') ?></div>
				<div dojoType="dijit.MenuItem" disabled="1"><?php echo __('All feeds:') ?></div>
				<div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcCatchupAll')"><?php echo __('Mark as read') ?></div>
				<div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcShowOnlyUnread')"><?php echo __('(Un)hide read feeds') ?></div>
				<div dojoType="dijit.MenuItem" disabled="1"><?php echo __('Other actions:') ?></div>
				<div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcToggleWidescreen')"><?php echo __('Toggle widescreen mode') ?></div>
				<!-- <div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddLabel')"><?php echo __('Create label...') ?></div>
				<div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcAddFilter')"><?php echo __('Create filter...') ?></div> -->
				<div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcHKhelp')"><?php echo __('Keyboard shortcuts help') ?></div>

				<?php
					foreach (PluginHost::getInstance()->get_hooks(PluginHost::HOOK_ACTION_ITEM) as $p) {
					 echo $p->hook_action_item();
					}
				?>

				<?php if (!$_SESSION["hide_logout"]) { ?>
					<div dojoType="dijit.MenuItem" onclick="quickMenuGo('qmcLogout')"><?php echo __('Logout') ?></div>
				<?php } ?>
			</div>
		</div>

		<button id="updatesIcon" dojoType="dijit.form.Button" style="display : none">
			<img src="images/new_version.png" title="<?php echo __('Updates are available from Git.') ?>"/>
		</button>
	</div>
</div> <!-- toolbar -->
<div id="headlines-wrap-inner" dojoType="dijit.layout.BorderContainer" region="center">

	<div id="floatingTitle" style="visibility : hidden"></div>

	<div id="headlines-frame" dojoType="dijit.layout.ContentPane" tabindex="0"
			onscroll="headlines_scroll_handler(this)" region="center">
		<div id="headlinesInnerContainer">
			<div class="whiteBox"><?php echo __('Loading, please wait...') ?></div>
		</div>
	</div>

	<div id="content-insert" dojoType="dijit.layout.ContentPane" region="bottom"
		style="height : 50%" splitter="true"></div>

</div>

if you see <?php tags in the output your server has php disabled or misconfigured, might want to look into that

Thanks for the info man. I’m on a Synology Diskstation, and as far as I can see, Php56 and php7 is installed, so its odd.

This isn’t a support forum for web stacks or NAS appliances, but if you’re seeing PHP (like fox said) it means the web server (Apache, Nginx, etc.) is not passing PHP files to the PHP interpreter. In Apache it depends (mod_php or pass it externally with CGI or something). In Nginx you probably want to use fastcgi to PHP-FPM.

Please find Synology support site because they’d certainly be able to help you better than us here.

Also, moving this thread to unsupported but if someone wants to post a solution they’re welcome to. No guarantees though.