{"id":24637803,"url":"https://github.com/hacker1649/ecomm-dash","last_synced_at":"2025-03-20T09:21:59.129Z","repository":{"id":264309873,"uuid":"892994142","full_name":"hacker1649/ecomm-dash","owner":"hacker1649","description":"A feature-rich e-commerce platform with a powerful admin dashboard and user-friendly customer interface. Admins can manage users, products, and orders seamlessly, while users enjoy a smooth shopping experience. Built with PHP and MySQL for efficient and scalable performance.","archived":false,"fork":false,"pushed_at":"2024-11-23T09:42:23.000Z","size":60319,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-01-25T10:10:04.119Z","etag":null,"topics":["bootstrap5","css3","html5","javascript","jquery","mysql","payment-integration","paypal","php","sqlyog","wampserver"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hacker1649.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-11-23T08:47:58.000Z","updated_at":"2024-12-21T11:16:40.000Z","dependencies_parsed_at":"2024-11-23T10:38:21.687Z","dependency_job_id":null,"html_url":"https://github.com/hacker1649/ecomm-dash","commit_stats":null,"previous_names":["hacker1649/ecommdash","hacker1649/ecomm-dash"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacker1649%2Fecomm-dash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacker1649%2Fecomm-dash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacker1649%2Fecomm-dash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hacker1649%2Fecomm-dash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hacker1649","download_url":"https://codeload.github.com/hacker1649/ecomm-dash/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244583142,"owners_count":20476253,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bootstrap5","css3","html5","javascript","jquery","mysql","payment-integration","paypal","php","sqlyog","wampserver"],"created_at":"2025-01-25T10:10:12.801Z","updated_at":"2025-03-20T09:21:59.096Z","avatar_url":"https://github.com/hacker1649.png","language":"PHP","funding_links":["https://developer.paypal.com/home/"],"categories":[],"sub_categories":[],"readme":"# EcommDash\nEcommDash is a comprehensive e-commerce platform built with PHP and MySQL. It includes a robust admin panel for managing users, products, and orders, alongside a user-friendly interface for customers to browse and purchase products. This project demonstrates an end-to-end implementation of an e-commerce website with full-stack development.\n\n## Key Features:\n### Admin Panel:\n\n- User management: View, add, edit, and delete users.\n- Product management: Add, edit, and delete products from the catalog.\n- Order management: View and update order statuses.\n- Dashboard: View statistics like total orders, total products, and total users.\n\n### User Panel:\n\n- User authentication: Register, login, and manage profiles.\n- Browse products: View and filter products by category, price, etc.\n- Cart: Add products to the cart, update quantity, and remove items.\n- Checkout: Complete the order process with payment options.\n\n### Database:\n\n- MySQL database integration for storing user, product, and order data.\n- Secure password management and user authentication using hashing techniques.\n\n## Technologies Used\n\n### Frontend\n- HTML5: For structuring content.\n- CSS3: For styling the website and enhancing user experience.\n- JavaScript: For client-side interactivity and validations.\n\n### Backend\n- PHP: Server-side scripting for business logic.\n- MySQL: Database for storing user, product, and order data.\n\n### Other Tools\n- Bootstrap: For responsive design, pre-built components, and faster development.\n- XAMPP/WAMP: Local server for development and testing.\n\n## Installation \u0026 Setup\n\nFollow these steps to set up the project on your local machine:\n\n### Prerequisites\n- Install a local server such as XAMPP or WAMP.\n- Ensure PHP and MySQL are properly configured.\n- Set up a PayPal Developer Account to obtain your client ID and secret.\n\n1. Clone the repository to your local machine:\n    \n    ```bash\n    git clone https://github.com/hacker1649/EcommDash.git \n    ```\n\n2. Move the project to your server directory e.g. for XAMPP, move to `htdocs/` and for WAMP move to `www/`.\n\n3. Before running the project, make sure that you have a valid database connection file.\n\n```bash\n\u003c?php\n\n// Database connection details\n$servername = \"localhost\";\n$username = \"root\";\n$password = \"\";\n$dbname = \"db_sneat_users\";\n\n// Create connection\n$conn = new mysqli($servername, $username, $password, $dbname);\n\n// Check connection\nif ($conn-\u003econnect_error) {\n    die(\"Connection failed: \" . $conn-\u003econnect_error);\n}\n\n?\u003e\n```\n\n4. Move the EcommDash folder to the htdocs directory (if using XAMPP) or www directory (if using WAMP).\n\n5. Open your browser and type http://localhost/sneat/user/website/website_page.php to access the website.\n\n6. Log in with the default admin credentials (if available) or register as a new user.\n\n## Steps to Configure PayPal\n\n- Create or log in to a PayPal Developer account ([PayPal Developer](https://developer.paypal.com/home/)).\n- Obtain API credentials (Client ID and Secret).\n- Open `payment_page.php` and locate the PayPal API integration code.\n- Replace placeholders with your PayPal Client ID and Secret.\n- Enable PayPal's sandbox mode for testing.\n- Place test orders to ensure proper integration.\n- Once testing is complete, switch to PayPal’s live environment for real transactions.\n\n## Usage\n### Admin Usage:\n\n- After logging in, the admin can access the dashboard and manage users, products, and orders.\n- Admin can create new products, delete or update existing ones, and manage the inventory.\n- The order management page allows the admin to view all orders and update their status.\n\n### User Usage:\n\n- Users can browse through categories and search for specific products.\n- Items can be added to the shopping cart and removed if necessary.\n- Users can proceed to checkout and complete their purchase.\n\n## Contributing\nContributions are welcome! If you have suggestions or want to add features, feel free to fork the repository, make changes, and submit a pull request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacker1649%2Fecomm-dash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhacker1649%2Fecomm-dash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhacker1649%2Fecomm-dash/lists"}