Sunday 3 May 2020

Earthquake:magnitude3.3 quake hits San Fernando Valley

A magnitude 3.3 earthquake shook up the San Fernando Valley Sunday morning.The epicenter of the earthquake, which hit at 3:19 a.m., occurred in Chatsworth. Light shaking was felt in the northwest section of the Valley, while weak shaking was felt in the rest of the Valley and into downtown Los Angeles and the Westside, according to the U.S. Geological Survey. Within 20 minutes of the earthquake, hundreds of people reported feeling the earthquake and reported it to the USGS’ Did You Feel It? crowdsourcing survey. Residents reported feeling it as far away as Simi Valley, Santa Clarita, and Santa Monica.

Wednesday 6 April 2016

Interiors:-Home

Interiors:-Home








Our Vision is to provide best quality Interior & Designing Services with the Products at affordable Cost.



Vivid Interior are the leading company based at Delhi NCR region
offering premier services at the most affordable prices. We blend
comfort with style while designing your houses. We do not restrict us to
just homes, but also actively take up projects of business institutions
and commercial organizations. Go through our portfolio to view samples
of our impeccable interior designing works. Hire us to give a makeover
to your house or design your new home. Contact us now and let the best
interior designers mange your project keeping in mind your unique taste
and choice


Being a client-centric company, we have made every effort to
ensure that our clients get services that are exactly as per their
specifications. Keeping in consideration the schedule, budgetary
constraints and construction phasing plans, we render world class
services and aim at maximizing the satisfaction level of our clients.


Saturday 27 February 2016

How to Install LAMP in Ubuntu Server 14.04 LTS

This tutorial will explains basic step how to install LAMP (Linux, Apache, MySQL, PHP or Perl) server in ubuntu server 14.04 LTS. The acronym LAMP is derived from first letters of Linux, Apache HTTP Server, MySQL, and PHP/Perl/Python.
  • Linux is a Unix-like and POSIX-compliant operating system. Ubuntu Server is one of popular Linux distributions dedicated for server environment.
  • Apache is a HTTP web server, the most popular in use. It serves webpages when they’re requested by the web browsers. When you type an URL on your web server and press Enter, the pages you see on screen is most likely served by Apache webserver.
  • MySQL is a database management system now owned by Oracle Corporation. It stores and organizes references to the information the webserver needs.
  • PHP is a reflective programming language, which makes it possible for all these different parts to work together.
This tutorial assumes that you have already installed Ubuntu Server 14.04 correctly in you machine, if you need guide basic install ubuntu server 14.04 you can read here

Install and Configure Apache2

First, update ubuntu repository with the following command :
sudo apt-get update
Install Apache2 and all related dependencies with these command:
sudo apt-get install apache2 apache2-utils
Once apache2 installed, modify file /etc/apache2/mods-enabled/dir.conf, with your favorite editor. I’ll used nano command:
sudo nano /etc/apache2/mods-enabled/dir.conf
You should see the following line:
<IfModule mod_dir.c>
       DirectoryIndex index.html index.cgi index.pl index.php index.xhtml index.htm
</IfModule>
Change to:
<IfModule mod_dir.c>
       DirectoryIndex index.php index.html index.cgi index.pl index.xhtml index.htm
</IfModule>
Restart apache2 with following command:
sudo service apache2 restart
Now you can check out apache2 is working or not by visiting your server’s public IP address or domain from your web browser ( http://ip_address or http://domain.com). If it work you will see the default Ubuntu 14.04 Apache web page, which is there for informational and testing purposes. It should look something like this:
default web page apache2 ubuntu

Install and Configure MySQL Server

To install Mysql Server package and all related package dependencies run the followong command:
sudo apt-get install mysql-server libapache2-mod-auth-mysql php5-mysql
During the installation, you’ll be asked to setup the MySQL root user password. This is an administrative account in MySQL that has increased privileges, Enter the password and select [OK].
configuring mysql-server-5.5
After the mysql server installation complete, you need to run some command for tell MySQL to create database directory structure where it will store its information. You can do this by typing the following command:
sudo mysql_install_db
create database directory structure
Run the following command, It will be ask you to enter the password for the MySQL root account. Next, it will ask you if you want to change that password. If you are happy with your current password, type “n” for “no”. It also ask you to remove some sample users and databases, disable remote root logins, and load these new rules so that MySQL immediately respects the changes you have made.
sudo mysql_secure_installation
mysql secure installation

Install and Configure PHP5

To install PHP5 package and all related package dependencies run the following command below. by default ubuntu server 14.04 will installed PHP 5.5
sudo apt-get install php5 php5-mysql php-pear php5-gd  php5-mcrypt php5-curl

Testing PHP5 and MySQL

In order to test PHP script you need to create simple PHP script in directory /var/www/html. in this case I’ll create phpinfo.php:
sudo touch /var/www/html/phpinfo.php
sudo nano  /var/www/html/phpinfo.php
Add the following line into file /var/www/html/phpinfo.php
<?php phpinfo(); ?>
Save and exit ( Ctrl + O, Ctrl + X)
Test the php script you have made from web browser by typing in address bar http://ip_address/phpinfo.php. It will appear like screenshot on below.
Test the php script
This page basically gives you information about your server from the perspective of PHP. It is useful for debugging and to ensure that your settings are being applied correctly.
Testing MySQL connection with PHP script. Create the file /var/www/html/phpmysql.php then add the following line on below. Replace the password with your mysql root password have made during mysql installation:
sudo touch /var/www/html/phpmysql.php
sudo nano /var/www/html/phpmysql.php
<?php
$con = mysql_connect("localhost","root","password");
if (!$con)
{
 die('Could not connect: ' . mysql_error());
}
else
{
 echo "Congrats! connection established successfully";
}
mysql_close($con);
?>
Now open web browser and navigate to http://ip_address/phpmysql.php, The page should be appear like screenshot on below:
Test the php mysql script
The following video created by Amazintech and is describes basic steps how to installing LAMP in Ubuntu Server 14.04 LTS.

Thursday 25 June 2015

WebWorld: How to show POP UP on Page Load In Magento

WebWorld: How to show POP UP on Page Load In Magento: A client recently requested a popup on the home page. So, I decided to implement this functionality using FancyBox, which I have been usin...