Theme Options
COLORS SKINS PAGE COLOR BACKGROUND BODY

Error message

  • Deprecated function: Array and string offset access syntax with curly braces is deprecated in include_once() (line 20 of /home/royalcreations/public_html/shivamroy.com/includes/file.phar.inc).
  • Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters in drupal_get_feeds() (line 394 of /home/royalcreations/public_html/shivamroy.com/includes/common.inc).

Drupal

Should We Re-use Existing Fields in Drupal?

Drupal gives you the ability to re-use fields. If you have an "Image" field, you could choose to use that same field on every content type on your site. However, it's not always clear whether re-using fields is a good idea. Sometimes it is, sometimes it isn't.

It is recommended to create new fields, rather than reusing existing ones, unless you have a clear reason to do so.

Advantage: re-using fields can make your simpler and some content works well with re-used fields

Read More

Setting up Drupal 8 Multisite on LAMP

Overview of the process:

  1. Install a Drupal 8 instance that will act as the root site for our multisite instance. In our example, the root site will be called d8multisite, will be reachable at d8multisite.com, and will be installed at /var/www/d8multisite
  2. Set up a site within the multisite called site1 which is reachable at site1.d8multisite.com
  3. Configure site1 to have its own modules outside of the root site.

Step 1: Instantiate the master site

In this example, we install Drupal with the following steps:

Read More

How Drupal 7 Works

When a request for a page is sent by a browser , this request is received by the server hosting a drupal site. Suppose a request is sent for the page http://drupal.org/user/1 this request is received by drupal installation directory as URL user/1.
We have an .htaccess file inside drupal installation directory which is read on every request.

Read More

Netbeans IDE drupal configuration

You can easily intergrate drupal coding standards, files extention using following file. Netbeans Config.zip
On netbeans,
Goto : Tools->Options

Read More