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
1. Followed instructions at http://www.5ringsweb.com/blog/how-set-apache-solr-multicore-drupal for solr multicore set up downloading desired solr instance from http://archive.apache.org/dist/lucene/solr/ | |
2. Downloaded nutch binary from http://archive.apache.org/dist/nutch/ untarred and placed in /var/<nutch files dir> | |
3. git clone git://drupalcode.org/project/apachesolr_examples.git and Followed http://drupalcode.org/project/apachesolr_examples.git/blob/HEAD:/apachesolr_multinutch/README.txt | |
( | |
export NUTCH_CONF_DIR=/var/www/search/sites/default/files/apachesolr_multinutch/1 | |
export JAVA_HOME /usr/lib/jvm/java-6-openjdk/jre | |
sudo chmod -R 777 /var/www/search/sites/default/files/ | |
) |
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
git commit and push to bitbucket | |
cap deploy (staging) | |
site offline | |
drush ard | |
upload new code | |
symlink | |
update db | |
cache clear |
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
Replace all occurrences of “oldstring” with “newstring” in all files (no recursion): | |
perl -pi -e 's/oldstring/newstring/g' * | |
Replace all occurrences of “oldstring” with “newstring” in all HTML files recursively: | |
perl -pi -e 's/oldstring/newstring/g' `find ./ -name *.html` | |
Replace all occurrences of “oldstring” with “newstring” in all files recursively: |
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
follow http://www.theopensourcerer.com/2012/12/how-to-install-openerp-7-0-on-ubuntu-12-04-lts/comment-page-4/ | |
set db http://stackoverflow.com/a/16737776/996156 for db config to set as unicode |
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
<VirtualHost *:80> | |
SetEnv APPLICATION_ENV "development" | |
ServerName localhost | |
DocumentRoot /var/www/oss/public | |
<Directory “/var/www/oss/public"> | |
DirectoryIndex index.php | |
Options Indexes FollowSymLinks | |
AllowOverride All | |
Order allow,deny | |
Allow from all |
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
<a type="button" href="http://google.com" class="btn btn-default" data-container="body" data-trigger="hover" data-html="true" data-content="<h2>TEST</h2><img src='https://drupal.org/files/styles/grid-3/public/project-images/bootstrap_project_1.png' />" data-toggle="popover" data-placement="bottom" data-content="Vivamus sagittis lacus vel augue laoreet rutrum faucibus."> | |
Popover Bottom | |
</a> |
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
docker images | grep "<none>" | awk '{print $3}' | xargs docker rmi | |
docker ps -a | grep 'weeks ago' | awk '{print $1}' | xargs docker rm | |
docker stop $(docker ps -a -q) | |
docker rm $(docker ps -a -q) |
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
srose@vagrant:/var/www/vagrant.local$ drush --verbose=2 updatedb | |
Initialized Drupal 7.27 root directory at /var/www/vagrant.local [notice] | |
Initialized Drupal site default at sites/default [notice] | |
Undefined index: SERVER_NAME subdomain_field.module:232 [notice] | |
Undefined index: SERVER_NAME subdomain_field.module:232 [notice] | |
Undefined index: SERVER_NAME subd |
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
function hook_price_calc($wizard_data_array) { | |
$pricing_array = array(); | |
$group_query = new EntityFieldQuery(); | |
$group_query->entityCondition('entity_type', 'node') | |
->entityCondition('bundle', 'group') | |
->propertyCondition('status', 1) | |
->fieldCondition('field_code','value',$wizard_data_array['subdomain'])//TODO ref this field correctly | |
$group_result = $group_query->execute(); | |
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
follow http://perlgeek.de/en/article/set-up-a-clean-utf8-environment | |
createdb -E UTF8 -T template0 --locale=en_US.UTF-8 --owner=cartaro cartaro |