V13 to v15 upgrade: Issue with UCP

Can’t get to the UCP URL. It blows up thusly:

/var/www/html/admin/modules/userman/Userman.class.php

     */
    public function getAllUsers($directory=null) {
        if(!empty($directory)) {
            $users = $this->directories[$directory]->getAllUsers();
        } else {
            $users = $this->globalDirectory->getAllUsers();
        }
        return $users;
    }
 
    /**
    * Get All Groups
    *
    * Get a List of all User Manager users and their data
    *
    * @return array
    */
    public function getAllGroups($directory=null) {
        if (!empty($directory) && empty($this->directories[$directory])) {
            throw new Exception("Please ask for a valid directory");
        }
 
        if(!empty($directory)) {
            $groups = $this->directories[$directory]->getAllGroups();
        } else {
            $groups = $this->globalDirectory->getAllGroups();
        }
        return $groups;
    }
 
    /** Get Default Groups
     *
     * Get a list of all default groups
     *
     * @return array
     */
    public function getDefaultGroups($directory=null) {
        if(!empty($directory)) {
            $groups = $this->directories[$directory]->getDefaultGroups();
        } else {

Arguments

"Please ask for a valid directory"

Anyone else had UCP issues after the backup/restore upgrade process?

Users and the default group appear in User Manager.

Blind squirrel gets a nut: Went to User Manager, Directories, and added a directory called “Temp”.

UCP loads now. This seems like a bug?

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.