How to enter a new WordPress password using MySQL CLI on Linux See the name of the database used by WP. You can find the database name in the wp-config.php file or you can use the command: grep DB_NAME wp-config.php We are interested in this line: define( 'DB_NAM... Linux MySQL WordPress
How to change the symbolic link permission on Linux Can I set symbolic link permissions under Linux / UNIX? How can I change symbolic link permissions? No, you can not. If you try to execute the chmod command on a symbolic link, it will return with an ...
How to create MySQL users and grant it permission in AWS RDS on Ubuntu Linux? How can I create a new MySQL user and assign permissions in the AWS RDS cloud service from the Linux command line? MySQL is a free open source database. Many sites on the Internet use MySQL along with... AWS Linux MySQL Ubuntu
How to use search in Windows file explorer to select all files? Enter a command in the search bar and you will get a list of all files including those in the sub directories: *.* NOT kind:folder Find out more about "Advanced Query Syntax" features on the official ... Search Windows
How to add SWAP space on Ubuntu / Debian linux server? SWAP is virtual memory outside of installed physical memory (RAM). Check the system to see if SWAP information already exists: free -h sudo swapon --show Check free space on the partition: df -h Creat... Linux Ubuntu
Gatsby JS debugging - limit of file watchers reached on Ubuntu / Debian linux system This problem is caused by the way Gatsby.js works, generates static files and optimizes photos, which easily exceeds the defined Listen limit for the number of files that the Linux OS monitors per dir... Gatsby JS Linux Ubuntu
How to add Google fonts to Ubuntu / Debian linux system? Download Google Fonts from: https://github.com/google/fonts/archive/master.zip [1] Create a “.fonts” directory in “home” using the terminal and the command: mkdir ~/.fonts Unzip the contents of the do... Git Linux Ubuntu
How to solve CORS problem with font files? You have set the CDN and you have a problem with the fonts, here is the solution. **Apache** Add this block to the .htaccess file and the htaccess.conf file at the very beginning: <FilesMatch ".(eot|o... Apache CDN Linux Nginx
Linux commands for backing up and restoring MySQL databases in the terminal If you are running your own Linux driven VPS, you are probably using MySQL for your databases. This article is a small reminder of the various commands for managing MySQL databases using the mysqldump... Linux MySQL
How to enable mod_rewrite in Apache server on Ubuntu / Debian linux server? **What is mod_rewrite?** The mod_rewrite module uses a rule-based rewriting mechanism and a regular PCRE parser to rearrange the requested URLs upon request. By default, mod_rewrite maps the URL to th... Apache Linux Ubuntu
How to set up LAMP stack on Ubuntu / Debian linux server? **What is a LAMP?** LAMP is an archetypal model of a set of web services, named as an abbreviation of the names of its original four open components: the Linux operating system, the Apache HTTP server... LAMP Linux Ubuntu
How to install PhpMyAdmin on Ubuntu / Debian linux server? **What is phpMyAdmin?** phpMyAdmin is a free software tool written in PHP, designed to manage MySQL over the Internet. phpMyAdmin supports a wide range of operations on MySQL and MariaDB databases. Fr... Linux PhpMyAdmin Ubuntu