On a freshly installed Drupal (6.2), I get this error when enabling all UTS modules except for proctor:
Fatal error: Call to undefined function uts_session_active() in /Applications/MAMP/htdocs/d6/sites/all/modules/uts/uts_proctor/uts_proctor.data.inc on line 63

It seems that the proctor is enabled automatically. Shouldn't this not happen? I get that call when visiting every page.

Comments

boombatower’s picture

Status: Active » Postponed (maintainer needs more info)

On fresh drupal install I don't get that error. Can you provide more detailed steps to creating it, maybe I'm missing something.

Bevan’s picture

I've seen this before too, but couldn't consistently reproduce the error, so not sure what the steps or cause are.

Bojhan’s picture

Just had yoroy encounter this issue aswell on my testing site, couldn't reproduce it either, might be something to look into.

boombatower’s picture

I'd love to figure it out, but I have never encountered it....hmm.

Bojhan’s picture

I have not encountered it since I installed the dev version, this might mean its gone away.

boombatower’s picture

Assigned: Unassigned » boombatower
Status: Postponed (maintainer needs more info) » Fixed

Marking as fixed. If someone encounters again please re-open.

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.

mikey-ibuildings’s picture

I have just installed the all in one UTS package and I am getting the same error on every page that I visit :o(

boreg’s picture

Read install.txt ;)

1. Before installing the modules please make sure you have installed the following
code in the settings.php file located in the sites folder. The code should be
placed at the bottom of the file after all existing code.

    
$GLOBALS['uts_installed'] = TRUE;
if (isset($_COOKIE['uts_session']) 
&& isset($_COOKIE['uts_session_active']) 
&& $_COOKIE['uts_session_active']) { 
$db_prefix = $_COOKIE['uts_session'];
}