2

php-resqueを介してcomposerパッケージを使用しようとしていますartisan。Laravelはv3.2.7だと思います。コマンドphp artisan queueを実行すると、次のエラーが発生します。

エラー

PHP Fatal error:  Class 'Resque' not found in /var/www/dev/application/tasks/queue.php on line 20

Fatal error: Class 'Resque' not found in /var/www/dev/application/tasks/queue.php on line 20

ここで何が問題になっているようですか?php-resqueパッケージがvendorディレクトリにインストールされているようです...

PHP (queue.php)

class Queue_Task
{
    public function run()
    {

        // Autoload composer vendors.
        require path('composer').DS.'autoload.php';

        // You can pass arguments into the worker as payload
        $args = array('name' => 'John Smith');
        Resque::enqueue('testqueue', 'ExampleWorker', $args);

        echo "Resque job queued.\n";
        return;
    }
}

public / index.php

// --------------------------------------------------------------
// Tick... Tock... Tick... Tock...
// --------------------------------------------------------------
define('LARAVEL_START', microtime(true));

// --------------------------------------------------------------
// Indicate that the request is from the web.
// --------------------------------------------------------------
$web = true;

// --------------------------------------------------------------
// Set the core Laravel path constants.
// --------------------------------------------------------------
require '../paths.php';

// --------------------------------------------------------------
// Autoload composer vendors.
// --------------------------------------------------------------
require path('composer').'autoload.php';

// --------------------------------------------------------------
// Unset the temporary web variable.
// --------------------------------------------------------------
unset($web);

// --------------------------------------------------------------
// Launch Laravel.
// --------------------------------------------------------------
require path('sys').'laravel.php';

// --------------------------------------------------------------
// Autoload composer vendors.
// --------------------------------------------------------------
require path('composer').DS.'autoload.php';

path.php スニペット

// --------------------------------------------------------------
// The path to the composer vendors directory.
// --------------------------------------------------------------
$paths['composer'] = 'vendor';
4

1 に答える 1

2

DIRECTORY_SEPARATOR作曲家のパスにがありません。

于 2013-03-04T16:27:03.550 に答える