Skip to main content
96
results
Andrew Fletcher
Changes in your .env file Connecting your app to the new environment you need to make some tweaks in your .env file. Change your DB_HOST to database. If you use MySQL or MariaDB Lando will create a database named laravel for you with a user laravel and the password laravel. The database section in your .env should look like this: DB_CONNECTION=mysql DB_HOST=database DB_PORT=3306 DB_DATABASE=laravel DB_USERNAME=laravel DB_PASSWORD=laravelIf you use Postgres the settings should look like...
Andrew Fletcher
Clear DNS Cache The DNS (Domain Name Service) cache on your Mac helps browsers...
Andrew Fletcher
Changing git push from passphrase?  There are several ways to tackle this...
Andrew Fletcher
We are going to work through two methods of creating the SOLR cores. Variables...
Andrew Fletcher
xdebug - failed to solve with frontend dockerfile.v0: failed to create LLB...
Andrew Fletcher
Create and push to Docker Hub Creating your own custom image... you need to have a Docker ID.  Not sure, well most likely you created it to download Docker Desktop.  If you don't have one, go to Docker and sign up. In your  text editor create a file called Dockerfile in the same directory you want to have as your local site. No extension, just Dockerfile. Paste in this code and save the file: FROM nginx:latest COPY . /usr/share/nginx/htmlThis tells Docker to use the same nginx...
Andrew Fletcher
Running composer on a server... when running the command composer update, screen...
Andrew Fletcher
Resetting Docker is basically following the start parameters.  All...
Andrew Fletcher
Having Drupal Solr Search APi running, I thought adding synonyms to the mix...
Andrew Fletcher
It is really simple to switch users in Ubuntu or any other Linux distribution...
Andrew Fletcher
  Z shell (Zsh) is a Unix shell built on top of bash (the default shell for macOS) with a large number of improvements. In this article, I'll run through how to configure iTerm2 with ZSH and its dependencies.   Step 1: Install Homebrew Homebrew is a free and open-source software package management system that simplifies the installation of software on Apple’s macOS. Before installing Homebrew, we need to install the CLI tools for Xcode. Open your terminal and run the...
Andrew Fletcher
Steps to get the Solr date range widget working.   Steps Enable the Facets...
Andrew Fletcher
Following is a series of steps to install Tika and have it running for your Solr...
Andrew Fletcher
Working on an Azure server I ran a mysqldump command to generate a copy of the...
Andrew Fletcher
The migrate process saves the status of each running migration in the...