Update: after i update drupal to 10.3.5. It is resolved.
I tested with the following environment:
RockyLinux 9
PHP 8.3
Drupal 10.3
There were no errors.
In summary:
The error only occurs with Drupal 10.3 and Drupal 11 running on Ubuntu 22 and Ubuntu 24.
#65
💬
Aggregation not working css and js cache directories not being created
Postponed: needs info
They're not recreated by the cache clear process, they would be recreated when a new aggregate is created. Can you check if there's any errors in the log when visiting pages after a cache clear?
I don't see any errors. If I install Drupal 9.5.11, the CSS and JS files are still generated normally.
Thanks for your response @r_cheh
I am also encountering the same error.
Server: Ubuntu 24.04
PHP: 8.3 and 8.2
Drupal 10.3 and 10.2
If the settings are:
$config['system.performance']['css']['preprocess'] = TRUE;
$config['system.performance']['js']['preprocess'] = TRUE;
then the css and js folders in the files directory are deleted and not regenerated.
The directories have been set with permissions and ownership allowing write access. Even have set chmod 777.
nguyenphan → created an issue.
>Sometimes, my site crashes because of the error: The "paragraph" entity type did not specify a translation handler. I applied patch #66, and it is okay now.
Basically, anywhere that doesn't use paragraphs won't have an error. If any page uses paragraphs, an error will appear. Therefore, I think it is true that this patch cannot be used yet
Sometimes, my site crashes because of the error: The "paragraph" entity type did not specify a translation handler. I applied patch #66, and it is okay now.
I see solution on tinymce issue: https://github.com/tinymce/tinymce/issues/6386
https://www.tiny.cloud/docs/integrations/bootstrap/#usingtinymceinaboots...
And i apply to my project:
$(document).on('focusin', function(e) {
if ($(e.target).hasClass('wrs_focusElement')) {
e.stopImmediatePropagation();
}
});
nguyenphan → created an issue.