diff --git a/e107_plugins/lastseen/languages/English.php b/e107_plugins/lastseen/languages/English.php
deleted file mode 100644
index fd3c0678a..000000000
--- a/e107_plugins/lastseen/languages/English.php
+++ /dev/null
@@ -1,16 +0,0 @@
-
\ No newline at end of file
diff --git a/e107_plugins/lastseen/lastseen_menu.php b/e107_plugins/lastseen/lastseen_menu.php
deleted file mode 100644
index dd06ab5d9..000000000
--- a/e107_plugins/lastseen/lastseen_menu.php
+++ /dev/null
@@ -1,46 +0,0 @@
- db_Select("user", "user_id, user_name, user_currentvisit", "ORDER BY user_currentvisit DESC LIMIT 0,10", "nowhere");
-$userArray = $sql -> db_getList();
-
-$gen = new convert;
-$text = "
";
-foreach($userArray as $user)
-{
-// extract($user);
- $seen_ago = $gen -> computeLapse($user['user_currentvisit'], false, false, true, 'short');
- $lastseen = ($seen_ago ? $seen_ago : "1 ".LANDT_09)." ".LANDT_AGO;
-$text .= "- ".$user['user_name']."
[ ".$lastseen." ] ";
-}
-$text .= "
";
-
-$ns->tablerender(LSP_LAN_1, $text, 'lastseen');
-?>
\ No newline at end of file
diff --git a/e107_plugins/online_extended_menu/images/user.png b/e107_plugins/online_extended_menu/images/user.png
deleted file mode 100644
index 03438a6e3..000000000
Binary files a/e107_plugins/online_extended_menu/images/user.png and /dev/null differ
diff --git a/e107_plugins/online_extended_menu/languages/English.php b/e107_plugins/online_extended_menu/languages/English.php
deleted file mode 100644
index afd1ba9dc..000000000
--- a/e107_plugins/online_extended_menu/languages/English.php
+++ /dev/null
@@ -1,33 +0,0 @@
-
diff --git a/e107_plugins/online_extended_menu/online_extended_menu.php b/e107_plugins/online_extended_menu/online_extended_menu.php
deleted file mode 100644
index 31e106d2b..000000000
--- a/e107_plugins/online_extended_menu/online_extended_menu.php
+++ /dev/null
@@ -1,89 +0,0 @@
-";
-
- if (MEMBERS_ONLINE) {
- global $listuserson, $ADMIN_DIRECTORY;
- foreach($listuserson as $uinfo => $pinfo) {
-
-
- list($oid, $oname) = explode(".", $uinfo, 2);
- $online_location_page = substr(strrchr($pinfo, "/"), 1);
- if ($pinfo == "log.php" || $pinfo == "error.php") {
- $online_location_page = "news.php";
- $pinfo = "news.php";
- }
- if ($online_location_page == "request.php") {
- $pinfo = "download.php";
- }
- if (strstr($online_location_page, "forum")) {
- $pinfo = e_PLUGIN."forum/forum.php";
- $online_location_page = "forum.php";
- }
- if (strstr($online_location_page, "content")) {
- $pinfo = "content.php";
- $online_location_page = "content.php";
- }
- if (strstr($online_location_page, "comment")) {
- $pinfo = "comment.php";
- $online_location_page = "comment.php";
- }
- $text .= "
$oname ".ONLINE_EL7;
- (!strstr($pinfo, $ADMIN_DIRECTORY) ? $text .= " $online_location_page
" : $text .= " $online_location_page
");
- }
- }
-
- if ((MEMBERS_ONLINE + GUESTS_ONLINE) > ($menu_pref['most_members_online'] + $menu_pref['most_guests_online'])) {
- $menu_pref['most_members_online'] = MEMBERS_ONLINE;
- $menu_pref['most_guests_online'] = GUESTS_ONLINE;
- $menu_pref['most_online_datestamp'] = time();
- $tmp = addslashes(serialize($menu_pref));
- $sql->db_Update("core", "e107_value='$tmp' WHERE e107_name='menu_pref' ");
- }
- global $gen;
- if (!is_object($gen)) {
- $gen = new convert;
- }
-
- $datestamp = $gen->convert_date($menu_pref['most_online_datestamp'], "short");
-
- $text .= "
".ONLINE_EL8." ".($menu_pref['most_members_online'] + $menu_pref['most_guests_online'])."
(".ONLINE_EL2.$menu_pref['most_members_online'].", ".ONLINE_EL1.$menu_pref['most_guests_online'].") ".ONLINE_EL9." ".$datestamp."
";
-
- $total_members = $sql->db_Count("user","(*)","where user_ban='0'"); // greatly optimizes the query below.
- if ($total_members > 1) {
-
- $newest_member = $sql->db_Select("user", "user_id, user_name", "user_id > ".($total_members-2)." AND user_ban='0' ORDER BY user_join DESC LIMIT 1");
-
- $row = $sql->db_Fetch();
- extract($row);
- $text .= "
".ONLINE_EL5.": ".$total_members."
".ONLINE_EL6.": ".$user_name."";
- }
-} elseif(ADMIN) {
- global $tp;
- $text = $tp->toHtml(ONLINE_TRACKING_MESSAGE,TRUE);
-}
-
-
-$ns->tablerender(ONLINE_EL4, $text, 'online_extended');
-
-?>
diff --git a/e107_plugins/online_menu/languages/English.php b/e107_plugins/online_menu/languages/English.php
deleted file mode 100644
index 9c920c778..000000000
--- a/e107_plugins/online_menu/languages/English.php
+++ /dev/null
@@ -1,27 +0,0 @@
-here
");
-?>
\ No newline at end of file
diff --git a/e107_plugins/online_menu/online_menu.php b/e107_plugins/online_menu/online_menu.php
deleted file mode 100644
index 9a8424b97..000000000
--- a/e107_plugins/online_menu/online_menu.php
+++ /dev/null
@@ -1,53 +0,0 @@
- ".ONLINE_L4 : ONLINE_L4);
-
-if(!defined("e_TRACKING_DISABLED") && (isset($pref['track_online']) && $pref['track_online'])) {
- $text = ONLINE_L1.GUESTS_ONLINE."
";
- //if($pref['user_reg'] == 1){
- $text .= ONLINE_L2.MEMBERS_ONLINE.(MEMBERS_ONLINE ? ", ": "").MEMBER_LIST."
";
- //}
- $text .= ONLINE_L3.ON_PAGE;
-
- global $e107cache;
- $members_totals = $e107cache->retrieve("online_menu_totals", 120);
- if($members_totals == false) {
- $total_members = $sql->db_Count("user");
- $newest_member = $sql->db_Select("user", "user_id, user_name", "user_ban='0' ORDER BY user_join DESC LIMIT 0,1");
- $row = $sql->db_Fetch();
- extract($row);
- $members_totals = "
".ONLINE_L5.": ".$total_members.", ".ONLINE_L6.": {$user_name}";
- $e107cache->set("online_menu_totals", $members_totals);
- }
- $text .= $members_totals;
-
-} else {
- if(ADMIN) {
- $text = TRACKING_MESSAGE;
- } else {
- return;
- }
-}
-
-$ns->tablerender($caption, $text, 'online');
-
-?>
\ No newline at end of file