Have you tried https://www.drupal.org/project/single_content_sync/issues/3511539 🐛 Recursion takes too much memory compared to earlier versions (1.4.6 or earlier) Active ?
I have exactly the same issue as described in #20.
Turned out that when content moderation is enabled for a content type and there are multiple translations, the table node_field_data will list only published translations. This is a problem because nid relationship has extra condition to match the language
For me the solution was quite obvious
/**
* Implements hook_views_data_alter().
*/
function example_views_data_alter(array &$data): void {
// We need to remove this extra language field in order to make it work
// with unpublished translations of moderated content that are not listed in
// node_field_data table.
if (isset($data['node_field_revision']['nid']['relationship']['extra'])) {
unset($data['node_field_revision']['nid']['relationship']['extra']);
}
}
In my case this does improve drupal dynamic caching and does not break the functionality.
don't see any blocker why not to add UnchangingCacheableDependencyTrait, so views can still have max-age -1
If it breaks things, please report it here
Unfortunately fork failed during creation, so I could not push or fetch from it (it says repo does not exists)
Here is a file patch.
Ahh, this is duplicate of ✨ Export images uploaded via CKEditor Active , I tested it and it works perfect
I'm planning to create 1.4.11 during a week, so already merged a few issues
Thanks for the patch, I will check and test it when I get some time. Meanwhile you can also test similar issue but with different solution here
https://www.drupal.org/project/single_content_sync/issues/3511539#commen... 🐛 Recursion takes too much memory compared to earlier versions (1.4.6 or earlier) Active
I provided a few new options of exporting for menu links of content and embedded links from formatted text. By default it will be Stub mode instead of Full one. Also it's possible to select None.
Let me know if new patch works for you. Don't forget to run drush updb.
Correct, that feature did not exist in 1.4.6. Probably it makes sense to change the logic of export there. Let me update the patch and try to optimize that moment (instead of exporting full entity I will only export stub version of it)
I asked you a few questions and received 0 answers, can you please provide any information about your content structure. If the issue is not reproducible out of the box, this cannot be critical
well I don't know what is your exact structure, so it's hard to test it for me as I can't reproduce it. In any case, I provided a MR that might improve the export. Do you export node with a taxonomy reference or you export a taxonomy entity itself? Please provide mode details of your content structure, so I can replicate it at least
that's not a critical issue, it's easy to fix, expect a new patch in a few minutes
I think for now you can try to apply a patch from from this issue 🐛 Handle potential exceptions on batch content import Active
I was exporting and importing zip files over 500 mb, and didn’t have memory issues, maybe there is some kind of recursion issue that causes infinite loop.
In any case, there is an issue that will optimize export ✨ Allow to partially export content Active , still need to find time to develop it
Pushed correct fix, the error is gone.
That's not a solution. Now I can see
Deprecated function: str_starts_with(): Passing null to parameter #1 ($haystack) of type string is deprecated in _rocketship_blocks_title_preprocess_block()
Let me provide a correct solution
I've never seen that issue before, could you please try UI import and see if there are any errors
/admin/content/import
This seems to be related. I really want this feature for the module as this might be a nice addition in many cases.
I will think of exact approach yet, but as far as I see this is a duplicate. Feel free to change status if I'm wrong
Hello,
I just took some time to properly check the issue and I think it's getting outdated.
The import/export directory file schema is now configurable in this issue 🐛 Export/Import throwing ZipArchive::open(): Argument #1 ($filename) cannot be empty in ZipArchive->open() Active but honestly, there will no longer be any "real" files generated during export and import since the module will switch to a stream approach in next release (already implemented, just doing some extra testing).
I don't see much sense to introduce new hooks.
You can alter translations by using event subscriber. See ✨ Include translations to ExportEvent event, so user can alter translations too Active
So by doing this you say no to importing of any existing exported content that still use base64 approach.
I would add a backward compatibility of old method to import method
@aaronchristian
Could you please test a new patch I created in MR 152. Let me know if you still get errors during export.
let me try to take a look closer
will change priority because the issue in only applicable for live env on Acquia Cloud Platform hosting.
The patch is ready.
I made export and import directory file schema configurable.
Steps to test:
1. Apply patch
2. Execute drush updb && drush cr
3. Visit /admin/config/content/single-content-sync and change import directory schema to Public files.
4. Test import content on live once you release this change to live env.
Can you just resave your settings form?
I don't see any issues here, you config is just outdated or broken
@ashraf.hussain
I will try to provide a patch today, so it takes into account whole flow
I'm going to make it configurable
nginex → changed the visibility of the branch 3336041-breadcrumbs-not-corrent to hidden.
rerolled against 2.0.x, need to change target branch of MR to 2.0.x
Unfortunately I don't have a project hosted on Acquia to test it.
Do you import the zip file via UI or drush?
If UI, maybe it worth trying to replace
'#upload_location' => "temporary://import/zip",
by
'#upload_location' => "public://import/zip",
Then the issue might gone
@ashraf.hussain what is your temporary file path on prod and other envs? is there a difference?
> This is just menu_link_content, but for some reason it will load the whole referenced node and all its fields. Is it necessary to load all the embedded entities and their field values for links?
at the moment it exports full entity if it was not exported yet, otherwise it will export base fields only. So in your generated file you should not see the same entity exported multiple times including all fields.
Anyway, I really want to improve this in ✨ Allow to partially export content Active to reduce size of generated files and just export what is really needed instead of everything
yeah, makes sense, feel free to extend existing configuration form
Hey @murz,
The [drupal_root]/scs-export is a fallback path if you don't mention the custom one.
e.g.
drush content:export node /relative/output/path
Patch works like a charm, thanks
I see, the module still supports php 7.4, and that syntax is available in php 8
I will create a separate issue to drop php 7 support in 2.x
what's your php version?
There are notes in MR that need to be taken into account
I provided a patch that extends logic of GenericContentEntity, so all base fields are taken into account with proper export and import logic.
Do not forget to clear cache before testing.
After a second look I decided to refactor a bit of new event, so it's more logical to be used + updated readme
For user entity I would definitely try to find a user by username if no match by uuid.
The issue is that user entity should have a unique username and if user A was create on site A and the same user was manually created on site B, they do have different uuid but the same username
Thanks for your contribution
Thanks for the patch, I fixed DI warning, looks good now!
I fully reworked the path and added global support for path field
Thanks for the patch!
I extended the logic a bit to work with any file schema not only private and public.
This is no longer needed, since 1.4.7 version all field types with simple get/set logic work out of the box
Thanks, it works!
Works like a charm!
Thanks for checking the issue!