Regarding the notice about the constants already being defined, could you check to see if you have an older file /libraries/sourcecoast/utilities.php? The functionality was moved from this older file into the components/com_jfbconnect/libraries/utilities.php one. If this was an upgrade on the site, perhaps the older file did not get removed.
Undefined property: stdClass::$section in /var/www/vhosts/druidcityliving.com/httpdocs/modules/mod_sclogin/helper.php on line 115\n', referer: druidcityliving.com/
This is in a section of code for Two Factor Authentication.
1. Could you verify that you have a two factor authentication plugin enabled. Then open it up and save it again after choosing the appropriate 'Site Section'. Does the error go away?
2. If not, could you try making the following code change in /modules/mod_sclogin/helper.php at line 115. Change
if(in_array($tempO->section, array(1, 3)) || !isset($tempO->section))
to
if(!isset($tempO->section) || in_array($tempO->section, array(1, 3)))
Try these suggestions and let me know what happens.
-Melissa