Fix Drupal Content Images after moving your Drupal site
When you upload an image to the content of a Drupal 7 site. Drupal 7 adds the full path of the image to the actual content. If you are using Drupal 7 check the following table: field_data_body inspect...
View ArticleCannot extract temporary://update-cache, not a valid archive Drupal
If you are getting this error, chances are your PHP install is missing the zip extension. A couple lines below the error message you should see the following sentence. The following file extensions are...
View ArticleHow to Search Content In the Drupal Administration Back-end?
If you have zillion contents in Drupal and paging is not really useful to locate a particular piece of content, you will need to download and install the “Administration Views” module: This module...
View ArticleSimple Query to Delete All Drupal 7 Cache Tables Manually.
Sometimes the only way to regain access to your drupal site is to remove information from the cache tables manually. This script should save you some time. delete FROM drupal7.cache; delete FROM...
View ArticleQuickly Update Drupal with Drush
I am assuming that you already have drush installed. Make sure you do a backup of your Drupal7 Files and databases first. drush pm-update projects drupal-7-31
View ArticleOverriding Meta tags in Drupal 7
Step 1 First install this module: https://www.drupal.org/project/metatag Step 2 Important : If you do not have a an instance of render($page['content']) within your theme template page, make sure that...
View ArticleUnable to install Media entity, media_entity.settings, views.view.media...
Unable to install Media entity, media_entity.settings, views.view.media already exist in active configuration. Solution Connect your database and delete the record form the config table and reinstall....
View Article[ERROR] Command “site:install”, is not a valid command name.
If you are getting this error [ERROR] Command "site:install", is not a valid command name. after installing drupal console, it it because you are running the command outside a drupal installation...
View ArticleHow to Install Drupal with Drupal Composer
Step 1 Make sure that you have composer installed and upgrade it if you have to. Something like that will do it on a Ubuntu platform sudo apt-get install composer Step 2 run the following … Read more
View ArticleUnable to install Embed, embed.settings already exists in active configuration.
Confirm that the module is not installed in the admin panel remove traces of the module from the config table. SELECT * FROM ycsoftware.config where name like '%button%' Remove the files from the...
View Article