Upgrading to core media
Import media styles
Update fails if core media styles don't exist.
drush config-import --partial --source=/data/app/core/modules/image/config/install/ -y
Update fails if core media styles don't exist.
drush config-import --partial --source=/data/app/core/modules/image/config/install/ -y
kubectl describe nodes | grep -A 4 "Allocated resources" |
# Prune merged git branches from local and remote | |
# example usage: gprune 8.x-1.x | |
gprune() { | |
DEFAULT_BRANCH=master | |
PROTECTED_BRANCH_PATTERN='|master|releases|7.x.*|8.x.*' | |
# Allow the base branch to be passed in as 1st param. | |
base_branch=${1-$DEFAULT_BRANCH} |
npm install npm@2.10.0 | |
nodejs node_modules/npm/bin/npm-cli install --loglevel silent |
ps -ylC apache2 --sort:rss | awk '{sum+=$8; ++n} END {print "Tot="sum"("n")";print "Avg="sum"/"n"="sum/n/1024"MB"}' |
<?php | |
/** | |
* @file | |
* Contains Drupal\ses_mailer\SesMailer | |
*/ | |
namespace Drupal\ses_mailer; | |
use Aws\Exception\AwsException; |
[Mon Aug 17 11:49:20.999097 2015] [core:notice] [pid 10861:tid 140709681420160] AH00094: Command line: '/usr/sbin/apache2' | |
App 10958 stdout: | |
App 10958 stderr: Please configure your config/database.yml first | |
App 10958 stdout: | |
[ 2015-08-17 11:50:19.4379 10868/7efd15847700 App/Implementation.cpp:303 ]: Could not spawn process for application /data/app: An error occured while starting up the preloader. | |
Error ID: 4e4c48d9 | |
Error details saved to: /tmp/passenger-error-afBjb7.html | |
Message from application: <p>It looks like Bundler could not find a gem. Maybe you didn't install all the gems that this application needs. To install your gems, please run:</p> | |
<pre class="commands">bundle install</pre> |
I hereby claim:
To claim this, I am signing this object:
<?php | |
/** | |
* Implements hook_block_view(). | |
*/ | |
function guzzle_example_block_view($delta = '') { | |
$block = array(); | |
$example = GuzzleExample::create(); | |
switch ($delta) { | |
case 'host_ip': |
<?php | |
/** | |
* Finds the host IP address by calling the httpbin web service. | |
* | |
* @return string | |
* The current hosts IP address. | |
*/ | |
function guzzle_example_get_host_ip() { | |
$client = new \GuzzleHttp\Client(); |