diff --git a/tinyfilemanager.php b/tinyfilemanager.php
index 8feaff4..2f11022 100644
--- a/tinyfilemanager.php
+++ b/tinyfilemanager.php
@@ -11,12 +11,8 @@ $CONFIG = '{"lang":"en","error_reporting":false,"show_hidden":false}';
//TFM version
define('VERSION', '2.3.5');
-// Page Title. Leave blank for default.
-$page_title = '';
-
-// Favicon path. This can be either a full url to an image, or
-// a path based on the document root. leave blank for default.
-$favicon_path = '';
+//Application Title
+define('APP_TITLE', 'Tiny File Manager');
// Auth with login/password (set true/false to enable/disable it)
$use_auth = true;
@@ -50,6 +46,7 @@ $edit_files = true;
$default_timezone = 'Etc/UTC'; // UTC
// Root path for file manager
+// use absolute path of directory i.e: '/var/www/folder' or $_SERVER['DOCUMENT_ROOT'].'/folder'
$root_path = $_SERVER['DOCUMENT_ROOT'];
// Root url for links in file manager.Relative to $http_host. Variants: '', 'path/to/subfolder'
@@ -68,6 +65,9 @@ $datetime_format = 'd.m.y H:i';
// allowed file extensions for upload and rename
$allowed_extensions = ''; // 'gif,png,jpg'
+// Favicon path. This can be either a full url to an .PNG image, or a path based on the document root.
+$favicon_path = '?img=favicon';
+
// Array of files and folders excluded from listing
$GLOBALS['exclude_items'] = array();
@@ -206,7 +206,7 @@ if ($use_auth) {