• Skip to main content
  • Skip to primary sidebar
  • Skip to footer

Notes to Self

  • Aviation Weather from NOAA Plugin
    • KZZV
    • Bad Shortcode
    • Simple Metar
  • Meetings

Command line

Mark Chouinard / August 1, 2014

Batch Import using WP-CLI

Place multiple export files into a single directory, then run the following: # Activate the wordpress importer wp plugin activate wordpress-importer –url=http://localhost/example.com/ # Iterate over all of the import files in a given folder. for f in myfolder/*.xml; do wp import $f –authors=skip –skip=attachment –url=localhost/example.com/; done  

Mark Chouinard / July 17, 2014

Super Basic Bash Script for WP-CLI Import

Did my first WordPress import today using wp-cli.  After unzipping the export file, I was looking at 157 xml files.  Seemed plausible I could just point wp-cli import to the folder containing them, but all I got was an error: This does not appear to be a WXR file, missing/invalid WXR version number. Fortunately, I recently […]

Mark Chouinard / February 28, 2014

How to fix “user is not in the sudoers file” in Ubuntu

While adding myself to the www-data group ( long story ) on my Ubuntu 12.04 server, I inadvertently forgot the -a usermod -G www-data mark Before long, I was told my username was not in the sudoers file and the incident was going to be reported, apparently back to me.  Short story, here’s how I […]

Mark Chouinard / February 6, 2013

Fix “Could not reliably determine the server’s fully qualified domain name” when starting Apache server on Ubuntu

This error happens because your server doesn’t have ServerName Apache 2 variable defined and reverse lookup on your IP address returns nothing. We can specify ServerName as 127.0.0.1 to make this message disappear. Just open your favorite terminal emulator and paste: echo “ServerName 127.0.0.1” | sudo tee -a /etc/apache2/conf.d/server_name Restart Apache sudo service apache2 restart

Mark Chouinard / December 26, 2012

Run Samba Config from Command Line

sudo system-config-samba I was getting a Password not Valid message when trying to launch Samba from the desktop.  This was a way around that.  I’ll get back to that problem at a later date.

Primary Sidebar

Post Archives

  • December 2022
  • July 2022
  • December 2021
  • October 2021
  • June 2021
  • February 2021
  • October 2020
  • September 2020
  • August 2020
  • March 2020
  • February 2020
  • December 2019
  • September 2019
  • June 2017
  • May 2016
  • April 2016
  • March 2016
  • September 2015
  • August 2015
  • February 2015
  • January 2015
  • December 2014
  • November 2014
  • October 2014
  • September 2014
  • August 2014
  • July 2014
  • May 2014
  • April 2014
  • March 2014
  • February 2014
  • January 2014
  • June 2013
  • May 2013
  • April 2013
  • February 2013
  • January 2013
  • December 2012
  • January 2011

Footer

Copyright © 2023 · machouinard · Log in