Blog

Posted by Rahul Patel | 08 09 2017
Drupal – Install module using drush

In Drupal You can Installing module using command line with Composer, Drush, and Drupal cosnsole In this blog We can see how to install module from the command line using drush To Install modules using drush, Use below drush dl MODULE_NAME this command download drupal module, for enable this module use below command drush en...

Posted by Rahul Dhokia | 07 09 2017
Why WordPress should use for your business? Top 9 Reasons.

It is Free and Open Source It Is Easy to Use Gorgeous Admin panel for non technical clients It Is Easy To Customize Customizing through Admin panel Customizing through codes Plug and play There are many kinds of plugins and themes are available in market which you can use directly. We can implement any kind...

Posted by Rahul Dhokia | 06 09 2017
WordPress Blog Website v/s Blogger Blog

Blogger is the blogging platform provided by Google. There are lots of ongoing arguments about which is better. Our view is that they simply suite different needs. Blogger is free, it is connected with Google account and connected with all of Google’s social platforms like Google+ and more. The big thing is, you can monitor...

Posted by itreeni-admin | 05 09 2017
Laravel: Database Query Optimization.

Laravel comes up with Eloquent and enables developer to make complex queries with ease. This refrains developers from checking what actually happens behind the scene. But if we don't take time to check which queries are being executed, we will never understand how system works and identify steps to improve queries to run and load...

Posted by Rukmi Patel | 04 09 2017
Laravel: Boost performance on production

When we deploy laravel application on production, performace of an application becomes highest priority. Real users are going to use application and site may loose interest if it takes time to respond to users' requests. Laravel offers many optimization methods for cache optimization, query optimization, server tweaking etc. But in this blog, I will outline...

Posted by Rahul Patel | 01 09 2017
Drupal – Composer as Dependency Manager

In this blog, We will outline use of composer as a dependency manger for Drupal modules and themes. Below command is used for downloading modules at the root folder of your Drupal installation $ composer require drupal/<MODULE_NAME> You can use either the project name, or the specific module name within a project when requiring a...

Posted by Rahul Dhokia | 01 09 2017
WordPress community Events and News now on your dashboard

Now we can track each news and events of WordPress community from our WordPress dashboard. WordPress community is vast and growing quickly. Considering this growth, WordPress integrated a widget "WordPress Events and News widget" in the core to show WordPress community about nearby events. Just enter your country or city name, all nearby events will...

Posted by Rahul Dhokia | 30 08 2017
WordPress 4.8 – “Evans”

WordPress 4.8 was released just few months back. It was the first major WordPress release of 2017. In this article, we out-line useful features came in WordPress 4.8. Core Image Widget Till WordPress 4.7, if you want to show image in theme sidebar, either we have to write code or use a some external plugins. WordPress...

Posted by Rukmi Patel | 27 08 2017
Laravel 5.5 – New Features – Part 2

php artisan migrate:fresh We all are familiar with refresh command. This will allow us rollback and re-run all migrations. This helps when we need to re-build database in development. Coming to Laravel 5.5, migration fresh command introduced. This will skip all down method or rollback methods, will simply drop all tables, then run through up...