Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

phpWord - Cannot add PreserveText in Section

Tags:

php

phpword

Not got a lot of experience with phpWord and coming across the following error:

Fatal error: Uncaught exception 'BadMethodCallException' with message 'Cannot add PreserveText in Section.'

Its happening when using the below line:

$phpWord = \PhpOffice\PhpWord\IOFactory::load($document_location . $document_name . '.docx'); 

The document definitely exists and I can save the document and readfile as well.

Any insight would be greatly appreciated.

like image 914
user1530205 Avatar asked Dec 31 '25 21:12

user1530205


1 Answers

I had the same Problem (also asked here) and for me loading the document worked after I removed all mail merge fields from it. Maybe this works for you, too

like image 134
Pinguin895 Avatar answered Jan 02 '26 12:01

Pinguin895