Fortunately it’s possible to manage Nextcloud in Siteground shared hosting
Warning: An existing WordPress network was detected fixed
How to fix Warning: An existing WordPress network was detected While converting a WordPress single install to multisite, the following error notice was displayed at the Network Setup admin page. Warning: An existing WordPress network was detected the instruction in Network Setup page clearly stated that the PHP constant definition below should be placed before /* …
Continue reading “Warning: An existing WordPress network was detected fixed”
How To enable Visual Studio Code upgrade on Linux Debian
Visual Studio Code enabled official Linux repositories on February 2017 (v1.10) sudo add-apt-repository -y “deb https://packages.microsoft.com/repos/vscode stable main ” sudo apt update sudo apt -y install code You can upgrade / dist-upgrade as usual sudo apt -y upgrade sudo apt -y dist-upgrade
How to fix the “Another Update in Process” Error in WordPress
Here is a video that explain how to solve the “Another Update in Process” Error in WordPress go to the WordPress database > wp_options search for core_updater.lock and delete it click the Updates link on the left Update please don’t reload the upgrade page as it creates another core_updater.lock in …
Continue reading “How to fix the “Another Update in Process” Error in WordPress”
How to change the url in a WordPress database using wp-cli
Using WP-CLI it’s possible to change the website address with this command line
How to get the latest LibreOffice version using apt-get or apt in Linux Debian Buster
To get the latest LibreOffice version using apt-get or apt in Linux Debian Buster you need first to clean the LibreOffice installed: sudo apt remove –purge libreoffice* sudo apt clean sudo apt autoremove Then you need to add backports to your sources listhttp://backports-master.debian.org/Instructions/ then: sudo apt -t buster-backports install libreoffice
How to export WooCommerce orders data after a specific date [WP-CLI]
how to export orders data using wp-cli This is the command line example to use wp-cli to export orders from WooCommerce
How to change LCD brightness from command line Debian Ubuntu Mint Linux
How to change LCD brightness from command line Debian Ubuntu Mint Linux
Use Dashicons on frontend in WordPress
How to load properly Dashicons on frontend
Find and Replace using Sed Unix command
Sed is a UNIX stream editor that can be used to filter text files This can be extremely useful if you have to run a Find and Replace on a string of text across a large file. I find this to be much more efficient than using a Find and …