Skip to content

Instantly share code, notes, and snippets.

View iaminawe's full-sized avatar

Gregg Coppen iaminawe

View GitHub Profile
<?php
/**
* d6to7_cck_textfield_length_checker.php, a script to find Drupal 6
* CCK text fields that are longer than 255 characters.
*
* Written by Mark Jordan, [email protected] and released into the
* public domain.
*
* Upgrading to Drupal 7 from Drupal 6 instances that use CCK can
@omega8cc
omega8cc / gist:5724528
Last active March 14, 2024 13:28
Steps to implement (pseudo) Single Sign-On (SSO) for any set of sub-sites on BOA
Steps to implement (pseudo) Single Sign-On (SSO) for any set of sub-sites on BOA:
1. Add domains and even wildcard *.sub.domains as aliases to your site in Aegir
2. Install and configure Domain Access -- https://drupal.org/project/domain
3. Set 'server_name_cookie_domain = TRUE' in the modules/boa_site_control.ini file
Done!
How it works?
@saltednut
saltednut / dice.sh
Last active March 26, 2016 04:09
quick build script for Drupal distributions that ship with a build makefile
#!/usr/bin/env bash
# Usage: dice makefile docroot dbuser dbpass dbname sitename install-profile
drupal_install_clean_env() {
if [[ -r $2 ]]; then
sudo rm -r $2
cd ~/
fi
if [[ -r $1 ]]; then
drush make --working-copy --concurrency=5 $1 $2
@abelb
abelb / pager.scss
Created August 8, 2012 22:43
drupal pager scss mixin
@mixin pager($radius: 2px, $background_1: #F8F8F8, $background_2: #ECECEC, $border: #c6c6c6, $font-color: #999) {
// Pager list-style
li {
margin-right: 5px;
padding: 0;
&.last {
margin-right: 0;
}