• Hello Again:
    I get this message when I visit the converted page in my WordPress Multisite, any help will be thankful:

    Warning: ZipArchive::close(): Invalid or unitialized Zip object in /home/xxx/public_html/wp-content/plugins/docxpresso/CreateDocument.inc on line 82

    Warning: DOMDocument::loadXML(): Empty string supplied as input in /home/xxx/public_html/wp-content/plugins/docxpresso/CreateDocument.inc on line 86

    Warning: DOMDocument::loadXML(): Empty string supplied as input in /home/xxx/public_html/wp-content/plugins/docxpresso/CreateDocument.inc on line 89

    Warning: DOMDocument::loadXML(): Empty string supplied as input in /home/xxx/public_html/wp-content/plugins/docxpresso/CreateDocument.inc on line 93

    Warning: DOMXPath::query(): Undefined namespace prefix in /home/xxx/public_html/wp-content/plugins/docxpresso/classes/ODF2HTML5/ODF2HTML5.inc on line 706

    Warning: DOMXPath::query(): Invalid expression in /home/xxx/public_html/wp-content/plugins/docxpresso/classes/ODF2HTML5/ODF2HTML5.inc on line 706

    Warning: Invalid argument supplied for foreach() in /home/xxx/public_html/wp-content/plugins/docxpresso/classes/ODF2HTML5/ODF2HTML5.inc on line 587

    Catchable fatal error: Argument 1 passed to DOMNode::appendChild() must be an instance of DOMNode, null given, called in /home/xxx/public_html/wp-content/plugins/docxpresso/CreateDocument.inc on line 167 and defined in /home/xxx/public_html/wp-content/plugins/docxpresso/classes/ODF2HTML5/ODF2HTML5.inc on line 2905

    https://ww.wp.xz.cn/plugins/docxpresso/

Viewing 1 replies (of 1 total)
  • Plugin Author docxpresso

    (@docxpersso)

    It seems that the plugin is not finding the document the reason may be twofold:

    1. The document has not been uploaded
    2. The path to the document is wrong

    Please, first check if you can find the uploaded document within the uploaded media and check which is the path.

    If the file exists the plugin (plugin.php within the docxpresso folder) tries to find the document using the file attribute of the shortcode together with the following PHP code:

    $file = strip_tags($attrs[‘file’]);
    $path = parse_url($file, PHP_URL_PATH);
    $fullPath = $_SERVER[‘DOCUMENT_ROOT’] . $path;

    include a”var_dump($fullPath); exit;” line after it and see if the path corresponds with the one of the document.

    Best regards,

    Eduardo

Viewing 1 replies (of 1 total)

The topic ‘Warning: ZipArchive’ is closed to new replies.