0

我正在尝试在我的 Laravel 6 项目中实现 consolibyte/quickbooks-php。如果我从控制器调用队列操作,它工作正常。但现在我想用 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了,它创建的路径是正确的,并且文件在那里。权限也是有效的。

作业:
类 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);
}

它仅在我不将其作为作业运行时才有效。我究竟做错了什么?

4

1 回答 1

1

此错误的最可能原因:

QuickBooks_Loader::load():打开失败需要'/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字符串(密码被屏蔽/删除)吗?

于 2020-01-24T18:48:05.567 回答