Skip to main content
429
results
Andrew Fletcher
Attempting to apply a patch in Drupal 10.2.4 that had been working until this version.  Now I'm seeing the following error Could not apply patch! Skipping. The error was: The process "patch '-p1' --no-backup-if-mismatch -d '/Users/andrewfletcher/Sites/codebales/modules/contrib/facets' < '/Users/andrewfletcher/Sites/codebales/patches/3336646-function-is-deprecated.patch'" exceeded the timeout of 300 seconds.  This error indicates that the patching process exceeded the maximum...
Andrew Fletcher
Drush open_basedir restriction error PHP Warning: include(): open_basedir...
Andrew Fletcher
To determine the size of a directory using the terminal, you can use the du...
Andrew Fletcher
In many terminal text editors, you use find command as reference in Terminal...
Andrew Fletcher
The "Too many open files" error in Python typically occurs when your program has...
Andrew Fletcher
You can use the pip list --outdated command to view a list of installed Python packages that have newer versions available. This command will show you which packages are outdated and can be updated to the latest versions. Here's how you can use it pip list --outdatedThis command will display a list of installed packages along with their current version and the latest version available. If there is an update available for a package, it will be listed in the output. To update a specific package,...
Andrew Fletcher
Having updated Solr, re-indexing wasn't working. The error in the logs...
Andrew Fletcher
On an Ubuntu 20.02 system with Nginx, you can utilize the following commands to...
Andrew Fletcher
In our projects, team members frequently generate new Git branches linked to the...
Andrew Fletcher
Cleaning out or clearing data in Solr can be done in a few different ways,...
Andrew Fletcher
In an environment that is running Ubuntu 20.02 Nginx Solr   The default Nginx conf is located /etc/nginx/sites-available/ and contains something similar to: server { listen 80; listen [::]:80; server_name uat.oursite.com; return 301 http://uat.oursite.com$request_uri; } server { listen 80; listen [::]:80; listen 443 ssl; ssl_certificate /etc/ssl/certs/Bundle.crt; ssl_certificate_key /etc/ssl/private/MultidomainWildcard.key; # Security...
Andrew Fletcher
Snapshot of the error File...
Andrew Fletcher
To begin, note that Lando is often used for web development and it may not be...
Andrew Fletcher
Have you had the situation where you needed to compare the files recorded in the...
Andrew Fletcher
In Twig, the {% extends %} tag is used to inherit and extend the contents of...