CodeSteps

Python, C, C++, C#, PowerShell, Android, Visual C++, Java ...

Author : mourya

Drupal 7 – Adding and deleting Users

Drupal provides a simple user interface to create or delete the users from the Drupal system. User accounts are required to login into the Drupal system to access Drupal functionality. In this article, we are going to discuss the steps required to create or delete the users. Step 1. Sign in to your Drupal-based website […]

How to Create a MySQL database from command line?

MySQL provides command line tools to create databases and managing them. In this article we are going to discuss on creating a database from command line. Step 1. First we need to connect to the MySQL database server. Type the below command at command line to connect to the server: mysql -hMyServerName -uMyUserName -pMyPassword Here MyServerName […]

Oxwall 1.x: How to Install or Uninstall Plugins?

Plugins are used to extend Oxwall’s social networking platform’s functionality. Oxwall allows to Install or Uninstall Plugins. Oxwall provides an interface to update existing Plugins. In this article, we will discuss how to update or add Plugins to Oxwall’s platform. Step 1. Sign-in into Oxwall’s based social networking platform website as an administrator. Oxwall displays […]

Drupal 7 – Creating a module (Part – 6)

We are almost done with our module. Just we have to implement the functionality when the module is installed or uninstalled. Drupal 7 loads the functionality from “.install” file whenever the module is installed or uninstalled. We need to write hook functions “hook_install” and “hook_uninstall” in “.install” file. So, Drupal 7 will call these functions […]

WordPress 3 – Post Revisions

WordPress provides the flexibility to store revisions of posts. That means, WordPress stores the posts into post revisions whenever you modify the post. This really helps to retrieve the post information from post revisions when you miss some information in the current post. WordPress stores all the post revisions into the database like it stores […]

Scroll to top