Check your browser debug console for errors. If there are errors you should fix them, in a clean install there should be no errors (I just installed a test with 2.8.2 and there are no errors).
The link to view the user's page is in the dropdown menu.
The username with href="#" is used as a trigger to open the menu, as per bootstrap-italia specifications.
I have a doubt, maybe the problem is another, does the dropdown menu like in the image work for you?
Fixed on 2.x
Ddev is used for local development and not for deploying sites to production.
There are various ways to deploy sites to production depending on the provider you use. You should study the features of your provider.
Generally, if they provide command line access with `composer`, you should be fine.
In the case of the demo site on bootstrap-italia.arturu.it, the site runs inside containers orchestrated with "docker compose". I'm not sure if this method suits you, but it's the one I use.
In conclusion, there's no absolute way to deploy Drupal to production; use what best aligns with your needs.
Here are some links for further reading:
@flavio_russo
- Install docker https://docs.docker.com/engine/install/ubuntu/
- Install DDEV https://ddev.readthedocs.io/en/stable/users/install/ddev-installation/#l...
- run
$ bash <(curl -s -H "Cache-Control: no-cache" "https://git.drupalcode.org/project/bootstrap_italia/-/raw/2.8.x/var/bin/build-ddev-installation.sh")
Hi Flavio,
if you install ddev (it helps you create a development environment with the right requirements, yours does not have the right requirements), by launching the command described here https://git.drupalcode.org/project/bootstrap_italia/-/tree/2.x#how-to-st... it will do all the work described in the guide automatically for you.
---
Ciao Flavio,
se installi ddev (ti aiuta a creare un ambiente di sviluppo con i requisiti giusti, il tuo non ha i requisiti giusti), lanciando il comando descritto qui https://git.drupalcode.org/project/bootstrap_italia/-/tree/2.x#how-to-st... farà tutto il lavoro descritto nella guida automaticamente per te.
Ps. Flavio, su drupal.org si usa l'inglese (anche male o malissimo, ma si usa l'inglese), è una regola della community.
ok @aaron.ferris, mark fixed, thanks :)
Fixed in 2.8.0
The theme has a workaround for using icons in this case. Go to subtheme settings -> "Libraries" -> "CDN Settings" -> "Icons from CDN"; set the path until you reach sprites.svg.
Obviously remember not to bring this setting into production if it is not needed.
I updated the dependencies and upgraded to videojs 8.
I updated the dependencies and upgraded to videojs 8.
I am closing this page as php_ffmpeg has been updated to drupal 10
@starglide, @Hritick is right, on drupal.org they speak in English.
@alice, however you are right it's a bug. A bug with no negative effects though.
The bug is caused by this line of code: https://git.drupalcode.org/project/bootstrap_italia/-/blob/2.x/modules/b...
Drupal automatically creates a single twig namespace that points to the "templates" folder of each module or theme, for example the "@foo" twig namespace will point to the "foo/templates/" folder of the "foo" module.
In the specific case for the "bootstrap_italia_paragraph" module, drupal automatically builds a namespace "@bootstrap_italia_paragraph" which points to the "/themes/contrib/boostrap_italia/modules/bootstrap_italia_paragraph/templates" folder. But at the same time a new namespace is defined on line 16 of "bootstrap_italia_paragraph.info.yml" which overwrites the one automatically created by drupal.
Obviously my intentions when I wrote this piece of code were not to override the automatic namespace that drupal creates, so it's a bug.
I don't think the proposed solution is correct as the namespace is used in many other parts, so making the proposed change would break other parts of code.
svgo 3.3.1 fix the issue. Ref. https://github.com/svg/svgo/releases/tag/v3.3.1
arturopanetta → created an issue.
@luca_cracco thanks for your contribution, sorry if I don't apply your patch but two lines have already been fixed in a similar way:
- https://git.drupalcode.org/project/bootstrap_italia/-/blob/2.x/src/Helpe...
- https://git.drupalcode.org/project/bootstrap_italia/-/blob/2.x/src/Helpe...
If you want to produce a new patch that fixes the remaining lines with the same method I will apply them.
Version 8.x-0.10 is in EOL. However the error is caused by an uninstalled dependency: install the components
module.
Hi, thanks for the report. I couldn't reproduce the problem, could you provide more details?
If you can explain all the steps to reproduce the problem it is easier to fix.
Ciao @McAle, ottima osservazione! enable-all-tooltips e load-fonts non caricano automaticamente le dipendenze.
Penso che la risoluzione del problema sia un po' diversa, cosidera che bootstrap
viene fornito dal sub-theme ed esiste solo dopo che il sub-theme ha caricato le sue librerie, il caricamento avviene qua, quindi aggiungere come dipendenza bootstrap_italia/base
(che non fornisce bootstrap
) non risolverebbe il problema, quindi forse sarebbe opportuno spostare questi due js nel sub-theme in modo da far caricare le dipendenze in automatico?
Bisogna ragionarci un po', tu che ne pensi?
Comunque l'errore che ti viene segnalato che bootstrap
non esiste sicuramente va ricercato nel caricamento della libraries del tuo sub-theme.
@sidgrafix Thank you and what a wonderful thing you are doing.
For the queue module I opened a specific issue https://www.drupal.org/project/streaming/issues/3393523 ✨ Feature: streaming_transcode_queue Active , click on the button to create your fork on git and then send a merge request.
For other issues I think it is better to open other issues so we can keep track of everything.
Thanks for what you're doing
arturopanetta → created an issue.
Thanks for the feedback, I'm carrying out this module in my free time (which isn't much). If you want to send some code it's really welcome <3
arturopanetta → created an issue.
Hi sidgrafix,
this is first commit for D10 compiance https://git.drupalcode.org/project/streaming/-/commit/83525409b950317912...
See also https://www.drupal.org/project/php_ffmpeg/issues/3365929 ✨ Port to D10? Closed: duplicate
Ciao :)
I sent a merge request to make the form D10 compliant. The code sent also contains patch #9 of #3256578, I had to insert patch #3256578 #9 as the code I sent would not work on Drupal 10.
The rest should go smoothly.
arturopanetta → made their first commit to this issue’s fork.
Why?
Hi, I can't reproduce the error, what version of node are you using? Currently version 18 of nodejs is compatible.
arturopanetta → created an issue.
Ciao @kopeboy,
I wasn't able to reproduce the error.
AssertionError: $attributes, if set, must be an array or object of type \Drupal\Core\Template\Attribute in assert() (line 245 of core/lib/Drupal/Core/Template/TwigExtension.php)
Could you provide me with more information?
- Yes, you need to install
drupal/components:^3.0@beta
if you have Drupal 10. You can find installation instructions at https://git.drupalcode.org/project/bootstrap_italia/-/blob/2.3.x/README..... Since you are using 'DDEV', you might consider using the automated installation script as well: https://git.drupalcode.org/project/bootstrap_italia/-/blob/2.3.x/README..... - Yes, you are right. This is one of the challenges we plan to address in the upcoming releases. If you'd like to help, please join us on our Telegram channel.
- This issue stems from a dependency on
svg-sprite-loader
, which we need for compiling SVG icons. Currently, there are no alternatives in consideration for replacing the library. I will bring up this topic in the next developer meeting. If you would like to participate, please join us on the Telegram channel as well.
Grazie
I tested patch #2 and it works, I can redirect logs to stdout container. Patch #3 which I was unable to apply as it tries to remove some lines of code related to module versioning.
I used to:
- Drupal 10.0.9
- log_stdout branch 1.x
- patches #2
Thanks @AndersTwo <3
#18 @allexim No, when uninstalling the module it doesn't delete user-created content, it's a deliberate choice (deleting content didn't seem like a good choice).
#19 Hi @allexim about the 503 error I mentioned it in https://www.drupal.org/project/streaming/issues/3305459#comment-14671382 → . As for the load you can choose the number of Threads to use from the PHP FFMpeg settings
Thanks @Bhanu951 for the patch, I'll release the updated version as soon as I can.
Thanks @apaderno i removed the files with comments only
arturopanetta → created an issue.
+1
I tested the patch with Drupal 10 and php 8.1 and it works fine.
Version 2 solves this problem with a workaround. Go to theme settings -> Libraries -> CDN Settings and fill the "Icons from CDN" field with the correct path.
Fixed in Drupal 9.4, 9.5 and 10 https://www.drupal.org/project/drupal/issues/3176625#comment-14584696 →