找不到 Admad Social Auth 路由
Admad Social Auth route cannot be found
我想在 cakephp 中将社交身份验证与登录和注册集成,为此我使用了 Admad-social-auth plugin.The 插件在本地 wamp 上运行良好,但在服务器上出错。任何帮助将不胜感激。
Error: A route matching "array ( 'prefix' => false, 'plugin' =>
'ADmad/SocialAuth', 'controller' => 'Auth', 'action' => 'login', 'provider' =>
'google', '?' => array ( 'redirect' => NULL, ), '_ext' => NULL, )" could not be
found.
错误意味着没有路由匹配 ADmad/SocialAuth
,我怀疑这是在页面呈现期间发生的(即尝试 "calculate" 按钮的 link 时)。
很可能您还没有 "registered" Cake 的插件。为此,请将以下行添加到您的 cakephp bootstrap 文件 (config/bootstrap.php
)?
Plugin::load('ADmad/SocialAuth', ['bootstrap' => true, 'routes' => true]);
我想在 cakephp 中将社交身份验证与登录和注册集成,为此我使用了 Admad-social-auth plugin.The 插件在本地 wamp 上运行良好,但在服务器上出错。任何帮助将不胜感激。
Error: A route matching "array ( 'prefix' => false, 'plugin' =>
'ADmad/SocialAuth', 'controller' => 'Auth', 'action' => 'login', 'provider' =>
'google', '?' => array ( 'redirect' => NULL, ), '_ext' => NULL, )" could not be
found.
错误意味着没有路由匹配 ADmad/SocialAuth
,我怀疑这是在页面呈现期间发生的(即尝试 "calculate" 按钮的 link 时)。
很可能您还没有 "registered" Cake 的插件。为此,请将以下行添加到您的 cakephp bootstrap 文件 (config/bootstrap.php
)?
Plugin::load('ADmad/SocialAuth', ['bootstrap' => true, 'routes' => true]);