diff --git a/e107_languages/English/lan_installer.php b/e107_languages/English/lan_installer.php
index 5d9385326..379c0350b 100644
--- a/e107_languages/English/lan_installer.php
+++ b/e107_languages/English/lan_installer.php
@@ -17,10 +17,10 @@
define("LANINS_001", "e107 Installation");
-define("LANINS_002", "Stage ");
+define("LANINS_002", "Step ");
define("LANINS_003", "1");
define("LANINS_004", "Language Selection");
-define("LANINS_005", "Please choose language to use during installation procedure");
+define("LANINS_005", "Please choose the language to use during installation");
define("LANINS_006", "Set Language");
define("LANINS_007", "4");
define("LANINS_008", "PHP & MySQL Versions Check / File Permissions Check");
@@ -52,7 +52,7 @@ define("LANINS_027", "MySQL Database:");
define("LANINS_028", "Create Database?");
define("LANINS_029", "Table prefix:");
define("LANINS_030", "The MySQL server you would like e107 to use. It can also include a port number. e.g. “hostname:port” or a path to a local socket e.g. \":/path/to/socket\" for the localhost.");
-define("LANINS_031", "The username you wish e107 to use for connecting to your MySQL server");
+define("LANINS_031", "The username you wish e107 to use to connect to your MySQL server");
define("LANINS_032", "The Password for the user you just entered");
define("LANINS_033", "The MySQL database you wish e107 to reside in, sometimes referred to as a schema. If the user has database create permissions you can opt to create the database automatically if it doesn't already exist.");
define("LANINS_034", "The prefix you wish e107 to use when creating the e107 tables. Useful for multiple installs of e107 in one database schema.");
@@ -116,7 +116,7 @@ Also please delete install.php from your server after you have clicked the butto
define("LANINS_070", "e107 was unable to save the main config file to your server.
Please ensure the e107_config.php file has the correct permissions");
-define("LANINS_071", "Finalising Installation");
+define("LANINS_071", "Installation Complete");
define("LANINS_072", "Admin Username");
define("LANINS_073", "This is the name you will use to login into the site. If you wish to use this as your display name also");
@@ -177,6 +177,6 @@ define("LANINS_118", "Install Plugins");
define("LANINS_119", "Install all plugins that the theme may require.");
define("LANINS_120", "8");
define('LANINS_121', 'e107_config.php is not an empty file');
-define('LANINS_122', 'Possibly you have an existing installation');
+define('LANINS_122', 'You might have an existing installation');
diff --git a/install_.php b/install_.php
index 52c4d8dac..92153a6b7 100644
--- a/install_.php
+++ b/install_.php
@@ -35,32 +35,11 @@ define('MAKE_INSTALL_LOG', false);
$MySQLprefix = 'e107_';
$HANDLERS_DIRECTORY = "e107_handlers/"; // needed for e107 class init
-// Should be safe to disable this - done in e107 class
-//$ADMIN_DIRECTORY = "e107_admin/";
-//$FILES_DIRECTORY = "e107_files/";
-//$IMAGES_DIRECTORY = "e107_images/";
-//$MEDIA_DIRECTORY = "e107_media/";
-//$THEMES_DIRECTORY = "e107_themes/";
-//$PLUGINS_DIRECTORY = "e107_plugins/";
-//$HANDLERS_DIRECTORY = "e107_handlers/";
-//$LANGUAGES_DIRECTORY = "e107_languages/";
-//$HELP_DIRECTORY = "e107_docs/help/";
-//$CACHE_DIRECTORY = "e107_system/cache/";
-//$DOWNLOADS_DIRECTORY = "e107_media/files/";
-//$UPLOADS_DIRECTORY = "e107_media/temp/";
-//$LOGS_DIRECTORY = "e107_files/logs";
-//$CORE_DIRECTORY = "e107_core/";
-//$SYSTEM_DIRECTORY = "e107_system/";
-
-/* End configurable variables */
-
-if(isset($_GET['object']))
-{
- get_object($_GET['object']);
- die();
-}
-
define("e107_INIT", TRUE);
+require_once("e107_admin/ver.php");
+
+define("e_VERSION", $e107info['e107_version']);
+
/*define("e_UC_PUBLIC", 0);
define("e_UC_MAINADMIN", 250);
define("e_UC_READONLY", 251);
@@ -71,8 +50,8 @@ define("e_UC_NOBODY", 255);*/
define("E107_INSTALL",TRUE);
-error_reporting(E_ALL);
-
+error_reporting(E_ALL ^ E_NOTICE); //3rd Party Plugins may cause PHP Notices at the conclusion of installation.
+//error_reporting(E_ALL);
function e107_ini_set($var, $value)
{
@@ -396,11 +375,14 @@ class e_install
$this->template->SetTag("stage_pre", LANINS_002);
$this->template->SetTag("stage_num", LANINS_003);
$this->template->SetTag("stage_title", LANINS_004);
+ $this->template->SetTag("percent", 10);
+ $this->template->SetTag("bartype", 'warning');
+
$e_forms->start_form("language_select", $_SERVER['PHP_SELF'].($_SERVER['QUERY_STRING'] == "debug" ? "?debug" : ""));
$e_forms->add_select_item("language", $this->get_languages(), "English");
$this->finish_form();
- $e_forms->add_button("submit", LANINS_006);
- $this->template->SetTag("stage_content", "
Please fill in the form below with your MySQL details. If you do not know this information, please contact your hosting provider. You may hover over each field for additional information.
+
+
+
+
+
+
+
+
+
+';
+
+
+
return $data;
}
+/*
function get_object($name)
{
switch ($name)
@@ -2020,7 +2186,7 @@ td {
}";
break;
- /* The following data is base64 encoded to preserve binary state in ASCII file */
+ //The following data is base64 encoded to preserve binary state in ASCII file
case "01_footer.jpg":
header("Content-type: image/jpeg");
@@ -2978,4 +3144,7 @@ iR/pUPUH/fi5F/8AyrX/AIMn/Y/nJc2ZOL/FM/vj/uoplVx95+5//9k="));
R0lGODlhAwABAJEAAAAAAP///1xcXP///yH5BAEAAAMALAAAAAADAAEAAAIC1FYAOw=="));
break;
}
+
+
}
+ * */
\ No newline at end of file