Read Here
Showing posts with label interview. Show all posts
Showing posts with label interview. Show all posts
Thursday, July 3, 2014
Monday, June 30, 2014
Sunday, June 29, 2014
107. What is a sub theme in Drupal ?
Sub-themes are just like any other theme, with one difference: They
inherit the parent theme's resources. There are no limits on the chaining
capabilities connecting sub-themes to their parents. A sub-theme can be a child
of another sub-theme, and it can be branched and organized however you see fit.
This is what gives sub-themes great potential.
Wednesday, June 25, 2014
Tuesday, June 24, 2014
104. What is entity api module ?
The entity api module extends the entity API of Drupal core in order to
provide a unified way to deal with entities and their properties. Additionally,
it provides an entity CRUD controller, which helps simplifying the creation of
new entity types.
Read More here https://www.drupal.org/project/entity
Monday, June 23, 2014
103. What are the system requirements for drupal 7 and drupal 8 ?
Drupal 7
- Database: MySQL 5.0.15 or
PostgreSQL 8.3
- PHP Version 5.2 or higher
- PHP Memory: 40M - 64M
Drupal 8
Friday, April 25, 2014
Drupal Job Interview Questions and Answers ( a set of 50 questions, q52-q101)
- 101. What hardware does Drupal.org run on?
- 100. Drupal and Working with JavaScript
- 99. Why does Drupal need a database? What database...
- 98. How to create a static archive of a Drupal web...
- 97. Programming best practices and CMS(drupal) bes...
- 96. what are Drupal Distributions and Drupal inst...
- 95. Drupal coding standards
- 94. Drupal 8 classes and interfaces
- 93. Explain drupal advanced search
- 92. Drupal 8 , Changelog.txt - What's new in Drupa...
- 91. Drupal Negatives and explanation on Usability,...
- 90. Explain Drupal Architecture
- 89. Drupal Version release dates
- 88. Drupal at a glance
- 87. Why you shouldn't modify core drupal files ?
- 86. Explain hardcoding in drupal ?
- 85. Explain Theming in Drupal 8 ?
- 84. Steps for launching a drupal site ?
- 83. Explain drupal administration
- 82. How to configure .htaccess to ignore specific ...
- 81. What are the steps for migrating drupal websit...
- 80. How to install and configure drupal 8 ?
- 79. How to Install Drupal ?
- 78. What are alpha, beta releases and release cand...
- 77. What do version numbers in drupal mean?
- 76. Explain Backward Compatibility in Drupal ?
- 75. Explain Security features of Drupal ?
- 74. What are Entity types in drupal ?
- 73. What is Bootstrap in drupal ?
- 72. What is drupal weight ?
- 71. What is triage ?
- 70. What is drupal trigger ?
- 69. What is theme and theme engine in drupal ?
- 68. What is teaser in drupal ?
- 67. What is render array in drupal ?
- 66. What is drupal region ?
- 65. What is permission in drupal ?
- 64. What is Git in drupal ?
- 63. What is DrupalCon and Druplicon ?
- 62. What is cron in drupal ?
- 61. What is critical path ?
- 60. What is clean URL in Drupal ?
- 59. What is Drupal child ?
- 58. What is drupal cache ?
- 57. What are breadcrumbs ?
- 56. What is an argument in drupal ?
- 55. What is a Base Theme in Drupal ?
- 54. What is drupal panels ?
- 53. What is drupal 8 ?
- 52. How do you convert PSD to drupal theme ?
101. What hardware does Drupal.org run on?
People
often wonder what kind of hardware drupal.org runs on. Throughout the project
history this has been a tough question. For a while it was a server in a random
office building. That server eventually died and required a fund-raising effort
to replace (the funds were raised in 24 hours!).
The critical infrastructure is all configured to share the load
and be redundant. For example, db1 and db2 are configured to be master-slave
most of the time to provide for better performance and allow the slave to be
promoted to master if the master fails.
Read More here https://drupal.org/node/1280436
100. Drupal and Working with JavaScript
Drupal provides methods for
implementing JavaScript. Using these methods will help to keep your code clean
and to ensure compatibility with the way other modules implement JavaScript.
A couple of simple principles guide
Drupal's JavaScript approach:
· All pages should be perfectly
functional without scripts. JavaScript provides alternatives or supplements -
not replacements - for standard elements.
·
No JavaScript is hard-coded into
pages. Rather, actions are attached dynamically to page elements--and only if
the needed JavaScript support is present.
Read more here https://drupal.org/node/121997
99. Why does Drupal need a database? What databases are supported?
Drupal stores its
information - the individual pages, the registered users, and so on - in the
database. The database forms the
back-end
for your Drupal site. At this time, Drupal supports MySQL (or
an equivalent such as MariaDB), PostgreSQL, and in Drupal 7, SQLite.97. Programming best practices and CMS(drupal) best practices
Programming
best practices
Best
practices (drupal)
Wednesday, April 23, 2014
88. Drupal at a glance
Initial release
|
January 2001
|
7.27 / 16 April 2014
|
|
Development status
|
Active
|
Written in
|
|
11.4 MB (uncompressed
core)
|
|
Available in
|
Multilingual
|
Website
|
Saturday, April 19, 2014
74. What are Entity types in drupal ?
An entity type is a useful abstraction to group
together fields. Entity types are used to store and display data, which can be
nodes (content), comments, taxonomy terms, user profiles, or something custom
developed.
Read
more about Entities in the Entity API documentation.
71. What is triage ?
A new bug or
issue is assigned a priority based on its severity, frequency, risk and other
predetermined factors, borrowed from medical term triage.
68. What is teaser in drupal ?
A short introductory sentence or paragraph about a
piece of content that informs readers about the subject of the content. By
default, the first paragraph or two of the content is used (there is a setting
for how much), usually with a link to the complete node.
Wednesday, April 16, 2014
67. What is render array in drupal ?
Render arrays are
the basic building blocks of Drupal content. In Drupal 7, render arrays provide
a structured way to programmatically alter content before it is displayed.
Further details can be read on the Render
Arrays documentation page.
Thursday, February 18, 2010
34. How to enable clean urls in drupal ?
The standard Drupal installation contains a sample .htaccess file which supports clean URLs. It is easy to miss copying this file, because of the leading "dot". So before trying to enable Clean URLs, make sure this file exists in your Drupal installation.
Drupal 6.x
In Drupal 6, the installer tests for compatibility with Clean URLs as a part of the installation process.
Drupal 5.x
Goto the administer >> site configuration >> clean urls section of the administrative interface.
Clean urls can be enabled by following the above two options in respective versions of drupal website.
Drupal 6.x
In Drupal 6, the installer tests for compatibility with Clean URLs as a part of the installation process.
Drupal 5.x
Goto the administer >> site configuration >> clean urls section of the administrative interface.
Clean urls can be enabled by following the above two options in respective versions of drupal website.
Monday, February 15, 2010
28. List the features of Drupal
1. Rock solid & high quality platform
2. Powerful templating system. Any XHTML or CSS template can be easily converted to Drupal
3. Real multi-site-feature (only one installation for several sites)
4. Any Kind of user groups & user permissions, OpenId compliant in Version 6
5. Can run membership and community sites, not only CMS etc
6. Clear, high quality code and API (easy to integrate with other solutions etc)
2. Powerful templating system. Any XHTML or CSS template can be easily converted to Drupal
3. Real multi-site-feature (only one installation for several sites)
4. Any Kind of user groups & user permissions, OpenId compliant in Version 6
5. Can run membership and community sites, not only CMS etc
6. Clear, high quality code and API (easy to integrate with other solutions etc)
Sunday, February 14, 2010
26. What is a patch?
A patch is a file that consists of a list of differences between one set of files and another. All code changes, additions, or deletions to Drupal core and contributed modules/themes between developers are done through patches.
The differences are presented in a structured, standard way, which means that a program (also named patch) can be used to apply the changes to another copy of the original file.
The differences are presented in a structured, standard way, which means that a program (also named patch) can be used to apply the changes to another copy of the original file.
Subscribe to:
Posts (Atom)