Hi everyone,
We have a significant update to Tickets CAD available on GitHub and we're looking for testers. This is a great opportunity to support the project — we're all volunteers, and testing is one of the most valuable ways to contribute to this community. You don't need to be a developer to help. If you can install the software and click around, you're exactly who we need.
What's in this update:
How to get the update:
The latest version is available on GitHub at:
https://github.com/openises/tickets
SourceForge will not be updated immediately. GitHub is the place to get the latest version.
Option 1: Download as a ZIP file (easiest)
If you're not comfortable with git commands, you can download the entire project as a ZIP file:
tickets folder with the contentsOption 2: Using Git (recommended for ongoing updates, easiest to apply updates to)
If you have git installed (or want to try it), these commands will get you set up. Open a command prompt or terminal and run:
cd /path/to/your/webserver/htdocs
git clone https://github.com/openises/tickets.git
This creates a tickets folder with the latest code. If you've already cloned the repository previously, you can pull the latest changes instead:
cd /path/to/your/tickets
git pull origin main
That's it — two commands to stay current.
Back up first!
Before updating, please make a backup so you can easily revert if needed:
tickets folder to a safe location — for example, rename it to tickets_backup_20260314 or copy it somewhere outside your web server directory.mysqldump -u your_username -p your_database_name > tickets_backup_20260314.sql
incs/mysql.inc.php file contains your database connection settings. This file is not included in the repository, so it won't be overwritten — but it's good practice to back it up anyway.To revert to the previous version:
If you run into problems, simply:
tickets foldertickets folder to its original locationmysql -u your_username -p your_database_name < tickets_backup_20260314.sql
How to report issues:
If you find a bug or something doesn't work right, please reply to this message with:
If things are working well, we'd love to hear that too — a quick "tested on PHP 8.x, looks good" is genuinely helpful.
Thank you for your time and for being part of this community.
Eric Osterberg