Файловый менеджер - Редактировать - /home/lexlmvtu/public_html/wp-content/plugins/backup-backup/includes/dashboard/chapter/troubleshooting.php
Назад
<?php // Namespace namespace BMI\Plugin\Dashboard; // Use use BMI\Plugin\Checker\System_Info as SI; // Exit on direct access if (!defined('ABSPATH')) { exit; } // Tooltips $ctl = __("Your account on Wordpress.org (where you open a new support thread) is different to the one you login to your WordPress dashboard (where you are now). If you don’t have a WordPress.org account yet, please sign up at the top right on the Support Forum page, and then scroll down on that page . It only takes a minute :) Thank you!", 'backup-backup'); $bmiTroubleshootingLogShareInfo = __("You'll share: Website URL, %s1backup logs%s2, %s3restore logs%s2, %s4staging logs%s2, our plugin logs & configuration, basic data about your site.", 'backup-backup'); $bmiTroubleshootingLogShareInfo2 = __("No confidential data such as email gets shared.", 'backup-backup'); $bmiTroubleshootingLogShareInfo = str_replace('%s1', '<a href="#" class="download-backup-log-url hoverable secondary" download="backup_logs.txt">', $bmiTroubleshootingLogShareInfo); $bmiTroubleshootingLogShareInfo = str_replace('%s3', '<a href="#" class="download-restore-log-url hoverable secondary" download="restore_logs.txt">', $bmiTroubleshootingLogShareInfo); $bmiTroubleshootingLogShareInfo = str_replace('%s4', '<a href="#" class="download-staging-log-url hoverable secondary" download="staging_logs.txt">', $bmiTroubleshootingLogShareInfo); $bmiTroubleshootingLogShareInfo = str_replace('%s2', '</a>', $bmiTroubleshootingLogShareInfo); ?> <div class="mm mt mb f20 lh40"> <div class="mbl"> <?php _e("If something doesn't work, you have several options - pick one:", 'backup-backup'); ?> </div> <table class="center-table trouble-section"> <tr class="lh28"> <td style="width: 33%"> <a href="https://wordpress.org/support/plugin/backup-backup/" target="_blank" class="nodec"> <div class="shadow"> <div class="flex flexcenter mtl mtb"> <div style="width: 66px; height: 63px;"> <svg style="width: 66px; height: 63px;"><use xlink:href="<?php echo $this->get_asset('images', 'support-1.svg'); ?>#img"></use></svg> </div> <div class="semibold"> <?php _e("Ask us in the Support forum", 'backup-backup'); ?> </div> </div> <div class="f16"> <?php _e("Your first port of call. We'll try to respond quickly!", 'backup-backup'); ?> </div> </div> </a> </td> <td style="width: 33%"> <a href="<?php echo BMI_AUTHOR_URI; ?>" target="_blank" class="nodec"> <div class="shadow"> <div class="flex flexcenter mtl mtb"> <div style="width: 69px; height: 63px;"> <svg style="width: 69px; height: 63px; margin-top: 10px;"><use xlink:href="<?php echo $this->get_asset('images', 'support-2.svg'); ?>#img"></use></svg> </div> <div class="semibold"> <?php _e("Get the Premium Plugin", 'backup-backup'); ?> </div> </div> <div class="f16"> <?php _e("...which includes support, so we can help you in more detail if you get stuck.", 'backup-backup'); ?> </div> </div> </a> </td> <td style="width: 33%"> <div class="shadow" id="open_trouble_extenstion"> <div class="flex flexcenter mtl mtb"> <div style="width: 70px; height: 63px;"> <svg style="width: 70px; height: 63px;"><use xlink:href="<?php echo $this->get_asset('images', 'support-3.svg'); ?>#img"></use></svg> </div> <div class="semibold"> <?php _e("Check advanced options", 'backup-backup'); ?> </div> </div> <div class="f16"> <?php _e("...in an effort to fix it yourself. Be sure you know what you are doing!", 'backup-backup'); ?> </div> </div> </td> </tr> <tr> <td class="mtlll"> <span class="tooltip hoverable info-cursor f18" tooltip="<?php echo $ctl; ?>"><?php _e("Cannot log in there?", 'backup-backup'); ?></span> </td> <td></td> <td></td> </tr> </table> </div> <div id="trouble_extenstion" class="f20" style="display: none; min-width: calc(100% - 45px - 45px);"> <div class="mm"> <div class="f26 semibold mb"> <?php _e("Troubleshooting settings", 'backup-backup'); ?> </div> </div> <div class="mm bmi-troubleshooting-btn-mm"> <div class="f20 semibold"> <?php _e("Send troubleshooting data", 'backup-backup'); ?> </div> <div class="f16 mtll mbll bmi-troubleshooting-btn-section"> <div class="bmi-troubleshooting-btn-text"> <?php _e("Send us debug information of your latest failed backup or restore, so that we can investigate.", 'backup-backup'); ?> </div> <div class="bmi-inline"> <a href="#" class="btn bmi-send-troubleshooting-logs bmi-troubleshooting-btn mm30"><?php _e("Share debug infos with BackupBliss team", 'backup-backup'); ?></a> </div> <div class="bmi-troubleshooting-info-logs"> <?php echo $bmiTroubleshootingLogShareInfo; ?><br> <?php echo $bmiTroubleshootingLogShareInfo2; ?> </div> </div> </div> <div class="mm"> <div class="f20 semibold"> <?php _e("Site information", 'backup-backup'); ?> </div> <div class="f16 mtll mbll"> <?php _e("Here is some information about your site, which may help to debug if there is an issue:", 'backup-backup'); ?> </div> </div> <div class="mm bg-second f16 mtl mbl lh25"> <table style="width: 100%"> <tbody> <?php require_once BMI_INCLUDES . '/check/system_info.php'; $info = new SI(); $info = $info->to_array(); $i = 0; foreach ($info as $key => $value) { $i++; ?> <tr class="<?php echo(($i <= 7)?'ignored-tr':'hide-show-tr'); ?>"> <th align="left"><?php echo ucwords(str_replace('_', ' ', $key)); ?></th> <td><?php if (is_object($value)) { echo $value->format('Y-m-d H:i:s.u'); } elseif (is_array($value)) { if (sizeof($value) === 0) { echo '---'; } else { if ($key == 'wp_active_themes_info') { echo $value[0]['name'] . '@' . $value[0]['version']; } elseif ($key == 'wp_active_plugins_info') { $disp = ''; for ($i = 0; $i < sizeof($value); ++$i) { $disp .= $value[$i]['name'] . '@' . $value[$i]['version'] . ' | '; } echo rtrim($disp, ' | '); } else { echo implode(' | ', $value); } } } elseif (is_bool($value)) { echo $value === true ? 'true' : 'false'; } else { if (!$value || is_null($value) || strlen($value) == '0') { echo '---'; } else { echo $value; } } ?></td> </tr> <?php } ?> <tr class="ignored-tr"> <th style="width: 400px"></th> <td align="right"> <span class="hoverable secondary" id="switch-show-trs" data-see="<?php _e("See more", 'backup-backup'); ?>" data-hide="<?php _e("Collapse", 'backup-backup'); ?>"> <?php _e("See more", 'backup-backup'); ?> </span> </td> </tr> </tbody> </table> </div> <div class="mm mtll f16"> <a href="#" class="nodec secondary hoverable" id="download-site-infos"><?php _e("Download your site infos", 'backup-backup'); ?></a> <?php _e("(e.g. for easy sharing with us, so that we can debug)", 'backup-backup'); ?> </div> <div class="mm mtl semibold"> <?php _e("Logging", 'backup-backup'); ?> </div> <div class="mm mtll f16 lh28"> <?php _e("All backup creation & restore processes are documented in log files which to debug issues.", 'backup-backup'); ?> <a href="<?php echo get_site_url(); ?>/?backup-migration=PROGRESS_LOGS&progress-id=complete_logs.log&backup-id=current&t=<?php echo time(); ?> &sk=<?php echo bmi_get_config('REQUEST:SECRET'); ?>" download="troubleshooting-logs.txt" class="nodec hoverable secondary"> <?php _e("Download logs.", 'backup-backup'); ?> </a> </div> <div class="mm mtl semibold"> <?php _e("Backup/restore process issues", 'backup-backup'); ?> </div> <div class="mm mtll f16 lh28"> <?php _e("If you are sure the backup process is not running but you can't run it: ", 'backup-backup'); ?> <a href="#!" id="bmi-force-backup-to-stop" class="nodec hoverable secondary"> <?php _e("Force the process to stop.", 'backup-backup'); ?> </a> <br> <?php _e("If you are sure the restore process is not running but you can't run it: ", 'backup-backup'); ?> <a href="#!" id="bmi-force-restore-to-stop" class="nodec hoverable secondary"> <?php _e("Force the restoration to stop.", 'backup-backup'); ?> </a> <br> <span><?php _e('* If the process is still running after killing, that means it probably still running (for real), wait a bit for it to fail then.', 'backup-backup'); ?></span> </div> <div class="mm mtl semibold"> <?php _e("Error: php_uname is disabled for security reasons", 'backup-backup'); ?> </div> <div class="mm mtll f16 lh28"> <?php _e("Some hostings blocks php_uname function which is required by pclzip module included in WordPress.", 'backup-backup'); ?><br> <?php _e("You can automatically replace the function with compatible code:", 'backup-backup'); ?> <a href="#" class="nodec secondary hoverable" id="fix-uname-issues"><?php _e("Replace php_uname function in pclzip file", 'backup-backup'); ?></a><br> <?php _e("You can also restore the changes with one click if something went wrong:", 'backup-backup'); ?> <a href="#" class="nodec secondary hoverable" id="revert-uname-issues"><?php _e("Restore original pclzip file (will work after first replacement)", 'backup-backup'); ?></a> </div> <div class="mm mtl semibold"> <?php _e("Test email", 'backup-backup'); ?> </div> <div class="mm mtll f16 lh28"> <?php _e("If you're willing to know if your server is properly configured to send emails, you can test it here.", 'backup-backup'); ?><br> <?php _e("Remember that even if you get success alert there still might be some issues.", 'backup-backup'); ?> <?php _e("Check if the email is visible in your mailbox / spam folder.", 'backup-backup'); ?><br> <?php _e("Message will be sent to e-mail you provided in the ", 'backup-backup'); ?> <a href="#" class="collapser-openner nodec secondary hoverable" data-el="#other-options"><?php _e("other options", 'backup-backup'); ?></a>.<br> <a href="#" id="bmi_send_test_mail" class="nodec hoverable secondary"><?php _e("Click here", 'backup-backup'); ?></a> <?php _e("to send the mail.", 'backup-backup'); ?><br> </div> <div class="mm mtl mbll semibold"> <?php _e("Reset configuration", 'backup-backup'); ?> </div> <div class="mm mb f16"> <?php _e("Please", 'backup-backup'); ?> <a href="#" class="hoverable secondary bmi-modal-opener nodec" data-modal="reset-confirm-modal"><?php _e("click here", 'backup-backup'); ?></a> <?php _e("to reset plugin configuration.", 'backup-backup'); ?> </div> <div class="mm mb f18"> <?php _e("If you’re looking for other options not listed above, check out the", 'backup-backup'); ?> <a href="#" class="collapser-openner nodec secondary hoverable" data-el="#other-options"><?php _e("Other options", 'backup-backup'); ?></a> <?php _e("chapter as they might be there.", 'backup-backup'); ?> </div> </div> <div class="mm center f20 mb"> <a href="#" class="text-muted close-chapters nodec"><?php _e("Collapse this chapter", 'backup-backup'); ?></a> </div> <div class="mbll"></div>
| ver. 1.4 |
Github
|
.
| PHP 7.2.34 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка