Technical Solution
| 3
min read
One of our project requirement was to transfer files from our server to an external storage space. This could be basically done by connecting to the server using SSH or FTP and then transferring files. We initially decided to use the libssh2-php library for creating SSH tunneling with the server and transfer file. Our server was hosted in Acquia server and libssh2-php was not available in Acquia stack. Read on to know how we tackled the problem of file transfer to an external storage space in Acquia environment.
Technical Solution
| 1
min read
There are two sections of steps to establish connection using FileZilla to Amazon EC2 instance. To connect to Amazon EC@ instance, import the key file to Filezilla.
Technical Solution
| 2
min read
We had a requirement in one of our projects to pull the order status from SAP Business One to the orders of our Ecommerce site. Our site was integrated to SAP Business One using Zedsuite. Zedsuite allows custom queries created in SAP Business One to be accessed through an external interface. The query results can be fetched by calling the external URL provided by Zedsuite in our site and the customizations can be made as per our requirement in Drupal. Here in this case we are going to update the order status in E-Commerce site based on the status updates in SAP Business One. Read on to know more.
Drupal Technical
| 2
min read
Sometimes, we may come across a situation where we need to exclude a particular page from being indexed. We had a similar requirement in one of our projects where we had to exclude home page from being indexed by apache solr search. Read on to know how we executed it using hooks provide by apachesolr.
Technical Solution
| 2
min read
Drush alias are much handy when it comes to running commands in your local and executing them in server. Setting up alias needs little configuration. Read on to know the configurations.
Drupal Technical
| 1
min read
We had a requirement in one of our E-commerce site built using Ubercart module to add a custom key while saving an ubercart order, the key had to be used later on based on which the status of order is changed. Read on to know more.
Drupal Technical
| 1
min read
You can revert features in deployment phase by just adding an update hook and calling features_revert() in install file. Read on to know the code changes to add.
Drupal Technical
| 1
min read
Many a times while developing sites we would need to post data to an external server, for example if you have an ecommerce site and wants to manage CRM in a different server at such time you would need to pass the order details to different server. We can POST the data using CURL or drupal_http_request().
Drupal Technical
| 2
min read
SugarCRM is a model for managing a company’s interactions with customers. Sugar on Drupal module can be used for integrating SugarCRM with Drupal. SugarCRM stores the customer information in modular format. Before passing customer details to SugarCRM, if you want to check whether the entry already exists in sugarCRM then read on .
Drupal Technical
| 2
min read
Blocks are the boxes visible on screen.Sometimes it becomes necessary to create custom blocks on site for showing contents.This can be easily implemented by using hooks in drupal.