Cannot specify include file via command line
JoyceBabu opened this issue · 0 comments
JoyceBabu commented
I am trying to specify an include file via command line. Unfortunately, both APP_INCLUDE
and -a
are ignored. I have tried
sudo ./fresque start -a /opt/fresque/autoloader2.php
and
sudo APP_INCLUDE=/opt/fresque/autoloader2.php ./fresque start
with the same result. But if I specify it within the ini file, it is correctly loaded.
Also, is it possible to load a queue specific include file? I tried setting the following in the ini file
[Queues]
VideoConvertor[include] = /opt/fresque/autoloader2.php
; VideoConvertor is my queue name
But that too did not work.