Adrian Jones
Adrian Jones
Thanks for diving in. For my needs I need to directly call `arrayToPage()` ``` $import = new PagesExportImport(); $options = [ 'update' => true, 'create' => true, 'saveOptions' => [...
Thanks @ryancramerdesign - sorry this is taking up so much of your time. I am building up `$incomingPage` from the $json that is sent to the destination server/site like this:...
@ryancramerdesign - this is really baffling. I have a RepeaterMatrix (RM) field on the template I am updating but if I exclude that from the import using the `fieldNames` option...
This probably makes no sense, but if there is already a block within the RM field and you remove it while also changing the VerifiedURL field value, then the latter...
@ryancramerdesign - yes, it's only via the API and even then it doesn't seem to be easily reproducible in other environments, but it happens every time with one of my...
@ryancramerdesign - I wonder, could the importing of RM fields do something to outputformatting? In my import code I have a `$pages->of(false);` - maybe the RM import process is turning...
@ryancramerdesign - As I noted above, I am already using `$pages->of(false);` It is in my import code, before I run `arrayToPage()` on the json. It's not in my export code,...
Ok, so I tried adding this to FieldtypeVerifiedURL.module ``` public function ___exportValue(Page $page, Field $field, $value, array $options = array()) { if(!$value) return ''; return $value->href; } ``` but even...
Hi @ryancramerdesign - no, access control is off
Thanks for testing this @ryancramerdesign - I have finally figured out the key factor and it relates to this issue: https://github.com/processwire/processwire-issues/issues/1455 In my alternate user branch/template setup I have some...