Warning: before the download, check if your PHP installation is thread safe or non-thread safe typing this on Terminal:
php -i|findstr "Thread"
Next, proceed:
- Download the right version of the extension https://pecl.php.net/package/amqp
- After download, copy rabbitmq.4.dll and rabbitmq.4.pdb files to PHP root folder and copy php_amqp.dll and php_amqp.pdb files to PHP\ext folder
- Add
extension=amqp
to the php.ini file - Check if is everything OK with
php -m
It is miserable easy but I have stuck on this for almost two hours.
Top comments (8)
sometimes many problems appears when you install php_amqp.dll and abbitmq.4.dll
I make a solution with an example for xampp environnement
you need to pass variable environment PATH with c:\xampp\php
and make rabbitmq.4.dll in C:\xampp\php and php_amqp.dll in C:\xampp\php\ext
take a look in C:\xampp\php\logs\php_error_log for detected if there is some problems.
you need to restart xampp program not service but all the program with quit button to take variable environment .
This how to is not working for xampp with php 8.2.
If you do it like this how to you get an error:
Is there anybody who knows how to solve this Problem?
I suppose this is right for <php 8.0
do you know how to do it for php 8.0? I've been trying all day
Thanks!
Has anyone done on php 8+ versions? I'm stuck..
Thnaks you Rezende,
I've been looking for a tutorial like yours for the whole afternoon.
You save my life!