I can not find any documentation to migrate my drupal 7 subtheme to drupal 8. I migrate, but everytime I migrate, my UI is broken and if I try installing bootstrap on Drupal 8 I get:
Drupal\Core\Config\PreExistingConfigException: Configuration objects (bootstrap.settings) provided by bootstrap already exist in active configuration in Drupal\Core\Config\PreExistingConfigException::create() (line 65 of core/lib/Drupal/Core/Config/PreExistingConfigException.php).
Any help is appreciated. Thank you.
Remove configuration object before reinstalling Bootstrap
This configuration object, i.e. bootstrap.settings probably exists because it has remained over from last time you installed bootstrap. So you have to delete this configuration object before you again install bootstrap.
If you have drush version 8, try this command:
drush config-delete bootstrap.settings
Then try reinstalling bootstrap. This should definitely work.
Related
I am currently working on a CMS Website new installation of Drupal. I need to enable Metatagging in my website.
In order to do so I have installed all required modules, but somehow drupal is not detecting the those modules. Please refer below screenshot.
I have used this link of metatag module to download and install : https://www.drupal.org/project/metatag
Following are the version details of various components I am using,
Drupal : 7.35
PHP : 7.2
OS : Ubuntu 18.04 LTS
MySQL : Ver 14.14 Distrib 5.7.24
Please help me with the resolution to this problem. I am open to any other way as well to get metatagging in place.
Thanks already !
As you can see in the screenshot, required dependencies are "missing". Make sure you have downloaded Token, Ctools and Google Analytics modules, for Drupal 7, and extracted them under sites/all/modules folder. Then their flag should be "disabled". After this, you can install your desired modules alongside with their dependencies.
The wonder is that your "system" module is missing too!! its a Drupal core module, perhaps your Drupal installation is corrupted. Try re-extracting and overwriting Drupal core zip file.
I am migrating my application from vaadin 7 to vaadin 8 and following exactly same steps mentioned in the link
But I am getting error
Error: Could not find or load main class com.google.gwt.dev.Compiler
when I run following command to compile the widgetset
mvn -X vaadin:compile -Dvaadin.charts.developer.license= package -Dmaven.test.skip=true
I took out all the addons and kept only the chart one. Can you please help me what might be causing the error. I could upload the POM file, but its big.
Edit:
I noticed that classpath is not set up when I am running mvn vaadin:compile
I figured I had some issues, like incompatible version of add-ons ,etc. When I used the compatible ones, it got fixed.
I´m trying to install de Devel module of Drupal 8, I was reading the README.txt of Project/modules of Drupal, I have read this:
Placing downloaded and custom modules in this directory separates downloaded and
custom modules from Drupal core's modules. This allows Drupal core to be updated
without overwriting these files.
I have downloaded from the official website Drupal - Devel the 8.x-1.x-dev version, to Drupal 8, and when I paste the module (after descompressed) in Project/modules, I have cleared the cache and Updates the "Extends" menu, but I can´t find my "Devel" module.
Do I need to install and configuring the FTP server?
just try with drush .
drush en devel -y
If you are using composer try
composer require drupal/devel
Maybe you could try with
/admin/modules/install and let Drupal put it where it should be placed.
i installed drupal 7.0 and module Libraries API after that i try install this module (https://www.drupal.org/project/gra4) but on page where module must be work i see this displays the inscription
"Please make sure the GRA4 library is installed in the libraries directory. GRA4 library can be found here. Place files in sites/all/libraries/gra4/ (or sites/example.com/libraries/gra4 if you have a multi-site installation)."
i try put files in this way sites/all/libraries/gra4/ but after that shows a white screen on the page - what I need to do that would be earned module
Working on a MacbookPro OS 10.6.6 , using MAMP Pro 1.9.4.
I'm attempting to install Acquia's Drupal Commons locally. The installation progress bar goes all the way, I can check in phpMyadmin that the database has been populated, but before the site configuration screen , I get a 500 Server Error!
Standard Drupal 6 or 7 install without any problem & I was able to install Drupal Commons on my web server. So it seems that some form of conflicts happens between my server configuration ( Mamp Pro ) and Drupal Commons.
Thanks in advance for any suggestions!
Did you check that your sites/default/default.settings.php file was copied to settings.php and not just renamed?
I remember having problems setting up Drupal when I just renamed it, both files need to be there.
I solved the issue by raising the PHP limit in Mamp to 96M.
File > Edit Template > PHP > PHP Version
//Search for 'memory_limit' & edit the value
memory_limit = '96M';
then restart the server.
After dong this Drupal Commons should install without any problems.