Codeigniter上的Hybridauth无法加载Hybridauth类。

问题描述 投票:0回答:1

我已经安装了 hybridauth 通过composer,然后按照给出的步骤 此处但总是得到以下错误。

Could not load the Hybrid_Auth class

有什么解决办法吗?

codeigniter class github composer-php hybridauth
1个回答
0
投票

在你的控制器中使用:

$this->load->library('hybridauth');

在你的控制器中加载库。


0
投票

应用程序编辑器.json

{
   "require" : {
     "hybridauth/hybridauth" : "~3.0"
   },
   "config": {
     "platform": {
       "php": "X.X.XX" //SET your php version
     }
  }
}

并更改配置文件 application/config/config.php

$config['composer_autoload'] = TRUE;
© www.soinside.com 2019 - 2024. All rights reserved.