In Drupal 10.3.8+webform 6.2.7,
Renew
/modules/webform_calculation/templates/webform-calculation.html.twig
to
{{ 'Submitted non-iterable values'|t }}
{% for key, value in submission.getData %}
{% if value is not iterable %}
{{ key }}: {{ value }}
{% endif %}
{% endfor %}
It can be work well.
Solve it by composer require 'drupal/media_library_form_element:^2.1'
ref:
https://www.drupal.org/forum/support/post-installation/2023-04-11/how-do... →
Step by step:
1.core/lib/Drupal/Core/Entity/Query/Sql/Query.php in 142 add
\Drupal::logger('access_check_debug')->error('Missing access check for entity query: ' . print_r(debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS), TRUE));
2.In webform,add text element,fill it,then click save.
3.To /admin/reports/dblog/ check newest error log,open it,find media_library_form_element
4.Upgrade it by composer to newest to support drupal 10.3.8.
ty10086 → created an issue.
#52 10.3.8+entity print 2.5
I tried with some failed as ,
[root@drupal entity_print]# patch -p1 < entity-print-2860122-52.patch
patching file config/install/entity_print.settings.yml
patching file config/schema/entity_print.schema.yml
Hunk #1 FAILED at 2.
1 out of 1 hunk FAILED -- saving rejects to file config/schema/entity_print.schema.yml.rej
patching file entity_print.install
patching file entity_print.post_update.php
patching file entity_print.services.yml
patching file src/Asset/AssetCollector.php
patching file src/Form/SettingsForm.php
Hunk #4 FAILED at 108.
Hunk #5 succeeded at 166 (offset 6 lines).
Hunk #6 FAILED at 241.
2 out of 6 hunks FAILED -- saving rejects to file src/Form/SettingsForm.php.rej
patching file src/PrintBuilder.php
Hunk #4 FAILED at 140.
1 out of 4 hunks FAILED -- saving rejects to file src/PrintBuilder.php.rej
patching file src/Renderer/ContentEntityRenderer.php
patching file src/ThemeResolver.php
patching file src/ThemeResolverInterface.php
patching file tests/src/Unit/AssetCollectorTest.php
before this installed another patch like this,
https://www.drupal.org/project/entity_print/issues/2996197#comment-15665803
✨
Use absolute paths in css
Needs work
Good job!
Hope to be compatible with Drupal 11 as soon as possible.
ty10086 → created an issue.
@andrewp
is it available for install?I mean is a module ready?
ty10086 → created an issue.
Dear @joaopauloc.dev,Have you reviewed the previous problem? Please support if you can.Or can I PM you?
#3
Dear Joao,thanks for your kindly reply.
I can afford some expenses. If there is an appropriate way.
ty10086 → created an issue.
I tried webform calculation fields insert to custom composite.
https://www.drupal.org/project/calculation_fields →
so error shows,
Warning: Undefined array key "#webform_parent_key" in _webform_entity_element_validate_rendering_error_handler() (line 1138 of modules/webform/webform.module).
_webform_entity_element_validate_rendering_error_handler(2, 'Undefined array key "#webform_parent_key"',
...
...
etc.
Currently it seems impossible to accomplish this goal of calculating each row in a custom composite.
ty10086 → created an issue.
ty10086 → created an issue.
ty10086 → created an issue.
I tried so many ways to kill this problem.
I use wkhtmltopdf to product pdf with chinese characters(中文字符)
at last
...
This add to entity-print--webform-submission--notes.html.twig all is ok.
BUT IT'S IMPORTANT: if you use wkhtmltopdf,you must download font SimSun and set as first font like this
body {
font-family: "SimSun","Microsoft YaHei", Helvetica, Arial, sans-serif;
}
i think this need to support.
yes.
how to make Drupal homepage template faster is very bad than wordpress.
so now,you should start an basic bootstrap 5 theme,such as dxpr_theme.
from my own idea.
@shailja179
Finally, I root+composer config -g --unset repos.packagist --->composer require phpoffice/phpspreadsheet:1.29.0 -W
This is work for me on Drupal 10.1.2+php 8.1.7.
@shailja179
I try to downgrade to version 10.1.12---->10.1.0-alpha1 by composer composer update "drupal/core-*" --with-all-dependencies,and root composer.json "minimum-stability": "stable",----->"minimum-stability": "dev"----> composer require phpoffice/phpspreadsheet ----->Using version ^1.28 for phpoffice/phpspreadsheet
in feeds_xslx/composer.json keeping :"phpoffice/phpspreadsheet": "^1.29",
It is worked for me.
10.1.12 not worked well.
@shailja179 Thanks Bro.
I tried
composer require phpoffice/phpspreadsheet in Drupal root file;
composer require phpoffice/phpspreadsheet -W;
composer require phpoffice/phpspreadsheet:^1.28 -W (in composer.json is 1.29)
some errors as attchaments show,with new problem.
problem 2/3/4:Drupal needs running php 8.1.7(8.x)
prolem 1?
problem 5?
I checked mysites/admin/reports/status is ok.
ty10086 → created an issue.
ty10086 → created an issue.