How To Change the Destination Admin Email Address for User-Meta Pro Notifications

Author: , May 11th, 2020

How To Enable the WordPress Custom Fields Option Under the Screen Options Menu

Author: , November 19th, 2019

Normally, there is an option in the Screen Options menu to show or hide the Custom Fields tool. If this option is missing, you may have the plugin Advanced Custom Fields (ACF) version 5.5.13 or greater installed and active because ACF removes the Custom Fields tool to improve page load speed. If you do have […]

How To Create a Single Custom Post Type Template for Genesis in WordPress

Author: , October 21st, 2017

wordpress/wp-content/themes/yourTheme/single-yourCPTslug.php

How To Find the AWS Region and Availability Zone Via the CLI

Author: , June 30th, 2015

/opt/aws/bin/ec2-metadata | grep placement

How to do Web Redirects in HTML, PHP and PERL CGI

Author: , November 9th, 2009

For PHP: [sourcecode language=”php”] <?php header("HTTP/1.1 301 Moved Permanently"); header("Location: http://www.wyzaerd.com/index.html"); exit(); ?> [/sourcecode] For PERL: The fast way: [sourcecode language=”perl”] #!/usr/bin/perl -Tw $|=1; use CGI; my $cgi_object = new CGI; my $new_page_url = qq~http://www.wyzaerd.com/index.html~; print $cgi_object->header(-expires=>"now",’Location’ => $new_page_url,); exit 0; [/sourcecode] OR The slow way: [sourcecode language=”perl”] #!/usr/bin/perl -Tw $|=1; print qq#Content-Type: text/html; charset=ISO-8859-1\n\n<html> […]

Groovy

Author: , November 9th, 2009

So I have caught up on social matters via text and Facebook this morning. Have gotten the CHS/Rapida project underway – a promising beginning. Must do plans and emails… Did the shutdown page for a client today – made sure to do index.html, index.php and cgi-bin/index.cgi. Still looks good, just no guts anymore. Spoke to […]