Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions README.md
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:
Comment on lines +18 to +20
Copy link

Copilot AI Apr 10, 2026

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).

Copilot uses AI. Check for mistakes.
```php
$_config["db_host"] = "your_database_host";
$_config["db_user"] = "your_database_user";
$_config["db_pass"] = "your_database_password";
$_config["db_name"] = "jshop";
````
Copy link

Copilot AI Apr 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PHP config snippet’s closing fence uses four backticks (````) instead of three (```), which will break Markdown rendering for the rest of the document. Please change it to a matching triple-backtick fence.

Suggested change
````

Copilot uses AI. Check for mistakes.
6. Access the web application through your browser.

## Usage

- Navigate through different sections such as product listings, user registrations, and evaluation panels.
- Administrators can log in to perform administrative tasks, including managing users and presentations.
- Presenters can register and submit their presentations for evaluation.

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
Copy link

Copilot AI Apr 10, 2026

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.

Suggested change
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.

Copilot uses AI. Check for mistakes.

## Contributing

Please feel free to submit issues or fork the project to contribute changes.