Install Php Mysql Apache Phpmyadmin Windows 10

The latest major release of PHP version 7.0 has been released with lots of speed optimizations and security. So you should try this version for your development. This tutorial will help you to install PHP 7.0, Apache >= 2.4.17, & MySQL 5.6 on Ubuntu 15.10, 15.04 & 14.04 LTS release. To setup LAMP stack on Ubuntu 16.04 LTS, visit our new tutorial below.

  1. Php Mysql Apache Download
  2. Php Mysql Apache Windows
  1. How to install web server on Windows 10 (Apache 2.4, PHP 7, MySQL 8.0 and phpMyAdmin). Apache, PHP, MySQL, phpMyAdmin. Mysqld --install net start mysql 5.
  2. How to install PHP to run as FastCGI on Windows 10; How to install PHP to run as Apache Module on Windows 10. How to install MySQL on Windows 10; How to install phpMyAdmin on Windows 10.
  3. How to install PHP to run as FastCGI on Windows 10; How to install PHP to run as Apache Module on Windows 10. Install MySQL on Windows 10; How to install.

Install PHP 7

First, install python-software-properties package on your system which provides add-apt-repository command then use the following set of commands to add PPA for PHP 7 in your Ubuntu system and install it.

Learn to install Apache, PHP and MYSQL on Windows 10 Machine step by step. You’ll learn about how you can install Apache, PHP and MySQL. Like phpMyAdmin. Howto install, configure, and secure phpMyAdmin on Windows. WampDeveloper Pro with phpMyAdmin Easy-to-use Web Server Software using Apache, PHP, MySQL and phpMyAdmin - for Windows.

Install Apache 2.4

After successful installation, let’s begin installing Apache 2.4. Use the following set of commands to install Apache2 on your Ubuntu system available in default apt repositories.

Install MySQL 5.6

Use the following commands to install or upgrade MySQL 5.6 on your Ubuntu systems. At the last update of this tutorial MySQL, 5.6.27 is latest available MySQL version series of MySQL 5.6.X.

Install Other Requirements

You may also need to install modules like PHP7-MySQL, libapache2-mod-php7.0 etc based on your application requirements. Use the following command to find our available php 7 modules.

Above command will list all available PHP7 modules for installation, Let’s begin installation of modules.

Verify Setup

Finally verify installation of PHP7 with Apache2. Let’s create a file info.php on website document root using following content.

Now browse this file in web browser. It will so all the details about versions and installation.

If you are planning to install Apache, PHP and MySQL on Windows 10 machine, then you can do so by choosing any of the two options given below:

  1. You can use any ready-to-use packages like: WampServer, XAMPP etc.
    OR
  2. You can make your own fully functional WAMP server (Manual Installation).

So, in this tutorial, you’ll learn about how you can install Apache, PHP and MySQL server on your Windows 10 PC manually . As I’m currently using Windows 10 Pro 64-bit, so this tutorial is based upon it. I recommend that you read the whole tutorial first before following the instructions.

First, we have to decide as to which version of each application will be installed.

  • Apache 2.4.29
  • MySQL 5.7.21
  • PHP 7.2.3

You can download the required installer via links given below:

  • Download Apache for Windows: https://www.apachelounge.com/download/
  • Download PHP 7 for Windows (select ‘Thread Safe’): http://windows.php.net/qa/
  • Download MySQL for Windows (select ZIP Archive): http://dev.mysql.com/downloads/mysql/
  • Download the latest C++ Redistributable Visual Studio 2017: https://www.microsoft.com/en-in/download/details.aspx?id=48145
  • Download Visual C++ Redistributable Packages for Visual Studio 2013: https://www.microsoft.com/en-US/download/details.aspx?id=40784

Managed WordPress Hosting

MySQL Installation on Windows 10 Pro 64 bit:

  • Download MySQL installer and click on Run.
Php
  • Select License Agreement and then click on Next.
  • Select Server Only and click on Next.
  • It will ask you to install Visual Studio 2013 on your system.
  • Click on the Execute button.
  • Select License agreement and click on Install.
  • Click on Close.
  • Click on Next.
  • Click on Execute.
  • Click on Next.
  • Click on Next.
  • Put root user password. Confirm password and Click on Next.

  • Click on Next.
  • Click on Next.
  • Click on Finish.

Your MySQL database server is now ready for use. You can use any MySQL client software for managing your database, like phpMyAdmin, Heidi SQL, SQL YOG etc.

Apache 2.4 Installation on Windows 10 Pro 64 bit:

  • Install the latest C++ Redistributable Visual Studio 2017: https://www.microsoft.com/en-in/download/details.aspx?id=48145
  • Download Apache files and unzip them (archive httpd-2.4.25-win64-VC14.zip) to the C:Apache24 directory:
  • After unzipping, go to the folder c:Apache24conf and open the httpd.conf file by any text editor.
  • Change below line in this file:

#ServerName www.example.com:80

ServerName localhost

# AllowOverride controls what directives may be placed in .htaccess files.

# It can be “All”, “None”, or any combination of the keywords:

# AllowOverride FileInfo AuthConfig Limit

#

AllowOverride None

# AllowOverride controls what directives may be placed in .htaccess files.

# It can be “All”, “None”, or any combination of the keywords:

# AllowOverride FileInfo AuthConfig Limit

Phpmyadmin

#

AllowOverride All

#LoadModule rewrite_module modules/mod_rewrite.so

LoadModule rewrite_module modules/mod_rewrite.so

HP Notebook, Touch, and AiO PCs - Webcam Troubleshooting (Windows 7) This document is for HP computers with built-in webcams and Windows 7. Some HP notebooks, Touch, and AiO computers come with preinstalled webcams that can be used to capture video motion or still images. Hp webcam driver for windows 10. Perform simple tests on your PC to verify that the webcam is recognized by the Device Manager and the driver is working properly in Windows 10, 8, or 7. IBM WebSphere Portal. For HP products a product number. HP Notebook PCs - Testing a Webcam Using YouCam (Windows 10, 8, 7) Opening YouCam. Hp youcam download windows 7, Windows Media Player 11.0, Windows Media Player 11, CyberLink YouCam 4.1.1425. One curious omission in more recent versions of Windows is they don’t have any built-in abilities to view or test a webcam’s video display without installing additional third party software. HP PCs - Webcam Troubleshooting (Windows 10, 8). If the problem persists, continue using these steps to install a generic Windows USB video driver. If a webcam driver is not available from HP or you cannot access the Internet, continue using these steps to install a generic Windows USB Video driver.

  • Register Apache service:

If you see this page, it means that your Apache installation has been successfully done.

Php Mysql Apache Download

You can modify index page code or upload your files like example given below.

PHP Installation on Windows10:

  • Download PHP package php-7.1.1RC1-Win32-VC14-x64.zip and unzip under C:php72
  • Rename php-ini-development.ini to php.ini
  • Add PHP in system environment variable.

C:>setx path “%PATH%, C:php72” /M

  • Again, open the file c:Apache24confhttpd.conf and append it with lines:

PHPIniDir “C:/PHP72”

  • AddHandler application/x-httpd-php .php

Canon pixma ip4300 printer drivers for mac. LoadModule php7_module “C:/PHP72/php7apache2_4.dll”

  • Restart Apache services.

Php Mysql Apache Windows

Now you can access your PHP page from default Apache document root. Here I have created on phpinfo.php page.

That’s it! You’re done 🙂

Managed WordPress Hosting

Planning to install Apache, PHP and MySQL? Choose VPS and pick any plan from https://www.znetlive.com/vps-hosting-windows/

Services ZNetLive offer:

If you have any doubt regarding this write-up or need to know more about the installation, drop comments below and get in touch.

Umesh Dubey

Umesh, Team Lead - Technical, is a Microsoft products’ expert with enviable certifications like RHCE, MCPS, MCSA and MCSE. An excellent team player, he utilizes his expertise of over 7 years in the technical sphere to handle technical issues brilliantly and dedicatedly value adds to the system administration and management fields. He can be seen drawing or playing chess in free time.

Latest posts by Umesh Dubey (see all)

  • How to install Let’s Encrypt SSL certificate on IIS web server? - October 16, 2017
  • How to run Hyper-V in a Virtual Machine with Nested Virtualization? - October 4, 2017
  • Step by step tutorial on how to configure SMTP server in Windows server 2016 - October 24, 2016