-
Notifications
You must be signed in to change notification settings - Fork 31
Troubleshooting 4.0
The best way is to create an issue on GitHub: https://github.com/subjectsplus/SubjectsPlus/issues/. If you don't have a GitHub user account, and don't want to create one, you could report the bug to the SP mailing list/google group: https://groups.google.com/forum/#!forum/subjectsplus
The first, best method is to click on the "forgot my password" link from the login screen. However, if this isn't working for you, you can try resetting the pathword via PHPMyAdmin or your favourite tool for interacting with the MySQL database:
UPDATE staff SET password = md5("YourNewSuperSecurePassword") WHERE email = 'admin_email@your_institution.edu'
Perhaps "Base Path for CKEditor" in admin > config site is not set properly. Double check that this looks right. In IIS, the installer might not get the correct path!
Check your MySQL version.
If you have MySQL 5.7 and up you must disable ONLY_FULL_GROUP_BY permanently. Please refer to this stack overflow issue: https://stackoverflow.com/questions/23921117/disable-only-full-group-by
It's probably a permission issue. The assets/users/ folder must allow the webserver to write to it (in order to create the folder for a new user, and then load the headshot)
Probably PHP doesn't have permission to write to the control/includes/config.php file. Make this file writeable.
You can rearrange these. Go to control/includes/config.php and reorder the $pluslets_activated array
Try going into config.php and changing your URL to be http/https agnostic, e.g., $BaseURL = "//yourlibrary.edu/sp/";