0

我有 Joomla!1.7.2 稳定,当我尝试登录管理区域时出现此错误

 Fatal error: Call to a member function load() on a non-object in /home/shomos1/public_html/portal/libraries/joomla/user/user.php on line 822

这是我的 user.php 中的错误行

    public function load($id)
    {
        // Create the user table object

        $table  = $this->getTable();
var_dump($table);
        // Load the JUserModel object based on the user id or throw a warning.
        if (!$table->load($id)) {
            JError::raiseWarning('SOME_ERROR_CODE', JText::sprintf('JLIB_USER_ERROR_UNABLE_TO_LOAD_USER', $id));
            return false;
        }

        // Set the user parameters using the default XML file.  We might want to
        // extend this in the future to allow for the ability to have custom
        // user parameters, but for right now we'll leave it how it is.

        $this->_params->loadString($table->params);

        // Assuming all is well at this point lets bind the data
        $this->setProperties($table->getProperties());

        return true;
    }
}

我不擅长 Joomla,我不明白那里的问题是什么请需要帮助我能做些什么来解决这个问题谢谢

4

1 回答 1

0

默认的 com_user 组件与您的组件冲突,因此您必须重命名组件文件,它们不得具有名称“用户”...

于 2013-12-17T12:26:11.493 回答