Skip to content

Instantly share code, notes, and snippets.

View sheanhoxie's full-sized avatar

Shean Hoxie sheanhoxie

View GitHub Profile
<?php
include('/Users/sheanhoxie/Sites/lib/smarty_configs/config.php');
$smarty->display('templates/index.tpl');
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
#NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini
include fastcgi.conf;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
fastcgi_intercept_errors on;
fastcgi_read_timeout 3000;
}
# GLOBAL VARIABLES
siteTitle = "Barre Above | OFFICIAL SITE"
siteDescription = "The foundations necessary to start your own Barre classes."
siteKeywords = "barre, barre biz, barre above, leslee bender, tricia murphy madden"
phone = "1-800-464-7309"
csPhone = "1-800-464-7309"
sealID = "4S3sas2m61Af99zhTgF3qUUt3E037yBc867tbtPRoturhv1hFWemQysajozK"
scanAlert = ""
buySafe = "false"
agreement = "true"
@sheanhoxie
sheanhoxie / settings.local.php
Created June 1, 2017 20:12
Drupal 8 settings.local.php file
<?php
/**
* @file
* An example settings.local.php file for Drupal.
*/
$settings['hash_salt'] = 'thisIsAreallyStupidHash#!!';
$settings['container_yamls'][] = DRUPAL_ROOT . '/sites/development.services.yml';
We couldn’t find that file to show.
creating cache /Users/sheanhoxie/.phpbrew/cache/config.cache
./configure: line 1867: /Users/sheanhoxie/.phpbrew/cache/config.cache: No such file or directory
checking for Cygwin environment... no
checking for mingw32 environment... no
checking for egrep... grep -E
checking for a sed that does not truncate output... /usr/bin/sed
checking host system type... i386-apple-darwin15.6.0
checking target system type... i386-apple-darwin15.6.0
checking for gcc... gcc
checking whether the C compiler (gcc ) works... yes
phpbrew -d ext install gd -- --with-gd=shared --enable-gd-native-ttf --with-jpeg-dir=/usr/local/Cellar --with-png-dir=/usr/local/Cellar
1. Try resetting the bluetooth module
- shft + opt + click bluetooth icon
- choose debug, turn off bluetooth module
- turn bluetooth module back on
2. Unplug USB's and turn off - THIS IS THE ONE THAT WORKS 11/26
- unplug all USB's
- shut down laptop
- wait 2 mins
- turn the computer back on
# Verified working in Drupal 8.6.1 - 8.6.10
# To resolve the 'default domain not found' issue,
# create drushrc.local.php in sites/default
<?php
$options['uri'] = 'http://domain:8080';
@sheanhoxie
sheanhoxie / phpunit.local.xml
Created November 26, 2018 23:30
Drupal 8 phpunit.local.xml
<?xml version="1.0" encoding="UTF-8"?>
<!-- TODO set checkForUnintentionallyCoveredCode="true" once https://www.drupal.org/node/2626832 is resolved. -->
<!-- PHPUnit expects functional tests to be run with either a privileged user
or your current system user. See core/tests/README.md and
https://www.drupal.org/node/2116263 for details.
-->
<phpunit bootstrap="web/core/tests/bootstrap.php" colors="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"