Archive for the ‘MYSQL’ Category

How to solve malayalam or any other font display error in wordpress

If your wordpress site don't show malayalam or any other fonts then no need to worry. It is a simple problem in your database.

Problem

Post title and post content accepts malayalam font and when you publish the post then it displays only ???????? characters.

Before publishing : After pasting malayalam texts in title and content page, It looks like below

malayalam font display error in wordpress 1

Read more »

How to install LAMP in ubuntu

 

Open terminal or press Ctrl + Alt +T and type the following command
 
sudo apt-get install lamp-server^
 

lamp 2


 
When you search for the name of the package that the given command seems to install cannot be found using apt-cache search. e.g. You will see this used most often when someone tells you how to install LAMP server setup (Linux-Apache-MySQL-PHP) by using the command “sudo apt-get install lamp-server^”. If you miss the caret at the end or try to search for lamp-server, it just doesn’t work.
 

Read more »

Apache 2 Web Server in Linux – Start, Stop and Restart

 
Start Apache 2 Web Server
 
To start Apache 2 web server, enter:
 
/etc/init.d/apache2 start
 
or
 
sudo /etc/init.d/apache2 start


 
Restart Apache 2 Web Server
 
Restart Apache 2 web server, enter:
 
/etc/init.d/apache2 restart
 
or
 
sudo /etc/init.d/apache2 restart


 

Read more »