Articles
Our developers love sharing their knowledge usually acquired from issues they had to face and solve. We share this knowledge, hoping to help anyone who faces the same or similar issues.
by Jitesh Doshi || January 10th, 2014
read more
SMTP relay via Mandrill Service
If you have ever tried to send emails from your dedicated server in the cloud to either a mailing list or to individual users of your site, you would know that it is not as simple as it sounds. Depending upon the reputation of the IP address asigned to your...read more
by Jitesh Doshi || August 15th, 2013
read more
We are hiring!
We are in need of smart and motivated developers to come and join our team. We do not ask for any specific skill-set. That's because we train you! The only requirements are ... You are smart. That means strong analytical abilities. You know, the kind of person who can figure...read more
by Jitesh Doshi || August 15th, 2013
read more
Writing directly executable drush scripts
Often we write "drush" scripts to do Drupal task automation. For example, if you want to do delete domain_conf variables on your website, you might write a script like this ... <?php $variable_name = 'foo'; $domains = domain_domains(); foreach($domains as $domain_id => $domain) { print("Deleting $variable_name from ${domain['machine_name']} ($domain_id)"); domain_conf_variable_delete($domain_id...read more
by Sergey Cheban || June 7th, 2013
read more
Integrating Apache Solr with Drupal Autocomplete
Although Drupal has a good built-in search functionality that coumes out of the box, sometimes a client wants something more advanced and feature rich that scales well for a quickly growing website. This is where Apache Solr comes into play. Apache Solr is an open source project that is used...read more
by Jitesh Doshi || June 2nd, 2013
read more
RESTfully creating a repository in BitBucket.org
Creating a Git repository is simple, using the excellent BitBucket.org service. It can be a chore to go to the bitbucket website and manually creating new repositories every time, though. Since it is bitbucket, and Atlassian, they have exposed a very nice RESTful API on top their service offering. Below...read more
by Jitesh Doshi || May 12th, 2013
read more
Drupal jQuery behaviors
In this article, I try to explain "Drupal Behaviors". Drupal provides a very clean way of attaching JavaScript code to HTML components. It includes jQuery library with it. So you have to do nothing to add jQuery to your app. But on top of it, you also don't have to...read more