dewancodes β created an issue.
I added this in settings.php and it worked fine:
$config['image.settings']['allow_insecure_derivatives'] = TRUE;
Thanks @ mably β for the solution.
@rentog, Yes, you are right here. I expect the same thing to be pointed out here for the multilingual sites.
I think this can be solution to this issue:
Override the Moduleβs Twig Template:
{% set share_url = path('', {}, {'absolute': TRUE}) %}
Hi @atowl . What steps are remaining to do final implementation for this issue in order to close this issue?
@shelane Does your asset injector file contain malicious code? I want to about details or steps to reproduce it so I can have a detail eye on it.
<a href="https://www.drupal.org/u/divyanshgupta">@divyanshgupta</a>
When it is expected the review in #4 will be applied action on it? Thanks for helping the community devs.
@muhammad-uzair β One fragile solution to this issue is we can use ctrl- (control minus) to reduce screen size. But definitely this problems needs to be encountered in a better way.
@alyaj2a , Does this patch #4 worked fine for you?
@ericmulder1980 When we can expect the final MR to be accepted? I want to upgrade this module.
After I had installed this module on Drupal 10.2.3, I added a relationship in the views for 'URL alias', the related views page is broken. It is not working correctly on a multilingual website.
I am also facing same problem. I have installed upgrade status module version 4.3.1 to upgrade Drupal 10 to Drupal 11, but I found this warning :
Unable to write configuration for PHPStan to /tmp/upgrade_status/deprecation_testing.neon. Scanning is not possible until this is resolved.
Any help will be highly appreciated!
dewancodes β created an issue.
Nice suggestion by @ericgsmith.
Is there any solution available yet for Drupal 10, so we can choose "Responsive Image style" for 'Media Type Image'?
Hello @Gaurav Gupta
When I try to add data in the "caption" field of the image, data is not being saved in the database. Any clue how to fix it?
FIXED: I have fixed this issue by enabling following options on the following URL:
/admin/config/content/block-class/settings
Global Settings :
> Enable auto-complete
> Enable special chars
> Enable id replacement
Now I can save the block in Drupal 10.2.3 and PHP 8.2
#12 worked for me. Unpublished a node and remove URL aliases from which node you want to redirect to another node where you want to redirect this node.
Thanks @uri_frazier
I tried #27 on drupal 10 and it worked fine for me as error gone. Thanks @drupalninja99.
BEFORE:
$terms = taxonomy_term_load_multiple_by_name($item, 'tags');
AFTER:
$terms = \Drupal::entityTypeManager()->getStorage("taxonomy_vocabulary")->loadByProperties(["name" => (string)$item, "vid" => 'tags']);
(string) this is the string enforcement.
This worked for me.
Yeah, I also tried v3 and it fixed the bug for me. Thanks steveoriol β