Skip to content

Latest commit

 

History

History
92 lines (60 loc) · 4.4 KB

installation_guidelines.md

File metadata and controls

92 lines (60 loc) · 4.4 KB

Installation Guideline

Locally with XAMPP

  • Download and install XAMPP:

    XAMPP

    • Start the downloaded installer (.exe) and press Yes.

    xampp_install_1

    • Probably there will be pop-up a Question and Warning

    xampp_install_question

    xampp_install_warning

    xampp_install_2

    • Select Components as you wish but keep MySQL selected, a database is needed:

    xampp_install_3

    • Select location where you want to install xampp:

    xampp_install_4

    • Select preferred language:

    xampp_install_5

    xampp_install_6

    • After clicking on Next > the installation will start:

    xampp_install_6

    xampp_install_8

  • Goto the htdocs folder of your XAMPP installation directory and clone the repo to yout local machine

    for example: C:\xampp\htdocs

    • Click in on the adressbar and type cmd to open a new comand prompt

    xampp_htdocs

    • git clone https://github.com/sudhay23/ShopOnline-Web-App.git

    git_clone

  • Start Apache Webser and hte MySQL database, for example over the XAMPP Control Panel

    • Open the control panel

    xampp_control_panel_1 or execute C:\xampp\xampp-control.exe

    • Start Apache and MySQL:

    xampp_control_panel_2

    • When the Modul is highlighted green your good to go:

    xampp_control_panel_3

  • Import shoponline.sql to your database, for example over phpMyAdmin

    http://localhost/phpmyadmin/

    phpmyadmin_0

    • Create a new database:

    phpmyadmin_1

    • On the Import Tab click slect file and select shoponline.sql afterwards click OK

    phpmyadmin_2

    phpmyadmin_3

    phpmyadmin_4

  • Configure .env file

    • Update .env.sample to .env file under ShopOnline-Web-App/With PHP/backend/

    1

  • Make sure you have the default :

    • root user account
    • localhost
    • No password
    • all privileges granted

    2

  • Now you can visit the site:

    http://localhost/ShopOnline-Web-App/

    ShopOnline-Web-App