-
Continue reading →: SQL Server Pivot – Simple example
In this post, we will try to understand PIVOT in SQL Server. But, I find a simple example how to use PIVOT in SQL Server. Let’s begin First, let’s create table for our example. And insert some sample data into it
-
Continue reading →: Remove “Forget Password” on moodle login page
Comment or erase following code in file : 1. index_form.html directory : [your moodle folder]\login comment/erase code line : 60 code : <div class=”forgetpass”><a href=”forgot_password.php”><?php print_string(“forgotten”) ?></a></div> 2. block_login.php directory : [your moodle folder]\blocks\login comment/erase code line : 36, 74-76 code : line 36 : $forgot = $wwwroot . ‘/login/forgot_password.php’;…
-
Continue reading →: Create new route in ASP.NET MVC
Now we will talk about making new route in ASP.NET MVC. In the other article we have talked about modify/change the default route in ASP.NET MVC. To create new route, open file RouteConfig.cs in App_Start folder
-
Continue reading →: Install Twitter Bootstrap version 2.3.2 Nuget in Visual Studio 2010
Open Package Manager Console (Tools -> Library Package Manager -> Package Manager Console), type command below Install-Package Twitter.Bootstrap -Version 2.3.2 For more complete infromation about Twitter Bootstrap nuget, you can visit this link
-
Continue reading →: Check PHP version on CentOS with php info file
This is another way to check whether our PHP works well and also check PHP version. We will create PHP info file. 1. Create PHP info file in root html folder
-
Continue reading →: Install PHP on Centos
It is a very basic need for our server, if we want to run PHP based application. To install PHP on our CentOS server, open terminal and type this command
-
Continue reading →: Install MySQL on CentOS VPS
MySQL is the most widely used database engine. Many application use MySQL database. In this post, I will explain how to install MySQL on CentOS VPS. 1. Open terminal, and type command below :
-
Continue reading →: SQL Server – Join clause
In this post, we will talk about Join clause in SQL Server. SQL joins are used to query data from two or more tables, based on a relationship between certain columns in those tables. There are few kinds of join, they are : INER JOIN, LEFT JOIN, RIGHT JOIN, and…
-
Continue reading →: Uninstall Apache from CentOS VPS
To unintall apache from CentOS VPS, we can use this command : yum remove httpd
-
Continue reading →: Could not reliably determine the server’s fully qualified domain name, using 127.0.0.1 for ServerName
Bismillah… This error usually appear when we install apache on our VPS. I will show you, steps how to solve it. 1. Find file httpd.conf in folder /etc/ find /etc/ -name httpd.conf



