Account created on 18 February 2014, about 11 years ago
#

Merge Requests

More

Recent comments

🇺🇦Ukraine nginex

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']);
  }
}
🇺🇦Ukraine nginex

In my case this does improve drupal dynamic caching and does not break the functionality.

🇺🇦Ukraine nginex

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

🇺🇦Ukraine nginex

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.

🇺🇦Ukraine nginex

code cleaning

🇺🇦Ukraine nginex

I'm planning to create 1.4.11 during a week, so already merged a few issues

🇺🇦Ukraine nginex

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

🇺🇦Ukraine nginex

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.

🇺🇦Ukraine nginex

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)

🇺🇦Ukraine nginex

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

🇺🇦Ukraine nginex

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

🇺🇦Ukraine nginex

that's not a critical issue, it's easy to fix, expect a new patch in a few minutes

🇺🇦Ukraine nginex

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

🇺🇦Ukraine nginex

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

🇺🇦Ukraine nginex

I've never seen that issue before, could you please try UI import and see if there are any errors

/admin/content/import

🇺🇦Ukraine nginex

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

🇺🇦Ukraine nginex

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).

🇺🇦Ukraine nginex

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

🇺🇦Ukraine nginex

@aaronchristian

Could you please test a new patch I created in MR 152. Let me know if you still get errors during export.

🇺🇦Ukraine nginex

will change priority because the issue in only applicable for live env on Acquia Cloud Platform hosting.

🇺🇦Ukraine nginex

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.

🇺🇦Ukraine nginex

Can you just resave your settings form?

I don't see any issues here, you config is just outdated or broken

🇺🇦Ukraine nginex

@ashraf.hussain

I will try to provide a patch today, so it takes into account whole flow

🇺🇦Ukraine nginex

nginex changed the visibility of the branch 3336041-breadcrumbs-not-corrent to hidden.

🇺🇦Ukraine nginex

rerolled against 2.0.x, need to change target branch of MR to 2.0.x

🇺🇦Ukraine nginex

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

🇺🇦Ukraine nginex

@ashraf.hussain what is your temporary file path on prod and other envs? is there a difference?

🇺🇦Ukraine nginex

> 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

🇺🇦Ukraine nginex

yeah, makes sense, feel free to extend existing configuration form

🇺🇦Ukraine nginex

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

🇺🇦Ukraine nginex

There are notes in MR that need to be taken into account

🇺🇦Ukraine nginex

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.

🇺🇦Ukraine nginex

Added new events

🇺🇦Ukraine nginex

After a second look I decided to refactor a bit of new event, so it's more logical to be used + updated readme

🇺🇦Ukraine nginex

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

🇺🇦Ukraine nginex

Refactored text, removed duplicates

🇺🇦Ukraine nginex

Change order of the sections

🇺🇦Ukraine nginex

Updated multiple texts

🇺🇦Ukraine nginex

Changes headers

🇺🇦Ukraine nginex

Added site uuid check explanation

🇺🇦Ukraine nginex

Improve abilities

🇺🇦Ukraine nginex

Adjusted the overview of abilities

🇺🇦Ukraine nginex

Thanks for the patch, I fixed DI warning, looks good now!

🇺🇦Ukraine nginex

Thanks for the patch!

I extended the logic a bit to work with any file schema not only private and public.

🇺🇦Ukraine nginex

This is no longer needed, since 1.4.7 version all field types with simple get/set logic work out of the box

Production build 0.71.5 2024