Appearance
Installation
This guide covers all installation methods for CommandWise, from the simplest one-click installation to advanced deployment scenarios.
Quick Install (WordPress Admin)
The fastest way to install CommandWise:
Steps:
- Log into WordPress admin
- Go to Plugins → Add New
- Search for "CommandWise"
- Click Install Now
- Click Activate
Time required: Under 30 seconds
Recommended Method
This is the easiest and recommended installation method for most users. WordPress handles all the file management automatically.
Manual Installation
For users who prefer manual control or are installing from a ZIP file:
Upload via WordPress Admin
- Download the CommandWise ZIP file
- Navigate to Plugins → Add New → Upload Plugin
- Click Choose File and select
command-wise.zip - Click Install Now
- Click Activate Plugin
Upload via FTP/SFTP
For server-level access:
- Download and extract
command-wise.zip - Connect to your server via FTP/SFTP
- Upload the
command-wisefolder to/wp-content/plugins/ - Navigate to Plugins in WordPress admin
- Find CommandWise and click Activate
WP-CLI Installation
For developers and those managing multiple sites:
bash
# Install latest version
wp plugin install command-wise --activate
# Install specific version
wp plugin install command-wise --version=1.0.0 --activate
# Install on multiple sites (multisite)
wp plugin install command-wise --activate --networkAutomation
WP-CLI is perfect for deployment scripts and managing multiple WordPress installations.
Composer Installation
For WordPress sites managed with Composer:
json
{
"require": {
"wpackagist-plugin/command-wise": "^1.0"
}
}Then run:
bash
composer installActivate via WordPress admin or WP-CLI:
bash
wp plugin activate command-wiseMultisite Installation
CommandWise works great on WordPress Multisite:
Network Activation
To enable CommandWise on all sites in your network:
- Navigate to Network Admin → Plugins
- Find CommandWise
- Click Network Activate
Individual Site Activation
To enable on specific sites only:
- Navigate to Network Admin → Plugins
- Find CommandWise and click Activate (not Network Activate)
- Go to individual site's Plugins page
- Activate CommandWise on desired sites
Requirements Check
Before installation, verify your environment:
| Requirement | Minimum | Recommended |
|---|---|---|
| WordPress | 6.0 | Latest |
| PHP | 7.4 | 8.0+ |
| MySQL | 5.6 | 5.7+ |
| Browser | Modern | Latest |
Browser Support:
- Chrome 90+
- Firefox 88+
- Safari 14+
- Edge 90+
Checking Your Environment
Check PHP Version:
bash
php -vCheck WordPress Version:
- Dashboard → Updates
- Or via WP-CLI:
wp core version
Check MySQL Version:
bash
mysql --versionPost-Installation
Verify Installation
After activation:
- ✅ Look for CommandWise icon in admin bar
- ✅ Press Cmd/Ctrl + K to open command palette
- ✅ Search should show your admin menu items
First Configuration
CommandWise works out of the box with sensible defaults:
- Keyboard Shortcut: Cmd + K (Mac) or Ctrl + K (Windows/Linux)
- Theme: Auto-matches WordPress admin colors
- Menu Items: Automatically detects all admin pages
No configuration needed to start using CommandWise!
Updating
Automatic Updates
WordPress notifies you when updates are available:
- Go to Dashboard → Updates
- Find CommandWise in the plugin list
- Click Update Now
Manual Update
To manually update:
- Deactivate (but don't delete) the current version
- Delete the old plugin files
- Install the new version using any installation method
- Activate the plugin
Backup First
Always backup your site before updating plugins, especially on production sites.
WP-CLI Update
bash
# Update CommandWise
wp plugin update command-wise
# Update all plugins
wp plugin update --allUninstallation
Standard Removal
To completely remove CommandWise:
- Navigate to Plugins
- Deactivate CommandWise
- Click Delete
- Confirm deletion
All plugin files and database entries will be removed.
WP-CLI Removal
bash
# Deactivate and uninstall
wp plugin deactivate command-wise
wp plugin uninstall command-wiseTroubleshooting Installation
Installation Fails
Error: "Could not create directory"
- Cause: Insufficient file permissions
- Solution: Check that WordPress can write to
/wp-content/plugins/ - Fix: Set proper permissions:
chmod 755 /wp-content/plugins/
Error: "Plugin requires PHP 7.4+"
- Cause: Server running older PHP version
- Solution: Upgrade PHP through your hosting control panel
- Contact: Your hosting provider for PHP upgrade assistance
Activation Issues
White Screen After Activation
- Cause: PHP error or plugin conflict
- Solution:
- Access server via FTP
- Rename
/wp-content/plugins/command-wise/to disable it - Check error logs
- Contact support with error details
Plugin Not Visible
- Cause: Extraction/upload issue
- Solution: Ensure the plugin folder is at
/wp-content/plugins/command-wise/ - Check: Files should be in
command-wise/, notcommand-wise/command-wise/
Permission Issues
If you see permission errors:
bash
# Set correct ownership (replace user:group)
chown -R www-data:www-data /wp-content/plugins/command-wise/
# Set correct permissions
chmod -R 755 /wp-content/plugins/command-wise/Network/Hosting Specific
WordPress.com
CommandWise is available for WordPress.com Business and eCommerce plans that support plugin installation.
Managed WordPress Hosts
CommandWise works with all major managed WordPress hosts:
- WP Engine
- Kinsta
- Flywheel
- Cloudways
- SiteGround
- Bluehost
No special configuration needed.
Local Development
CommandWise works great with local development tools:
- Local by Flywheel: Install normally
- XAMPP: Install normally
- Docker/Docker Compose: Mount or copy plugin folder
- WP-CLI: Use
wp plugin installas shown above
Next Steps
Successfully installed? Great! Here's what to do next:
- Getting Started Guide - Learn the basics
- Features Overview - See what CommandWise can do
- Keyboard Shortcuts - Master the shortcuts
Ready to start using CommandWise? Continue to Getting Started →