-
Notifications
You must be signed in to change notification settings - Fork 1
fix: Create new README file #42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -0,0 +1,41 @@ | ||||||
| # Ponencias | ||||||
|
|
||||||
| Ponencias is a PHP-based virtual shop system geared towards managing conferences and presentations. It is part of the jShop version 1.0 developed by Sergio Ceron Figueroa. | ||||||
|
|
||||||
| ## Features | ||||||
|
|
||||||
| - **Product Management:** Display and manage products with features to handle expiration and stock count. | ||||||
| - **User Authentication:** Login system with sessions for different user roles, including administrators, presenters, co-authors, evaluators, and attendees. | ||||||
| - **Presentation Evaluation:** Manage and evaluate conference presentations, assign evaluators, and handle feedback. | ||||||
|
|
||||||
| ## Installation | ||||||
|
|
||||||
| 1. Clone the repository from GitHub: | ||||||
| ```bash | ||||||
| git clone https://github.com/underserver/Ponencias.git | ||||||
| ``` | ||||||
| 2. Upload the files to your web server. | ||||||
| 3. Ensure that the server has PHP and MySQL installed and running. | ||||||
| 4. Create a MySQL database named `jshop`. Import the SQL files to set up the tables. | ||||||
| 5. Modify the `includes/config.php` with your database credentials: | ||||||
| ```php | ||||||
| $_config["db_host"] = "your_database_host"; | ||||||
| $_config["db_user"] = "your_database_user"; | ||||||
| $_config["db_pass"] = "your_database_password"; | ||||||
| $_config["db_name"] = "jshop"; | ||||||
| ```` | ||||||
|
||||||
| ```` |
Copilot
AI
Apr 10, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The README states the project is MIT-licensed and links to a LICENSE file, but the repository doesn’t include a LICENSE file. Please add the correct license file or update this section to reflect the actual licensing.
| This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. | |
| This repository does not currently include a license file. No license terms are specified in the repository as provided. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Installation step 4 mentions importing SQL files, but there don’t appear to be any .sql files in the repository; schema creation seems to be handled by the installer (e.g., install/update.php). Please update the instructions to match the actual installation path (run the installer / point to the correct schema source).