8 questions
1
vote
0
answers
71
views
Why am I receiving an invalid PHP type error?
I am trying to execute a PHP command async form original request.
While trying this I found php-enqueue for Symfony (6.4):
https://github.com/php-enqueue/enqueue-dev
https://php-enqueue.github.io/...
0
votes
1
answer
581
views
Add a header when sending a message with php-enqueue and RabbitMQ
I am trying to send a header using php-enqueue bundle
I'm trying this:
public function __construct(
ProducerInterface $producer
)
{
parent::__construct();
$this->producer = $...
-1
votes
1
answer
299
views
WordPress enqueuing a CSS file using JavaScript inside Functions.php
I'm trying to load a CSS file just on mobile.
I made some research and found the the best way to do that is by using JS so here is the code I found:
$( document ).ready(function() {
var isMobile ...
2
votes
0
answers
466
views
Health-check on enqueue consumer
How can i make a health-check for liveness and readiness probe for a php-enqueue consumer?
The consumer is a long running process and is started with:
php ./bin/console enqueue:consume --setup-broker
...
0
votes
2
answers
64
views
Enqueuing style and script based on template not working
In WordPress, I have a template file called vertical-page.php.
When a page has this template applied, I want to load in a specific stylesheet and script.
I have tried to use is_page_template(), but it ...
0
votes
1
answer
54
views
enqueue_stylesheet but it is not working on wordpress theme development
i have recently download a theme and try to convert it into wordpress theme.
now i got stuck in error i am trying to enqueue my style sheet script into theme and its not working.
this is my header ...
0
votes
0
answers
218
views
Enqueue controller action process
Symfony 2.8
Using https://github.com/j-guyon/CommandSchedulerBundle to manage periodic Command executions.
Each of these Command executions invokes an specific Service based on the Command arguments.
...
0
votes
1
answer
1k
views
Producing avro message using php-enqueue
I'm researching a way of producing avro messages from php to kafka using php-enqueue.
Their documentation states that you can use other formats, including Apache Avro.
By default the transport ...