http://wiki.cyanogenmod.org/w/I9100_Info
http://www.android.gs/install-cyanogenmod-9-on-galaxy-s-gt-i9000/
<?php | |
/** | |
* @file custom.module | |
* Drupal site build. | |
*/ | |
/** | |
* Implements hook_wysiwyg_editor_settings_alter(). | |
*/ |
your-organzation/repo-name, preparing the git side of things.
// delete current remote origin (git@).
git remote rm origin
// Add fork as origin user/organzations/repo-name (with push perms).
git remote add origin [email protected]:user/repo-name.git
// Add source repo as upstream (https).
git remote add upstream https://github.com/organzations/repo-name.git
// Check out branch and create a local version
[distro name] = replace with project name, e.g. openatrium would give you http://git.drupal.org/project/openatrium.git
[platform name] = replace with desired platform name based on [distro name] should not have any empty spaces
[Omega8 UID] = replace with user ID provided by Omega8.css (you will find this in the first part of your Ægir url o123456789.vXX.location.hostX.biz)
ssh [Omega8 UID].ftp@[Omega8 UID].hostname
cd ~
mkdir tmp
if doesn't already existcd tmp
First clone the Vagrant Box repo
git clone [email protected]:kae76/drupaldev-nginx.git
Follow the following steps, inspired from the repo's ReadMe file
but only running vagrant up
right at the end!
cd drupaldev-nginx
Error message | |
Warning: include_once(): Unable to allocate memory for pool. in drupal_load() (line 1100 of /var/www/tcs-openatrium.drupal.dev/www/includes/bootstrap.inc). | |
Warning: include_once(): Unable to allocate memory for pool. in include_once() (line 8 of /var/www/tcs-openatrium.drupal.dev/www/profiles/openatrium/modules/contrib/oa_core/modules/oa_widgets/oa_widgets.module). | |
Warning: include_once(): Unable to allocate memory for pool. in drupal_load() (line 1100 of /var/www/tcs-openatrium.drupal.dev/www/includes/bootstrap.inc). | |
Warning: include_once(): Unable to allocate memory for pool. in drupal_load() (line 1100 of /var/www/tcs-openatrium.drupal.dev/www/includes/bootstrap.inc). | |
Warning: include_once(): Unable to allocate memory for pool. in drupal_load() (line 1100 of /var/www/tcs-openatrium.drupal.dev/www/includes/bootstrap.inc). | |
Warning: include_once(): Unable to allocate memory for pool. in drupal_load() (line 1100 of /var/www/tcs-openatrium.drupal.dev/www/includes/bootstrap.inc). | |
Warning: include_o |
http://www.meetup.com/London-Drupal-Pub-Meet
// drinks & social, Square Pig.
// Last Monday of the Month
http://www.meetup.com/Learning-Drupal-Meetup
// presentations & work shops
http://www.meetup.com/a-bit-of-everything-drupal
// presentations & work shops & other things (drinks too)
http://www.drupal.org.uk/events/drupal-london
// sprints, usually over 2 days last weekend of the month - (bagels & pizzahhhh)
// Organiser: Robert Castelo
<?php | |
/** | |
* Implements hook_form_alter(). | |
*/ | |
function sandbox_custom_form_alter(&$form, &$form_state, $form_id) { | |
kpr($form); | |
if ($form['#id'] == 'views-exposed-form-news-page') { | |
// $my_label = 'label name'; | |
$my_label = $form['#info']['filter-type']['label']; |