This module provides a ProcessWire Admin UI (“bridge UI”) for the ProcessWire Console ecosystem. It does not re-implement Console features itself; instead it integrates with:
trk/processwire-console(required for most features)trk/processwire-boost(optional; status/info only)
- ProcessWire
>= 3.0.210 - PHP
>= 8.2
This admin UI depends on the Console package exposing a small set of PHP API classes. If your installed Console version does not provide these classes, the UI will display a warning with the missing FQCNs.
- Migrations:
Totoglu\Console\Migration\MigratorTotoglu\Console\Migration\MigrationRepository
- Queues:
Totoglu\Console\Queue\QueueManager
- Seeding:
Totoglu\Console\Database\SeederManagerTotoglu\Console\Database\Seeder
- Scheduling:
Totoglu\Console\Scheduling\ScheduleManagerTotoglu\Console\Scheduling\TaskTotoglu\Console\Scheduling\Event
From your project root:
composer require trk/processwire-wireconsoleThen in ProcessWire Admin:
- Admin → Modules → Refresh
- Install WireConsole (and ProcessWireConsole Process module)
Install Console packages (from your project root):
composer require trk/processwire-console
composer require trk/processwire-boost # optionalIf you install trk/processwire-wireconsole via Composer, you may still want to install trk/processwire-console for full functionality.
The admin page requires the base permission:
wire-console
Feature tabs are permission-based (superusers bypass all checks):
wire-console-migrationswire-console-queueswire-console-seedingwire-console-schedulingwire-console-backupwire-console-testing
If a user lacks a permission, the tab is hidden and direct access will display a “permission required” card.
Scheduling depends on a server cron entry that runs every minute:
* * * * * cd /path/to/project && php vendor/bin/wire schedule:run >> /dev/null 2>&1The Admin UI can also trigger “run due tasks” manually (superuser-only), but cron is recommended for production.
Queue processing is operationally a CLI/worker concern. For production, run a worker process:
php vendor/bin/wire queue:workThe Admin UI focuses on table installation, inspecting failed jobs, and retry/clear operations.
The module uses ProcessWire core backup tooling ($database->backups()).
Notes:
- In many production installs,
site/assets/backups/is protected via.htaccess(downloads may be blocked). - Ensure
site/assets/backups/database/is writable by the PHP user. - Restore is destructive. The UI requires typed confirmation (
RESTORE) and can optionally create a pre-backup.
The UI can run php vendor/bin/wire test (superuser-only) if:
proc_openis enabledvendor/bin/wireexists
Security notes:
- Test arguments are allowlisted.
- In non-debug mode (
$config->debug = false), test output is hidden in the UI.
All critical actions write structured audit entries to:
site/assets/logs/wire-console.txt
Common causes:
vendor/autoload.phpnot found (wrong project root detection)- Console package not installed
The module resolves the Composer root by searching upwards from /site for composer.json and vendor markers.
If site/assets/backups/.htaccess denies access, the UI will avoid generating public download links.
Use filesystem access to retrieve backup files.
- Confirm the user has the required feature permission.
- Superusers bypass feature permissions.
Module tests live under:
site/modules/WireConsole/tests
Run:
php vendor/bin/wire test --filter=WireConsole