Search results

  1. K

    Steps to set default storage engine for database

    Storage engines are software components which help DBMS to create, read, update and delete. We can also change storage engine for database. By default mysql 5.5 and later storage engine is InnoDB. We can change the default storage engines in my.cnf file. In this file we have to update...
  2. K

    Guide to know the installation of PostgreSQL in the server of Windows

    What is PostgreSQL? PostgreSQL is a well-known ORM system that is available for all users. So, you can mention it as an open-source platform right! It proves with all the characteristics like architecture in robust appearance, development continued more than 15 years of proven decisions. It has...
  3. K

    Use Theme Regions for Creating Landing Pages in Drupal

    Landing pages serve an important role in marketing a website. For creating such pages, you can use certain regions of a theme along with Menus, Views, and Blocks. The custom blocks you create will be used in the landing pages. You can use core Page nodes or create Block with dynamic content. In...
  4. K

    How to change Default character set in MySQL with command line?

    If you want to change default character set in Mysql then first you have to open my.cnf file with below command: vi /etc/my.cnf in this file you have to add below line: default-character-set=utf8 Under [mysqld] add below lines too: default-character-set=utf8 init_connect=’SET NAMES utf8′...
  5. K

    Steps to disable mysql strict mode

    In mysql database 5.7 version strict mode is enabled but if you are getting issue or your application requirement is to disable strict mode then you can check this article. Mysql mainly helps to handle missing or invalid values in data change statements (INSERT or UPDATE). If mysql strict mode...
  6. K

    How to fix Plesk rules in setting up database custom access ?

    Is it possible for you to access the Plesk database from remote mode? Yes! You can permit the Plesk database to access it from remote mode. Adding the IP address of the computer can restrict it specifically for doing Plesk database remote access. If necessary you can do remote access disablement...
  7. K

    How to do Plesk Silverlight Configuration?

    You might be looking for the best internet application which is specifically suited for writings! We recommend you to use the solid specification called Silverlight which is available for free to all the users owned by the framework. NET. Yes! You can use the internet application in your browser...
  8. K

    Creating a Social Network Site with Drupal 8

    Social networking websites are all very popular. From Facebook to Twitter to Instagram, people seemed to be hooked onto these platforms. Many people think of Drupal as a system that can only create websites and ecommerce stores. But few realize that Drupal 8 can also be used to build a...
  9. K

    Drupal 8 user role management

    In this article, you will let you know more about Drupal 8 user roles and permission. Roles and permission activity differs right! For employees & authors, you can set user roles whereas to make changes in content-type like delete, view, save and edit etc you can allot permissions. Even if it...
  10. K

    Create Landing Page With Display Suite for Your Drupal 8 Website

    Landing pages are a core part of any online marketing campaign. They provide required information to potential customers and allows them to opt in to avail the offers. If you’ve built a website on Drupal 8, you might be wondering how to create landing pages. Whilt it isn’t rocket science, it...
  11. K

    What is the way to enable Anti-Spam Comments in Drupal 8?

    Do you hear anything about Anti-Spam protection? It is nothing but ReCaptcha! In this article, we are going to learn about enabling Anti-Spam comments. Admins from Drupal 8 have the advantage of looking carefully at anti-scriptBot HoneyPot protection. Few web users would love to use Disqus...
  12. K

    WAMP Local Server – How can you install Drupal 8?

    What is your ideology to improve the web host stage and its development? Installation of WAMP Local server in your Drupal 8 – Yes of course! In what situation do you need help with local servers like WAMP? Local servers have a direct connection with repositories like remote to make any changes...
  13. K

    mysql error “out of resources”

    You are getting this error while opening a file which means mysql file open permission has been exceeded. Open files limit can be managed by open_files_limit variable, we can run below query in phpmyadmin: SHOW VARIABLES LIKE 'open%' You will check the limit of open_files_limit variable with...
  14. K

    Drupal 8 custom form generation

    In this article, we will let you know about generating Drupal 8 custom forms with the help of module “ContactForm”, Webform, Content Types and Fields. Here, Content-Type holds responsibility with CCK Fields, Contact Form, Webform etc to get a set of data’s such as phone number, email and...
  15. K

    Complete Guide to Installing and Using Twitter Bootstrap as Drupal 8 Theme

    Bootstrap is a popular web development framework developed by Twitter and available under MIT License. You can use it to build the theme for your Drupal 8 website. The Bootstrap toolkit has everything you’d need to build a web page including shortcodes for CSS, breadcrumbs templates, tooltips...
  16. K

    How to increase concurrent TCP connections on Linux server?

    When you will get error in /var/log/messages that packets are being dropped due to limit being reached then you have to increase the limit of concurrent connections on server. We have set Concurrent connections limit on server due to security otherwise hackers can hack the server. If any...
  17. K

    Steps to set root forwarder in CSF

    If you are getting below error while doing test scan then you have to set root forwarder in CSF. Status .Comment WARNING The root account should have a forwarder set so that you receive essential email from your server We can set root forwarder with below steps: First you have to check for...
  18. K

    How to enable or disable multiple RDP sessions?

    Most of the times by default you will get single Remote desktop session but if you want to make them multiple you just have to follow below steps: Login to Remote Desktop server. Now press window key and search for gpedit.msc and click on it. Navigate to Computer Configuration >> Administrative...
  19. K

    Command to check all the running processes on server

    You can check the running processes from ps command (Processes status), as a system administrator this utility will help you to monitor all the running processes on server. This will get this information from virtual files /proc filesystem. You have to run below command ps –aux Here aux will...
  20. K

    How to manage Drupal 8 social media’s thumbnail activity?

    Do you know to manage thumbnail activity in Drupal 8 social media? It's not a big deal! You can manage Drupal 8 thumbnail publishment in Twitter Cards and Facebook Open Graph. Yes! It is possible with the usage of the module “Metatag”. A Drupal 8 post has a unique identification of...
Top