Skip to main content
14
results
Andrew Fletcher
These steps are for Drupal 8 and 9.   Export your database Order here is important.  First you want to clear all the Drupal caches.  Then export / dump the db the sql database to a file in your home directory. drush cr drush sql-dump > path/to/your/file/ourpout/sql-dump-file-name.sqlor drush sql-dump --extra-dump=--no-tablespaces --result-file=../sql/db-2022-12-07.sqlWithout having to manually set the date drush sql-dump --extra-dump=--no-tablespaces...
Andrew Fletcher
Goal: I want to download a table list to a txt or csv file. Initially, as a root...
Andrew Fletcher
Looking to install Solr on your server?  Not sure if it worth the...
Andrew Fletcher
On your local OSX environment using Terminal or iTerm you can create a MySQL...
Andrew Fletcher
This article assumes that you are running Docker and Lando already.  Don't...
Andrew Fletcher
Installing Varnish to increase the speed of the page load. Install varnish using the command below yum install varnishYour response should look something like Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * base: mirror.realcompute.io * epel: epel.mirror.digitalpacific.com.au * extras: mirror.realcompute.io * updates: centos.mirror.digitalpacific.com.au Resolving Dependencies --> Running transaction check ---> Package varnish.x86_64 0:4.0.5-3.el7 will be...
Andrew Fletcher
Running Docker and attempting to install a web proxy environment where I'm...
Andrew Fletcher
Working on an Azure server I ran a mysqldump command to generate a copy of the...
Andrew Fletcher
When attempting to backup mysql using the mysqldump command mysqldump -u root...
Andrew Fletcher
How to Create New MySQL User Before you can create a new MySQL user, you need to...
Andrew Fletcher
The generally accepted answer to a mysqldump is: mysqldump -h [host] -u [user] -p [database_name] [table_name] > [file].sqlOr a variant there of...  Of course if you are logged in to the server and working from it you don't need to express the -h [host] mysqldump -u [user] -p [database_name] [table_name] > [file].sql  But no not for me.  I wasn't seeing the success story of a downloaded database file.  Instead I was warmly embraced by error land: mysqldump: Got...
Andrew Fletcher
To add ejabberd and run MYSQL to the server I needed to update the server...
Andrew Fletcher
Installing Laravel on an Apache server was going to be a no fuss process said no...
Andrew Fletcher
The starting point is to read through and follow the notes outlined on the...