When I installed AddThis Share buttons plug-in in one of my WordPress site; and once I have activated it, I saw extra HTML code in the blog posts. Share buttons are appearing on my site, but this extra HTML code on each post also appearing when AddThis plugin was activated. I was seeing below HTML […]
WordPress – Export the Posts, Pages or Media content
We have discussed how to export all content of the WordPress site in our previous Article “WordPress – How to Export All content from WordPress site?“. There was a problem when we export all content at a time; because depending on the size of the content, PHP consumes more memory and some of the hosting […]
WordPress – How to Export All content from WordPress site?
WordPress provides a feature to allow us to Export the content of the WordPress site into an XML file. This is an important feature when you move your WordPress site to a different hosting provider or when you want to take the backup of your site content. We will go through the below steps; explain […]
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 […]
WordPress 3.x: How to resolve “414 Request-URI Too Large” error while deleting the users?
“414 Request-URI Too Large” error happens when the URL is too large. Usually when we select multiple users in WordPress and apply bulk delete action on selected users; WordPress will form the URL with all the selected users and send the URL to the server to delete the selected users from the WordPress database. There […]
Oxwall 1.x: How to Show or Hide Newsfeed content on index page?
Oxwall’s Newsfeed Plugin is used to display the content on the index page. Depending on your website requirements you can show or hide some of the content types newsfeed Plugin displays on the index page. In this article, I am going to explain how to show or hide newsfeed content on the index page. Step […]
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 […]