Laravel Firebird - 无法完成托管“localhost”的网络请求

时间:2017-12-29 11:22:31

标签: laravel localhost driver firebird

Laravel 5.1.45 lts
php 5.6.31
ubuntu 14.04 lts

我需要阅读.FDB firebird文件,为此我在extension=php_pdo_firebird.dll中取消注释php.ini并重新启动

它始终适用于以前的服务器,但是......

前几天,亚马逊AWS告诉我我的服务器需要重启。 我做到了,因为没有什么比这更好了,我将迁移到另一个实例。

其他数据库工作(mysql,sqlite),只有firebird

测试方法没有成功 - 将777设置为文件和文件夹; - 检查phpinfo()模块firebird(及其那个)。

错误看起来像路径,但文件在那里!如果我故意写错了名字,会出现同样的错误。

也许是apache的东西? 也许我还需要将Firebird安装到服务器上?

我的database.php:

'firebird' => [
            'driver'   => 'firebird',
            'host'     => env('DB_HOST', 'localhost'),
            'database' => 'E:/programmi/xamp/htdocs/hubble/storage/firebird/'.$nomefdb,
            'username' => 'sysdba',
            'password' => 'masterkey',
            'charset' => env('DB_CHARSET', 'UTF8'),
        ],

image

0 个答案:

没有答案