Server IP : 172.67.216.182 / Your IP : 172.68.164.117 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/coircraft.com/wp-content/plugins/post-smtp/freemius/templates/debug/ |
Upload File : |
<?php /** * @package Freemius * @copyright Copyright (c) 2015, Freemius, Inc. * @license https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3 * @since 1.1.7.3 */ if ( ! defined( 'ABSPATH' ) ) { exit; } $log_book = FS_Logger::get_log(); ?> <h1><?php fs_echo_inline( 'Log' ) ?></h1> <table class="widefat" style="font-size: 11px;"> <thead> <tr> <th>#</th> <th><?php fs_esc_html_echo_inline( 'ID', 'id' ) ?></th> <th><?php fs_esc_html_echo_inline( 'Type' ) ?></th> <th><?php fs_esc_html_echo_inline( 'Function' ) ?></th> <th><?php fs_esc_html_echo_inline( 'Message' ) ?></th> <th><?php fs_esc_html_echo_inline( 'File' ) ?></th> <th><?php fs_esc_html_echo_inline( 'Timestamp' ) ?></th> </tr> </thead> <tbody> <?php $i = 0; foreach ( $log_book as $log ) : ?> <?php /** * @var FS_Logger $logger */ $logger = $log['logger']; ?> <tr<?php if ( $i % 2 ) { echo ' class="alternate"'; } ?>> <td><?php echo $log['cnt'] ?>.</td> <td><?php echo $logger->get_id() ?></td> <td><?php echo $log['log_type'] ?></td> <td><b><code style="color: blue;"><?php echo ( ! empty( $log['class'] ) ? $log['class'] . $log['type'] : '' ) . $log['function'] ?></code></b></td> <td> <?php printf( '<a href="#" style="color: darkorange !important;" onclick="jQuery(this).parent().find(\'div\').toggle(); return false;"><nobr>%s</nobr></a>', esc_html( substr( $log['msg'], 0, 32 ) ) . ( 32 < strlen( $log['msg'] ) ? '...' : '' ) ); ?> <div style="display: none;"> <b style="color: darkorange;"><?php echo esc_html( $log['msg'] ) ?></b> </div> </td> <td><?php if ( isset( $log['file'] ) ) { echo substr( $log['file'], $logger->get_file() ) . ':' . $log['line']; } ?></td> <td><?php echo number_format( 100 * ( $log['timestamp'] - WP_FS__SCRIPT_START_TIME ), 2 ) . ' ' . fs_text_x_inline( 'ms', 'milliseconds' ) ?></td> </tr> <?php $i ++; endforeach ?> </tbody> </table>