когда всплывающее окно ckfinder не может показать изображения

ckeditor интегрируется с ckfinder. когда я выбираю браузер из ckeditor, ckfinder появляется, но не может отображать изображения и папки. ошибка будет такая.

It was not possible to properly load the XML response from the web server.
XML Parsing Error: junk after document element Location: http://localhost/tess/ckfinder/ckfinder.html?Type=Images&CKEditor=editor1&CKEditorFuncNum=1&langCode=en Line Number 2, Column 1:Notice: A non well formed numeric value encountered in /Applications/XAMPP/xamppfiles/htdocs/tess/ckfinder/core/connector/php/php5/Utils/Misc.php on line 202
^
Raw response from the server:

<?xml version="1.0" encoding="utf-8"?><br />
<b>Notice</b>: A non well formed numeric value encountered in <b>/Applications/XAMPP/xamppfiles/htdocs/tess/ckfinder/core/connector/php/php5/Utils/Misc.php</b> on line <b>202</b><br />
<br />
<b>Notice</b>: A non well formed numeric value encountered in <b>/Applications/XAMPP/xamppfiles/htdocs/tess/ckfinder/core/connector/php/php5/Utils/Misc.php</b> on line <b>202</b><br />
<br />
<b>Notice</b>: A non well formed numeric value encountered in <b>/Applications/XAMPP/xamppfiles/htdocs/tess/ckfinder/core/connector/php/php5/Utils/Misc.php</b> on line <b>202</b><br />
<Connector resourceType="Images"><Error number="0" /><ConnectorInfo enabled="true" s="" c="" thumbsEnabled="true" thumbsUrl="http://localhost/ckeditor-ckfinder-integration/uploads/_thumbs/" thumbsDirectAccess="false" thumbsWidth="100" thumbsHeight="100" imgWidth="1600" imgHeight="1200" uploadMaxSize="134217728" uploadCheckImages="false" plugins="imageresize,fileeditor,zip" /><ResourceTypes><ResourceType name="Images" url="http://localhost/ckeditor-ckfinder-integration/uploads/images/" allowedExtensions="bmp,gif,jpeg,jpg,png" deniedExtensions="" hash="3425a9286fe54f22" hasChildren="false" acl="255" maxSize="134217728" /></ResourceTypes><PluginsInfo><imageresize smallThumb="90x90" mediumThumb="120x120" largeThumb="180x180" /></PluginsInfo></Connector>

ошибка отображается следующим образом:

введите описание изображения здесь


person Wria Mohammed    schedule 06.07.2019    source источник
comment
Вы поняли это?   -  person alexseif    schedule 23.01.2020
comment
Я думаю, что да.   -  person Wria Mohammed    schedule 25.01.2020
comment
Не могли бы вы поделиться им, пожалуйста?   -  person alexseif    schedule 26.01.2020


Ответы (1)


Я решил эту проблему, просто прокомментировав ckfinder \ core \ connector \ php \ php5 \ Utils \ Misc.php строку с номерами от 196 до 205, тогда все работает нормально. Вы комментируете ниже код.

        $last = strtolower($val[strlen($val)-1]);
    switch($last) {
        // The 'G' modifier is available since PHP 5.1.0
        case 'g':
            $val *= 1024;
        case 'm':
            $val *= 1024;
        case 'k':
            $val *= 1024;
    }
person Mohammed Abu Faysal    schedule 11.02.2021