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
load is 51 while maxload is 600 | |
Octopus upgrade for User /data/disk/o1 | |
Waiting 5 seconds... | |
BOA [07:52:18] ==> Skynet Agent v.BOA-4.0.1 welcomes you aboard! | |
BOA [07:52:22] ==> Octopus Satellite Instance Upgrade in progress... | |
BOA [07:52:23] ==> This Octopus URL address is o1.boa.discimport.dk | |
BOA [07:52:23] ==> This Octopus PHP version is 5.6 |
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
### | |
### Configuration created on 140125-1811 | |
### with Barracuda version BOA-2.1.3 | |
### | |
### NOTE: the group of settings displayed bellow will *not* be overridden | |
### on upgrade by the Barracuda script nor by this configuration file. | |
### They can be defined only on initial Barracuda install. | |
### | |
_MY_OWNIP="1.1.1.1" | |
_MY_HOSTN="boa.mydomain.dk" |
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
load is 114 while maxload is 600 | |
Octopus upgrade for User /data/disk/o1 | |
Waiting 3 seconds... | |
BOA [18:33:20] ==> Skynet Agent v.BOA-4.0.1 welcomes you aboard! | |
BOA [18:33:25] ==> Octopus Satellite Instance Upgrade in progress... | |
BOA [18:33:25] ==> This Octopus URL address is o1.boa.discimport.dk | |
BOA [18:33:25] ==> This Octopus PHP version is 5.5 |
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
Aegir on Debian/jessie x86_64 | |
VPS Linux KVM guest | |
CPU 2 | |
RAM 2010 | |
XTR _XTRAS_LIST="PDS CSF CHV FTP" | |
MFX _MODULES_FIX=NO | |
PFX _PERMISSIONS_FIX=YES | |
DBS _DB_SERIES=10.1 | |
DNS _DNS_SETUP_TEST=YES | |
PKG _EXTRA_PACKAGES= |
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 | |
// Bootstrap Drupal. | |
$drupal_path = $_SERVER['DOCUMENT_ROOT']; | |
define('DRUPAL_ROOT', $drupal_path); | |
require_once DRUPAL_ROOT . '/includes/bootstrap.inc'; | |
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); | |
// Gettting to work |
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 | |
// Bootstrap Drupal. | |
$drupal_path = $_SERVER['DOCUMENT_ROOT']; | |
define('DRUPAL_ROOT', $drupal_path); | |
require_once DRUPAL_ROOT . '/includes/bootstrap.inc'; | |
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL); | |
// Gettting to work |
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
% LilyBin | |
\score { | |
{ | |
<< | |
\chords { | |
} | |
\relative c'' { | |
\key g \minor | |
\time 4/4 | |
g2 es8( c4) es8 |
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
<{assign var="profile" value=$product->getProfile()}> | |
<{assign var="attr" value=$profile->getAttributeList()}> | |
<{assign var="attributes" value=""}> | |
<{assign var="variant" value=""}> | |
<{section name="j" loop=$attr}> | |
<{if $attr[j]->getIsVariant() && $attr[j]->getDataType() == "valuelist"}> | |
<{assign var="values" value=$attr[j]->getValues()}> | |
<{section name="k" loop=$values}> |
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 | |
/** | |
* Run using drush scr export.php | |
*/ | |
// Require client for Shoporama | |
require_once __DIR__ . '/../shoporama-php-sdk/vendor/autoload.php'; | |
use Shoporama\Client; |
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 | |
/** | |
* @file | |
* Provides the view object type and associated methods. | |
*/ | |
/** | |
* @defgroup views_objects Objects that represent a View or part of a view | |
* @{ |