I did user authentication and in the localhost it works fine but on the server I'm getting this error:: Class '\app\models\User' not found
I did user authentication and in the localhost it works fine but on the server I'm getting this error:: Class '\app\models\User' not found
当运行项目上线时,这是标记的区域:
$this->_user = User::findByUsername($this->username);
首先检查 \models\User.php 是否存在于服务器
其次可能是您在本地主机上使用 windows 而在服务器上使用 Linux/Unix ..
在这种情况下,请检查您 class 中的正确大小写字符 .. 可能是您
`user.php`
而不是
`User.php'
你应该确保它被正确包含,比如添加的命名空间具有正确的字符大小写并且可以使用
当运行项目上线时,这是标记的区域:
$this->_user = User::findByUsername($this->username);
首先检查 \models\User.php 是否存在于服务器
其次可能是您在本地主机上使用 windows 而在服务器上使用 Linux/Unix .. 在这种情况下,请检查您 class 中的正确大小写字符 .. 可能是您
`user.php`
而不是
`User.php'
你应该确保它被正确包含,比如添加的命名空间具有正确的字符大小写并且可以使用