I had a requirement in one of my Drupal projects to post a picture on Facebook automatically. We have many modules in Drupal to be used for the same task but the most simplest way is to use PHP sdk. To auto post a picture on Facebook we need
This article is prepared with the experience of migration on zyxware.com and I have tried my best to generalize it to migrate any Drupal 6 website to Drupal 7. The issues mentioned in these articles, although common in sites that have been migrated, need not be present in yours. Please learn from these articles and keep these articles as a safe practice, not as a guide to migration. Migration is different for every website!
This step may seem irrelevant, but is absolutely necessary as the minor versions may have database changes which maybe reflected in major upgrade. (Minor upgrade example : 6.11 to 6.19 and major upgrade example : 6.19 to 7.34). If you are using git, make sure to checkout a new branch before updating code so that the code is backed up and take a dump of the local database you are working on.
This is probably the part that will crash your site, so proceed with extreme caution! Migration actually starts here. Unlike the previous steps you will not be able to use drush to overwrite your core to Drupal 7. This has to be done manually. You have to download the latest stable version of Drupal 7 and paste into the root folder of your website. Make sure to not overwrite .htaccess and robots.txt. When you overwrite, merge into the folders and replace the files. That being said, there are some prerequisites to this step.
Zyxware Technologies is signing a memorandum of understanding (MoU) with VHSS Irimpanam, Thrippunithura, Ernakulam, on Friday, 12 June 2015, at 2.00 p.m., to launch the computational thinking skill enhancement initiative. The company would be donating Raspberry Pi kits, purchased through the contributions of its employees, to the Irimpanam School as part of the programme.
Drupal 7 comes with two primary options for e-commerce websites: Commerce. Commerce is new for Drupal 7 and redefines the way Drupal handles the e-commerce. Selecting correct e-commerce module suite for your webshop is an essential starting point. Commerce is an exciting entry to the Drupal shopping cart category written by some of the same developers who previously managed Ubercart.
A comma-separated values (CSV) file stores tabular data (numbers and text) in plain-text form. A CSV file have of number of records, separated by line breaks; fields in each record separated by some other character or string, usually a comma or tab. All records have an identical sequence of fields.
A feature is a set of Drupal entities, taken together to satisfy a certain use-case. A Drupal Module 'features' is used to create custom features. Let us check how to create a custom feature.
Entity Field query in Drupal 7 is the querying technique used in the Drupal to cut short the huge queries. It is like an ORM(object relation mapping) technique like doctrine. Let us go through the entity Field querying methods.
Every new product or project in the workplace is created in response to a specific business requirement. However, sometimes, certain sticky situations may develop where, even after spending significant time, effort, and resources, there arises a discrepancy between what has been designed and what is precisely needed.
A landing page refers to an online marketing tactic that is aimed at getting people to “land” on a particular Web page to engage in a specific action. An effective landing page could contribute to the success of your marketing strategy.
For our Drupal site, a requirement were to use Facebook connect module and legal module. Once enabling both the modules and adding legal condition, Facebook connect module let us to login through Facebook on our Drupal site.
Altering a query is to change the results as desired by the user. hook__views_query_alter() in Drupal is for altering the query. Before start reading, you should have an idea about what is a view and how views created? See here.
Being a fresher to Drupal, your first step is to focus on the Coding Standards In Drupal 7. Drupal community is very serious about coding standards. Entire source code should follow the current standards, regardless of the (core) version.
Article will be explaining how to create a Pop up using the colorbox module for our Drupal website. There are certain circumstances were we need to popup blocks to display messages, images, videos etc.
My need was to display a text message on focus out from a particular field inside a content type. Steps are,
There is no Drupal website with out a block. As a Drupal developer there are certain cases we need to create custom blocks programatically. While working in a project I faced an issue with a custom Drupal block creation in Drupal 6 version. I think some of you also faced the same situation,Custom block creation in Drupal 6 is not a big issue. I think the below code will help to handle the situation.
I have a requirement to post a comment on a Facebook user's timeline from our Drupal website. In submitting a Drupal form, I have to post a comment on Facebook. We need to access Facebook api so we have to download Facebook SDK for PHP. Facebook SDk allows developers to access the Facebook api ie to post the comment on Facebook. Also create an app on Facebook, once you create an app it will generate a Facebook app id and Facebook secret code.
There are certain occasion where we need to customize the submit button as per the requirement, maybe for the visual impact of the site or as per the requirements from the client if you are developer. How to handle this situation ?. This is actually a simple task. Only thing we need to do get the new image for the submit button as suitable and matches for the page inside the Drupal website.