Skip to content

Instantly share code, notes, and snippets.

@samrose
samrose / gist:7155335
Last active December 26, 2015 12:59
Drupal7/nutch1.6/solr3.2.26/tomcat6 setup ubuntu 12.04
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/
)
@samrose
samrose / gist:7533845
Last active December 28, 2015 17:09
Capistrano Workflow
git commit and push to bitbucket
cap deploy (staging)
site offline
drush ard
upload new code
symlink
update db
cache clear
@samrose
samrose / text find and replace
Last active March 10, 2019 15:15
perl find and replace oneliner
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:
@samrose
samrose / gist:7619512
Created November 23, 2013 20:27
openerp7 setup without nginx
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
@samrose
samrose / zend_apache_conf_example
Created February 5, 2014 15:18
Zend Apache Conf Example
<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
@samrose
samrose / gist:9771210
Created March 25, 2014 21:00
bootstrap 3 popover hover trigger html content
<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>
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)
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
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();
@samrose
samrose / createdb_cartaro
Created June 29, 2014 19:11
Create database cataro
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