PHPackages                             lukeyouell/craft-queue-manager - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Queues &amp; Workers](/categories/queues)
4. /
5. lukeyouell/craft-queue-manager

AbandonedArchivedCraft-plugin[Queues &amp; Workers](/categories/queues)

lukeyouell/craft-queue-manager
==============================

Job Queue Manager for Craft CMS.

1.1.0(7y ago)3027.2k2MITJavaScript

Since Nov 5Pushed 2y ago2 watchersCompare

[ Source](https://github.com/lukeyouell/craft-queue-manager)[ Packagist](https://packagist.org/packages/lukeyouell/craft-queue-manager)[ RSS](/packages/lukeyouell-craft-queue-manager/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (4)Dependencies (1)Versions (6)Used By (0)

> **Warning**
> This plugin has been abandoned in favor of the built-in queue manager utility (Craft 3.4.0 and newer).

---

[![icon](src/icon.svg)](src/icon.svg)

Queue Manager for Craft CMS 3
=============================

[](#queue-manager-for-craft-cms-3)

Job Queue Manager for Craft CMS.

[![cp](resources/screenshots/qm-cp.png)](resources/screenshots/qm-cp.png)

Installation
------------

[](#installation)

#### Requirements

[](#requirements)

This plugin requires Craft CMS 3.0.0, or later.

#### Plugin Store

[](#plugin-store)

Log into your control panel and click on 'Plugin Store'. Search for 'Queue Manager'.

#### Composer

[](#composer)

1. Open your terminal and go to your Craft project:

```
cd /path/to/project
```

2. Then tell Composer to load the plugin:

```
composer require jalendport/craft-queuemanager
```

3. In the Control Panel, go to Settings → Plugins and click the “Install” button for Queue Manager.

Features
--------

[](#features)

- View detailed job information
- Retry or cancel individual jobs
- Retry or cancel the full queue
- Console commands that offer the same functionality as found in the CP

### Console commands

[](#console-commands)

#### Retrying jobs

[](#retrying-jobs)

Individual:

```
./craft queue-manager/queue/retry id

```

Full queue:

```
./craft queue-manager/queue/retry-all

```

#### Cancelling jobs

[](#cancelling-jobs)

Individual:

```
./craft queue-manager/queue/cancel id

```

Full queue:

```
./craft queue-manager/queue/cancel-all

```

Overriding Plugin Settings
--------------------------

[](#overriding-plugin-settings)

If you create a [config file](https://craftcms.com/docs/config-settings) in your `config` folder called `queue-manager.php`, you can override the plugin’s settings in the Control Panel. Since that config file is fully [multi-environment](https://craftcms.com/docs/multi-environment-configs) aware, this is a handy way to have different settings across multiple environments.

Here’s what that config file might look like along with a list of all of the possible values you can override.

```
