Giter Club home page Giter Club logo

uit.ie104.shoeshop's Introduction

N7 website

--- The website is built for "Internet and Web Technology" subject at University of Information Technology, VNU ---

1. More information

To have database, access to Wiki page

Usecase Diagram

Use case Diagram

The Use case Diagrame was build by Vietnamese language, the grey blocks are the function that we have not done yet!

2. Create Virtual host

“Before software can be reusable it first has to be usable.” – Ralph Johnson

Because we have some base link in the head tag, so you need to create virtual host to have the right route

We apologise for any inconvenience caused. We will fix it soon!! 😓 😓

Setting up a virtual host allows you to use an alias name for your localhost

Some steps to configure Virtual Hosts in XAMPP

Step 1:

Open the Virtual Hosts Apache configuration file httpd-vhosts.conf from C:\xampp\apache\conf\extra\httpdvhosts.conf

Step 2:

Uncomment the below line to enable name based virtual hosts on your XAMPP

# NameVirtualHost *:80

So will be:

NameVirtualHost *:80

Step 3:

For each other virtual host (website) you would like to configure on the XAMPP Apache web server, add the below code at the end of the file

<VirtualHost *:80>
  DocumentRoot "C:\xampp\htdocs\ie104"
  ServerName ie104project.test
  <Directory "C:\xampp\htdocs\ie104">
    Options FollowSymLinks
    AllowOverride All
    DirectoryIndex index.php
    Require all granted
  </Directory>
</VirtualHost>

By adding the above directives to httpd-vhosts.conf (XAMPP virtual hosts configuration file), the Apache web server running on XAMPP knows that:

  1. The website files can be found in C:\xampp\htdocs\ie104 (line 2), you have to replace the directory if your project in another place
  2. This website should respond to www.ie104project.test (line 3)
  3. Allow everyone to access the content of the directory (line 4 to 7)

Step 4:

Add the following line in the Windows Hosts File from C:\Windows\System32\drivers\etc

127.0.0.1 ie104project.test

Step 5:

Restart XAMPP

The default port used by Apache is 80, so if you have different port in Apache, replace it in step 2 and 3 and write ie104project.test:your-port in the URL instead of ie104project.test


GREAT!!!!!! 👍

Welcome to the new adventure and we hope you will contribute to improve this project!!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.