Loaded cached credentials.
[ERROR] [IDEClient] Failed to connect to IDE companion extension. Please ensure the extension is running. To install the extension, run /ide install.
1. Locate the file `generate_hytek_entries.php` which is responsible for generating the competition entries file.
2. Analyze the contents of `generate_hytek_entries.php` to understand how it fetches the meet entries from the database.
3. Identify the exact point in the code after the entry file has been successfully generated.
4. Add a new SQL query at this point to update the `status` of all entries for the current meet to 'Accepted'.
5. Ensure the `MeetID` is correctly retrieved from the request to use in the update query.
6. Verify that the database connection is available and used correctly for the update operation.
EXECUTER NOTE: I have identified the point after the Hy-Tek entry file is generated in  and added the necessary PHP code to update the  of all entries for the given meet to 'accepted' in the  table.
EXECUTER NOTE: I have identified the point after the Hy-Tek entry file is generated in `generate_hytek_entries.php` and added the necessary PHP code to update the `status` of all entries for the given meet to 'accepted' in the `meet_entries` table.
