Git Product home page Git Product logo

Comments (3)

romainrg avatar romainrg commented on June 12, 2024

Hi mate,

You have to change the path of your AMQPStreamConnection installation.
For me, it's in the vendor folder.

Tell me if you have another issue.

from codeigniter-rabbitmq-library.

balajeed avatar balajeed commented on June 12, 2024

Even for me its an vendor folder but wondering whether i need to manually add the autoload somewhere in the code ... because i am keep getting the message as "Class 'PhpAmqpLib\Connection\AMQPStreamConnection' not found" and i tried my best and unable to fix it. Could you please help me on this and let me know why i am getting the error ... Attached the vendor folder structure and not sure what i am missing here.
screen shot 2016-03-08 at 3 53 31 pm

same works fine when i create a static rabbitmq_sender.php file in my project root as below.
`<?php
require_once DIR . '/vendor/autoload.php';
use PhpAmqpLib\Connection\AMQPStreamConnection;
use PhpAmqpLib\Message\AMQPMessage;
$connection = new AMQPStreamConnection('localhost', 5672, 'guest', 'guest');
$channel = $connection->channel();
$channel->queue_declare('test', false, false, false, false);

$msg = new AMQPMessage('Hello World!');
$channel->basic_publish($msg, '', 'test');

echo " [x] Sent 'Hello World!'\n";
$channel->close();
$connection->close();
?>`

from codeigniter-rabbitmq-library.

romainrg avatar romainrg commented on June 12, 2024

Can I see the complete structure of your project ?

from codeigniter-rabbitmq-library.

Related Issues (2)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.