gpt4 book ai didi

php - 无法安装 yii 用户模块

转载 作者:可可西里 更新时间:2023-11-01 12:50:54 24 4
gpt4 key购买 nike

我从github上下载了最新版的Yii用户模块,解压到

protected/modules/

目录,所以我的目录结构包括用户和 zip 中包含的其他模块。我按照文档中的说明对主文件进行了更改,所以我的 main.php 现在看起来像这样

'import'=>array(
'application.modules.user.models.*',
'application.models.*',
'application.components.*',

),

'modules'=>array(
// uncomment the following to enable the Gii tool

'gii'=>array(
'class'=>'system.gii.GiiModule',
'password'=>'sheikh24',
// If removed, Gii defaults to localhost only. Edit carefully to taste.
'ipFilters'=>array('127.0.0.1','::1'),
),
'user' => array(
'debug' => true,
)

),
'components'=>array(
'user'=>array(
'class' => 'application.modules.user.components.YumWebUser',
'allowAutoLogin'=>true,
'loginUrl' => array('//user/user/login'),

),
// uncomment the following to use a MySQL database

'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=ewindow',
'emulatePrepare' => true,
'username' => 'root',
'password' => '',
'charset' => 'utf8',
'tablePrefix' => '',
),
'errorHandler'=>array(
// use 'site/error' action to display errors
'errorAction'=>'index/error',
),
'log'=>array(
'class'=>'CLogRouter',
'routes'=>array(
array(
'class'=>'CFileLogRoute',
'levels'=>'error, warning',
),
// uncomment the following to show log messages on web pages
/*
array(
'class'=>'CWebLogRoute',
),
*/
),
),
)

所以你可以看到我已经设置了所有代码但是当我点击 url 时

http://localhost/ewindow/index.php?r=user/install

出现如下错误

include(UserModule.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory

或者我尝试访问我的应用程序中的其他页面时出现错误

include(YumWebUser.php) [<a href='function.include'>function.include</a>]: failed to open stream: No such file or directory

谁能告诉我我做错了什么?请帮助我。

编辑:

这是扩展的链接 https://github.com/thyseus/yii-user-management

最佳答案

我解决这个问题的方法是在 php.ini 文件中打开 short_open_tag。在我修改之前它是关闭的。

关于php - 无法安装 yii 用户模块,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11280757/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com