Use the command: 1~$ drush pml --no-core --status=Enabled See sample below: 1~$ drush pml --no-core --status=Enabled 2----------------------------- ----------------------------------------------------------- --------- ----------------- 3Package Name Status Version 4----------------------------- …
Read MoreWhen you're doing development, most of the time, you don't want to minify css/js. Here's how you the respective settings: settings.local.php (drupal 7) 1$conf['preprocess_css'] = FALSE; 2$conf['preprocess_js'] = FALSE; settings.local.php (drupal 8 & 9) …
Read MoreThe following modules are needed: 1drush en site_audit -y 2drush en hacked -y 3drush en diff -y 4drush en seo_checklist -y 5drush en security_review -y 6drush en unused_modules -y All of the resulting reports will be in Admin > Reports. Exception is "Unused Modules" where you need to go to Admin > …
Read More1drush dl og-7.x-1.3 2drush en og-7.x-1.4 More details in https://www.drupal.org/node/1499548
Read MoreHow to reset user after being blocked (d7 and works in D8 as well). 1MySQL> delete from flood where identifier=<uid>; To get the uid, search as follows: 1MySQL> select uid, name from users where name like '%NameHere%'\G; Details in https://www.drupal.org/node/1023440 NOTE: Observed to work as well …
Read MoreWondering what sort of tasks are in drupal cron? I need to know what those tasks are. You can start by searching your codebase for _cron functions. Remember: 1All *_cron() functions in a site will be run on cron.
Read MoreYou just received a D8 database dump and it is said to be complete. However, you see this error: 1[notice] Missing database table: key_value Said table is part of drupal8 so it can't go missing. It could be that the table names for this site has prefix. Check using the command: {code} drush sql-drush "show …
Read MoreBelow are some common performance-impacting issues that your environment(s) may be experiencing: Traffic: Increased traffic to your environment(s) may be causing service to be interrupted on those environments. Apache access logs: https://docs.acquia.com/acquia-cloud/monitor/logs/ Insight: …
Read MoreSee: https://www.acquia.com/sites/acquia.com/files/documents/2020-03/Acquia%20Ultimate%20Guide%20to%20Drupal%209.pdf https://dev.acquia.com/drupal9 https://github.com/mglaman/drupal-check https://phpstan.org/user-guide/getting-started
Read MoreAcquia is one of those that would provide extended support beyond EOL of Nov 2021 https://support.acquia.com/hc/en-us/articles/360034121053-Drupal-7-x-Extended-Support
Read More