??
You're inside public_html, but wp-admin or wp-content was not found.
Savvy
W
olf -
MANAGER
Edit File: b47eb1a21e8a5ab0e4c8ef5c40ab1af5.php
<!DOCTYPE html> <html lang="<?php echo e(app()->getLocale()); ?>"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- CSRF Token --> <meta name="csrf-token" content="<?php echo e(csrf_token()); ?>"> <title><?php echo e(__("backend.fileManager")); ?></title> <!-- Styles --> <link rel="stylesheet" href="//cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css"> <link rel="stylesheet" href="//use.fontawesome.com/releases/v5.15.2/css/all.css"> <link href="<?php echo e(asset('assets/file-manager/css/file-manager.css')); ?>" rel="stylesheet"> </head> <body> <div class="container-fluid"> <div class="row"> <div class="col-md-12" id="fm-main-block"> <div id="fm"></div> </div> </div> </div> <!-- File manager --> <script src="<?php echo e(asset('assets/file-manager/js/file-manager.js')); ?>"></script> <script> document.addEventListener('DOMContentLoaded', function() { // set fm height document.getElementById('fm-main-block').setAttribute('style', 'height:' + window.innerHeight + 'px'); // Helper function to get parameters from the query string. function getUrlParam(paramName) { const reParam = new RegExp('(?:[\?&]|&)' + paramName + '=([^&]+)', 'i'); const match = window.location.search.match(reParam); return (match && match.length > 1) ? match[1] : null; } // Add callback to file manager fm.$store.commit('fm/setFileCallBack', function(fileUrl) { const funcNum = getUrlParam('CKEditorFuncNum'); window.opener.CKEDITOR.tools.callFunction(funcNum, fileUrl); window.close(); }); }); </script> </body> </html> <?php /**PATH /home/zuuttrav/public_html/core/resources/views/vendor/file-manager/ckeditor.blade.php ENDPATH**/ ?>