This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>org.postfix.master</string> | |
<key>Program</key> | |
<string>/usr/libexec/postfix/master</string> | |
<key>ProgramArguments</key> | |
<array> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## Update Homebrew Formula(s) | |
$ brew update | |
$ brew tap homebrew/dupes | |
$ brew tap homebrew/versions | |
$ brew tap homebrew/php | |
## Install Drush | |
$ brew install drush |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install SassC Interpreter | |
$ cd /usr/local/src | |
$ curl -kL https://github.com/hcatlin/libsass/archive/master.zip > libsass.zip | |
$ unzip libsass.zip | |
# Install LibSass Library | |
$ cd /usr/local/src | |
$ curl -kL https://github.com/sass/sassc/archive/master.zip > sassc.zip | |
$ unzip sassc.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ sudo /usr/local/mysql/support-files/mysql.server stop | |
$ sudo /usr/local/mysql/bin/mysqld_safe --skip-grant-tables --skip-networking & | |
mysql> UPDATE mysql.user SET Password=PASSWORD('') WHERE User='root'; | |
mysql> FLUSH PRIVILEGES; | |
mysql> exit | |
$ mysql -h localhost -u root | |
mysql> set password=password(''); | |
mysql> exit |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Install PEAR (PHP Extension and Application Repository) | |
$ sudo php /usr/lib/php/install-pear-nozlib.phar | |
$ sudo pear upgrade-all | |
$ sudo pear install --alldeps PHP_CodeSniffer | |
# Add PEAR to `php.ini` Include Path | |
$ nano /etc/php.ini | |
;include_path = ".:/php/includes" | |
include_path = ".:/php/includes:/usr/lib/php/pear" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
UPDATE | |
wp_options | |
SET | |
option_value = '[email protected]' | |
WHERE | |
option_name = 'admin_email'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="fb-like-box" | |
data-href="https://www.facebook.com/FacebookDevelopers" | |
data-colorscheme="light" | |
data-show-faces="true" | |
data-header="true" | |
data-stream="false" | |
data-show-border="true" | |
data-height="212"> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Use X-Forwarded-For HTTP Header to Get Visitor's Real IP Address | |
if ( isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) { | |
$http_x_headers = explode( ',', $_SERVER['HTTP_X_FORWARDED_FOR'] ); | |
$_SERVER['REMOTE_ADDR'] = $http_x_headers[0]; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Disable Plugins in Local Environment | |
* Plugin URI: | |
* Description: Blacklist of Plugins to Disable When Working Locally | |
* Version: 0.1 | |
* Author: Ryan J. Bonnell | |
* Author URI: https://gist.github.com/ryanjbonnell/ | |
* License: WTFPL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Define Environment Variables | |
$environment = new stdClass(); | |
$environment->local = '/wp-config-local.php'; | |
$environment->staging = '/wp-config-staging.php'; | |
$environment->testing = '/wp-config-testing.php'; | |
// Dynamically Set Environment Constants | |
define( 'WP_ENV_LOCAL', file_exists( ABSPATH . $environment->local ) ); | |
define( 'WP_ENV_STAGING', file_exists( ABSPATH . $environment->staging ) ); |
NewerOlder