PHP Memory Limit
In PHP Script
- Specified ammount of memeory
ini_set('memory_limit','2048M');
- Unlimited memory
ini_set('memory_limit', '-1');
ini_set('memory_limit','2048M');
ini_set('memory_limit', '-1');
On macOS using Homebrew run the following to install the packages
brew install cowsay fortune lolcat
Next add the following to ~/.bash_profile
# If brew installed fortune, cowsay, and lolcat
# Upon opening a new shell show a cowsay character with a random forutune in rainbow colors
brew cask install ngrok
ngrok http -host-header=my.site.local 80
wp-config.php
<?php
// Add a value if using NGROK
#!/bin/bash | |
# must install JQ | |
# https://stedolan.github.io/jq/download/ | |
# on OSX brew install jq | |
# must set Github Personal Access Token with full repo access only | |
### Set named arguments -t | |
while getopts ":t:" opt; do |
#!/bin/bash | |
### | |
# Use -r to compare against a remote branch | |
### | |
## Example w/o this script | |
## git fetch --all | git rev-list --left-right --count origin/master...master | |
$USAGE="$0 [-r <remote branch>]" |
<?php | |
/** | |
* The header for our theme | |
* | |
* This is the template that displays all of the <head> section and everything up until <div id="content"> | |
* | |
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials | |
* | |
* @package WordPress | |
* @subpackage Twenty_Seventeen |
/**************** | |
***** FONT ****** | |
***************/ | |
body { | |
font-family: proxima-nova, Helvetica Neue, Helvetica, Arial, sans-serif !important; | |
font-size: 1rem !important; | |
font-weight: 300; | |
line-height: 1.5; | |
color: #83ACD8 !important; | |
} |
# ZSH may require the versions to be in quotes (see comments below) | |
# Check version | |
node -v || node --version | |
# List installed versions of node (via nvm) | |
nvm ls | |
# Install specific version of node | |
nvm install 6.9.2 |
Verbose Flag
composer update -vvv
composer update [package name] -vvv
Update Autoloaded class map
This is helpful if you've changed the file structure.
I beleive this also occurs when running composer update
fwrite(STDERR, print_r($thing_to_debug, true));