$ chromium-browser
$ which chromium-browser
/usr/bin/chromium-browser

Technical notes, and other ideas.
$ chromium-browser
$ which chromium-browser
/usr/bin/chromium-browser
Refer: https://www.hostinger.com/tutorials/wordpress/how-to-add-php-code-to-wordpress-post-or-page
The plug-in is called "Insert PHP" and this version worked, as of "2017-10-16;
10:19 AM] Rohith Poreddy: These are the changes I made to apache config
# X-FRAME Options
Header set X-Frame-Options SAMEORIGIN
# X-XSS-Protection:
Header always set X-XSS-Protection "1; mode=block"
# X-Content-Type-Options:
Header always set X-Content-Type-Options: nosniff
# Content-Security-Policy
Header set Content-Security-Policy "script-src 'self'; object-src 'self'"
[10:20 AM] Rohith Poreddy: In /etc/httpd/conf/httpd.conf
Refer: http://crunchify.com/wordpress-how-to-force-specific-pages-to-be-secure-ssl-https/
That part is actually pretty easy. Just drop this in the wp-config.php. That’ll force the entire admin over SSL, which is what you want in most cases.
define('FORCE_SSL_ADMIN', true);
When updating to a new theme, WP start converting links into embeds, which exposes this site to 3rd party tracking, etc.
Refer: https://kinsta.com/knowledgebase/disable-embeds-wordpress/
Plug-in Used to disable: "Disable Embeds" by Pascal Birchler
Change Footer
/wp-content/themes/twentyseventeen/template-parts/footer/site-info.php
Might need to change Settings, Permalinks, and use category and tag, if the category and tag links do not wori.
Copyright © 2007-17 | PeterJohnRoss.com | Designed by Maurice Ruckman
WP All Import - Import all of the content from another site
By Soflyy
Custom Meta Widget - Use this to customize the Meta Widget
By bitacre
Disable Embeds - Disble Converting Embedded Links
By Pascal Birchler
WP All Import
Refer: https://wordpress.org/plugins/wp-all-import
Refer: https://www.wpallimport.com/documentation/getting-started/importing-an-xml-or-csv-file
Adding Adsense
Refer: https://www.tipsandtricks-hq.com/wordpress-plugin-for-simple-google-adsense-insertion-170
Possible XML Used for an Import
<entry>
<title>Blog Post by Date</title>
<description>This is something that I want to say</description>
<published>2016-01-02</published>
<category>blog|articles|info</category>
</entry>
Quick Utlity Using Docker
Refer: https://github.com/markSmurphy/akamai-staging
docker run --rm -it \
node:18-alpine \
sh -lc "\
npm install -g akamai-staging && \
staging www.hollandamerica.com \
"
Online Tool
Overview of Steps
Step 1: dig book.hollandamerica.com | grep -i edgekey
Step 2: take the edgekey value and append -staging to it and dig it again
Step 3: dig www.hollandamerica.com.edgekey-staging.net
Step 4: Use the answer section and grab the IP address, use in your hosts file
Step 5: Turn on modify headers with Akamai Pragma and look for X-Akamai-Staging
Doing the work
$ dig book.hollandamerica.com | grep -i edgekey
book.hollandamerica.com. 29706 IN CNAME book.hollandamerica.com.edgekey.net.
book.hollandamerica.com.edgekey.net. 6 IN CNAME e4069.x.akamaiedge.net.
$ dig book.hollandamerica.com.edgekey-staging.net
;; ANSWER SECTION:
book.hollandamerica.com.edgekey-staging.net. 300 IN CNAME e4069.x.akamaiedge-staging.net.
e4069.x.akamaiedge-staging.net. 20 IN A 23.34.148.111
This works as of 2017-09-22
/etc/hosts
72.246.55.134 book.hollandamerica.com
You shoud now see this in the header response:
X-Akamai-Staging ESSL
Using Fiddler to set Akamai Headers
Refer: https://community.akamai.com/blogs/EmilioMurillo/2016/04/21/troubleshooting-with-fiddler
Simple test page on book.hollandamerica.com to make sure you can see Akamai Stage
https://book.hollandamerica.com/utilities/SessionDump.jsp
Use the following Google Link to test a website:
https://search.google.com/test/mobile-friendly
Use the following steps to setup Python on your GoDaddy account
SSH onto your account, and you'll need a couple of starter scripts
virtual-python-py.txt (rename)
ez_setup-py.txt (rename)
Bonus - Send Email with Python
send-email-py.txt (rename)
Reference Article
Installing Python Libraries on GoDaddy Shared Hosting : Create Awesome
Refer: http://blog.cosmocatalano.com/installing-python-libraries-on-godaddy-shared-hosting/
$ python -V
# cd ~
$ /usr/local/bin/python2.7 virtual-python.py
$ ~/bin/python ez_setup.py -U setuptools
$ ~/bin/python ~/lib/python2.7/site-packages/easy_install.py beautifulsoup4
$ ~/bin/python ~/lib/python2.7/site-packages/easy_install.py requests
Now you will execute your python scripts like this:
$ ~/bin/python your-script-here.py
Open about:config
Search for media*play
Set media.block-autoplay-until-in-foreground;false
Set media.autoplay.enabled;false