Essential Web development & Digital Marketing cheatsheets, step by step guides and tutorials, code examples. Simplified.
Every Problem can be traced back to a lack of assets. DynamiteFrog aims to provision those assets for common web development and digital marketing problems
Latest posts
File Permissions Cheatsheet
Quick fix for uploads and plugins chmod 755 wp-content/uploads chmod 755 wp-content/plugins find wp-content/uploads -type f -exec chmod 644 {} \; find wp-content/plugins -type f -exec chmod 644 ...
Install Drupal
Install Drupal Locally from Upsun using ddev Upsun and ddev have a special relationship. Upsun have an integration tool to help get pull your remote enviroments down to your local. upsun ddev int...
Drupal display modes cheatsheet
Custom display modes Drupal offers some ways to change the appearance of your content forms in the admin and also the appearance of your content on the frontend view. This article is focused on ar...
Drush Cheatsheet
Get version of Drupal and PHP you are running. drush status Update sync database The updatedb command is used to update the locate database on Unix-like systems. This database is used by the lo...
wordpress digitalocean migration guide
WordPress Migration to DigitalOcean App Platform with Docker Overview This guide walks through migrating a production WordPress site to DigitalOcean’s App Platform using Docker containers. App Pl...
Unobtrusive popup windows using session storage
Popup windows are effective for improving conversion rates but can be annoying if not done right. For instance we don’t want to fire the popup every time a user loads a specific url. That would su...
SMTP Cheatsheet
Website not sending mail? Maybe time to implement SMTP.
Essential WPCli Commands
How to install Use curl to download the WP-CLI phar file: curl -O https://raw.githubusercontent.com/wp-cli/builds/gh-pages/phar/wp-cli.phar Check if the file is executable: php wp-cli.phar --...
Imagemagick Cheatsheet
Change / convert Filetype You can use ImageMagick’s convert command-line tool to change the file type of an image. Here’s the basic syntax: Change filetype of Multiple Images Using a wildcard it...
DDev Cheatsheat
Start a new project cd into your project root directory. Then run the ddev config command and choose your project settings. ddev config Start an existing project ddev start update php versio...