我的routes.php文件是
<?php
use App\models\User;
use App\models\Permission;
use App\models\Role;
Route::get('/roles', function()
{
//code
}
我的role.php文件是
<?php
namespace App\models;
use Zizaco\Entrust\EntrustRole;
class Role extends EntrustRole
{
}
我发现了这样的错误
FatalErrorException在M
我正在尝试从UbuntuServer11.10运行我的php应用程序。此应用程序在windows中的Apache + PHP下运行良好。我有其他的应用程序,我可以简单地复制和粘贴之间的2个操作系统,他们在这两个工作。
然而,这一次使用了php库补语(RESTful webservices),使我们成为了php cURL模块。问题是,我没有收到错误消息,这使得不可能找到问题。
我(必须)使用NTLM身份验证,这是用AuthenNTLM Apache完成的:
Order allow,deny
Allow from all
PerlAuthenHandler Apache2::AuthenNTLM
的nginx1.13显示的是404。当我查看容器日志时,我可以看到nginx并没有将请求传递给php,而是在寻找一个index.html。我不明白为什么它不会将请求传递给php。
/etc/nginx/conf.d/default.conf
我已经确认这个文件是加载的。
server {
listen 80;
root /var/www/html/public;
index index.php;
charset utf-8;
# look for local files on the container before sending the re