-
Found some other issues with myetSIS and registration. So, I am including a .zip file of the updated courses.router.php.
You will need to log into your PHPMyAdmin and run the following queries at the same time. Make sure to uncheck the option Enable foreign key checksĀ before executing the queries.
ALTER TABLE course MODIFY COLUMN courseCode VARCHAR(80) COLLATE utf8mb4_unicode_ci NOT NULL; ALTER TABLE course_sec MODIFY COLUMN courseCode VARCHAR(80) COLLATE utf8mb4_unicode_ci NOT NULL; ALTER TABLE course_sec MODIFY COLUMN courseSecCode VARCHAR(80) COLLATE utf8mb4_unicode_ci NOT NULL; ALTER TABLE course_sec MODIFY COLUMN courseSection VARCHAR(80) COLLATE utf8mb4_unicode_ci NOT NULL; ALTER TABLE stac MODIFY COLUMN courseCode VARCHAR(80) COLLATE utf8mb4_unicode_ci NOT NULL; ALTER TABLE stcs MODIFY COLUMN courseSecCode VARCHAR(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL; ALTER TABLE stcs MODIFY COLUMN courseSection VARCHAR(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL;
Attachments:
You must be logged in to view attached files.Joshua Parker
Twitter | Facebook | DigitalOcean | tinyCampaignYou need to login in order to like this post: click here
If you are using RC3, then the registration emails will always go to the super administrator instead of the logged in student. To fix this, open courses.router.php and make the following changes around line 355:
from
$sect->stuid = 1;
to
$sect->stuid = get_persondata('personID');
Joshua Parker
Twitter | Facebook | DigitalOcean | tinyCampaignYou need to login in order to like this post: click here
You must be logged in to reply to this topic.