带有 Laravel "QuickBooks_Loader::load(): Failed opening required " 的 Quickbooks 桌面
Quickbooks Desktop with Laravel "QuickBooks_Loader::load(): Failed opening required "
我正在尝试在我的 Laravel 6 项目中实施 consolibyte/quickbooks-php。
如果我从控制器调用 Queue 操作,它工作正常。但现在我想与 Laravel 工作异步进行。那就是我收到错误的地方:
我收到此错误:
QuickBooks_Loader::load(): Failed opening required '/var/www/html/buyforme/b4m-aportal-v2/vendor/consolibyte/quickbooks/QuickBooks/Driver/.php' (include_path='.:/usr/share/php:/var/www/html/buyforme/b4m-aportal-v2/vendor/consolibyte/quickbooks')
它所指的特定行在 Loader.php 中:
if (QUICKBOOKS_LOADER_REQUIREONCE)
{
require_once QUICKBOOKS_BASEDIR . $file;
}
我登录了 QUICKBOOKS_BASEDIR . $file
,它创建的路径是正确的,文件在那里。权限也有效。
工作:
class AddInventoryIntoQB 实现 ShouldQueue
{
使用 Dispatchable、InteractsWithQueue、Queueable、SerializesModels;
/**
* Item object.
*/
protected $item;
/**
* @var LaravelQbd
*/
protected $QBD;
/**
* Create a new job instance.
*
* @param Item $item
*/
public function __construct(Item $item)
{
$this->QBD = new LaravelQbd;
$this->item = $item;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$this->QBD->enqueue(QUICKBOOKS_ADD_INVENTORYITEM, $this->item);
}
LaravelQbd:
/**
* User Configuration File Array
*/
protected $dsn;
protected $config;
protected $map = [];
public function __construct()
{
$this->config = config('quickbooks');
$this->dsn = $this->config['qb_dsn'];
}
public function enqueue($action, $object, $priority = 0, $extra = null, $user = null)
{
$Queue = new \QuickBooks_WebConnector_Queue($this->dsn);
return $Queue->enqueue($action, $object, $priority, $extra, $user);
}
它只有在我不 运行 它作为工作时才有效。我做错了什么?
导致此错误的最可能原因:
QuickBooks_Loader::load(): Failed opening required '/var/www/html/buyforme/b4m-aportal-v2/vendor/consolibyte/quickbooks/QuickBooks/Driver/.php'
是格式错误或空的 dsn
连接字符串。也就是说,代码正在寻找数据库驱动程序,而您指定要使用的数据库驱动程序不存在。
在此代码中:
public function __construct()
{
$this->config = config('quickbooks');
$this->dsn = $this->config['qb_dsn'];
}
你是:
- 您是否 100% 确定
qb_dsn
甚至设置为一个值?
- 您是否 100% 确定它已设置为有效的 DSN 数据库连接字符串?
- 字符串中是否有任何字符需要 URL 编码,实际上 URL 编码正确?
能否粘贴您的 dsn
字符串(密码为 masked/removed)?
我正在尝试在我的 Laravel 6 项目中实施 consolibyte/quickbooks-php。 如果我从控制器调用 Queue 操作,它工作正常。但现在我想与 Laravel 工作异步进行。那就是我收到错误的地方:
我收到此错误:
QuickBooks_Loader::load(): Failed opening required '/var/www/html/buyforme/b4m-aportal-v2/vendor/consolibyte/quickbooks/QuickBooks/Driver/.php' (include_path='.:/usr/share/php:/var/www/html/buyforme/b4m-aportal-v2/vendor/consolibyte/quickbooks')
它所指的特定行在 Loader.php 中:
if (QUICKBOOKS_LOADER_REQUIREONCE)
{
require_once QUICKBOOKS_BASEDIR . $file;
}
我登录了 QUICKBOOKS_BASEDIR . $file
,它创建的路径是正确的,文件在那里。权限也有效。
工作:
class AddInventoryIntoQB 实现 ShouldQueue
{
使用 Dispatchable、InteractsWithQueue、Queueable、SerializesModels;
/**
* Item object.
*/
protected $item;
/**
* @var LaravelQbd
*/
protected $QBD;
/**
* Create a new job instance.
*
* @param Item $item
*/
public function __construct(Item $item)
{
$this->QBD = new LaravelQbd;
$this->item = $item;
}
/**
* Execute the job.
*
* @return void
*/
public function handle()
{
$this->QBD->enqueue(QUICKBOOKS_ADD_INVENTORYITEM, $this->item);
}
LaravelQbd:
/**
* User Configuration File Array
*/
protected $dsn;
protected $config;
protected $map = [];
public function __construct()
{
$this->config = config('quickbooks');
$this->dsn = $this->config['qb_dsn'];
}
public function enqueue($action, $object, $priority = 0, $extra = null, $user = null)
{
$Queue = new \QuickBooks_WebConnector_Queue($this->dsn);
return $Queue->enqueue($action, $object, $priority, $extra, $user);
}
它只有在我不 运行 它作为工作时才有效。我做错了什么?
导致此错误的最可能原因:
QuickBooks_Loader::load(): Failed opening required '/var/www/html/buyforme/b4m-aportal-v2/vendor/consolibyte/quickbooks/QuickBooks/Driver/.php'
是格式错误或空的 dsn
连接字符串。也就是说,代码正在寻找数据库驱动程序,而您指定要使用的数据库驱动程序不存在。
在此代码中:
public function __construct()
{
$this->config = config('quickbooks');
$this->dsn = $this->config['qb_dsn'];
}
你是:
- 您是否 100% 确定
qb_dsn
甚至设置为一个值? - 您是否 100% 确定它已设置为有效的 DSN 数据库连接字符串?
- 字符串中是否有任何字符需要 URL 编码,实际上 URL 编码正确?
能否粘贴您的 dsn
字符串(密码为 masked/removed)?