Giter Club home page Giter Club logo

ecommerce_webapp's Introduction

Ecommerce Webapp

Sample ecommerce webapp clothing store.

To Run

Install xampp for linux.

Add webapp files to xampp

  • Move default htdocs dir: sudo mv /opt/lampp/htdocs /opt/lampp/oldhtdocs
  • Move all webapp files to xampps htdocs(must be in ecommerce_webapp dir for this cmd): sudo mkdir /opt/lampp/htdocs && sudo cp -r * /opt/lampp/htdocs
  • Xampp seems to require 777 perms on all htdocs files or all pages return 403 forbidden: sudo chmod -R 777 /opt/lampp/htdocs
  • Start xampp: sudo /opt/lampp/xampp start

Webapp should be running at http://localhost:80, but it won't work properly until database setup

Create Database in Phpmyadmin

database.php expects a database named "ecommerce" to be created in Phpmyadmin for it to connect to. Go to localhost/phpmyadmin

Create a DB named "ecommerce" and then execute the SQL from each table in dir database_tables in the repo. Then run the sql for default_products.sql to populate products table.

Debugging

For example in login/login.php or header.php or both, comment out lines disabling error displaying and replace them with:

ini_set('display_errors', true);
error_reporting(E_ALL ^ E_NOTICE);

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.