How to – WordPress – command line – WP-CLI

About WP-CLI

It is often quicker and easier to do many tasks at the command line, and WordPress administration is no exception. You can use the WP-CLI (WordPress command-line interface) tool to back up and restore WordPress sites, install plugins, and much more. Additionally, you can use WP-CLI in cron jobs to automate tasks. WP-CLI provides similar functionality to the Drush command-line tool for Drupal.

“How to – WordPress – command line – WP-CLI”Continue reading

Rebuild Perl on a cPanel Server

Every now and again perl will become broken or corrupt either because of something we’ve done or, like most things, out of nowhere with now warning. Run the following:

“Rebuild Perl on a cPanel Server”Continue reading

lftp –> Fatal error: Certificate verification: Not trusted

lftp –> Fatal error: Certificate verification: Not trusted

$ lftp user@test.ftp.com:/directory
Password:
cd: Fatal error: Certificate verification: Not trusted

To disable certificate verification in lftp,

$ cat ~/.lftp/rc
set ssl:verify-certificate no
Scroll to top