I had the same issue on Drupal 10.3.8 and webprofiler 10.1.10.
Thanks.
Hey folks,
I have the same issue, and I checked the code on the module. I think the problem occurred because the path on the alter routes doesn't trigger the route change_pwd_page.reset
successfully.
change_pwd_page.reset:
path: '/user/reset/{uid}/{timestamp}/{hash}/new/login'
defaults:
_controller: '\Drupal\change_pwd_page\Controller\ChangePwdPageController::resetPass'
_title: 'Reset password'
requirements:
_access: 'TRUE'
options:
_maintenance_access: TRUE
no_cache: TRUE
Therefore, I modified the path, which seems to work as expected.
Hi folks,
I have the same issue. #2 works on my side.
I upgraded from 10.2.5 to 10.3.5, and I also upgraded all the lightning projects to the latest.
"drupal/lightning_api": "~5.0.0",
"drupal/lightning_core": "^6",
"drupal/lightning_layout": "~3.0.0",
"drupal/lightning_media": "~5.0.0",
"drupal/lightning_workflow": "~4.0.0",
But I didn't do a full check. The only thing I do is use the drush command and deploy all the configuration settings.
cobenash β made their first commit to this issueβs fork.
Confirmed #11
I got several error message
Deprecated function: Creation of dynamic property JSNode::$expression is deprecated at JSNode->__set() (file /var/www/html/docroot/modules/contrib/advagg/advagg_js_minify/jsminplus.inc 1831 )
Drupal core 10.2.0
PHP 8.2.7
Confirmed the patch.
Drupal 10.1.1
Google Text to Speech 8.x-2.0-alpha7
Thank you.
Confirmed the error.
Drupal Core: 9.5.10
role_login_page: 2.0.1
@Adrianm6254 Yes, I created a new release. You could try it via the following command.
composer require 'drupal/webform_trello:^1.0'
Thanks
#17 works for me.
Thanks for @erutan's help. :)
@csakiistvan Thank you for your patch.
From my end, I think the script is necessary. Here is the example I found from bootstrap_sass https://git.drupalcode.org/project/bootstrap_sass/-/blob/5.x/scripts/cre...
Or we need to update the readme.txt to write the correct step if we want to use composer download the project.
It's just my point of view. :)
@csakiistvan
No, I mean if we use composer to download the theme, drupal will put the theme directly at the theme/contrib
folder. But it's fine.
Instead, I think we should create a basic shell script, copy the theme from theme/contrib/tailwindcss
to theme/custom/mytheme
Also, update the theme name and corresponding file name.
For example, mytheme might be the new custom tailwindcss.
@csakiistvan Thank you.
I think we could using the following format.
{
"name": "drupal/tailwindcss",
"type": "drupal-theme",
"description": "A starter kit theme for Drupal 8/9 and Tailwind CSS.",
"homepage": "https://www.drupal.org/project/tailwindcss",
"license": "GPL-2.0+",
"require": {
"drupal/stable": ">=2.0.0"
}
}
Although the themes project will be moved to contrib folder if we use composer, but we could add some script to clone a new one on the custom foler.
@apaderno @csakiistvan Thank you !
However, the original issue I reported will be added stable theme β as dependency theme.
Therefore, I guess we probably needs to add composer.json and add stable theme in require section.
Also, we might need to change the installation process in readme.txt. Using composer instead of git clone.