Installation Guide#
System Requirements#
Before installing Topdata Colors SW6, ensure your system meets the following requirements:
- Shopware Version: 6.6. or 6.7.
- PHP Version: 8.1 or higher
- Server Requirements: Standard Shopware 6 server requirements
Installation Steps#
1. Download and Extract#
- Download the plugin package from your source
- Extract the plugin files to your Shopware installation directory:
2. Install via Composer (Recommended)#
If you have the plugin available via Composer:
3. Manual Installation#
If installing manually:
- Copy all plugin files to
/custom/plugins/topdata-colors-sw6/ - Ensure proper file permissions are set
4. Plugin Installation Commands#
Execute the following commands in your Shopware root directory:
# Refresh plugin list
bin/console plugin:refresh
# Install the plugin
bin/console plugin:install --activate TopdataColors
# Clear cache
bin/console cache:clear
5. Verify Installation#
- Log into your Shopware Administration
- Navigate to Extensions > My Extensions
- Verify that "Topdata Colors" appears in the installed plugins list
- Check that the plugin status shows as "Active"
Post-Installation Setup#
After successful installation:
- Configure Plugin Settings: Go to Extensions > My Extensions > Topdata Colors > Configure
- Set Up Property Groups: Configure which property groups should be used for color display
- Test Display: Create a test product with color properties to verify the plugin works correctly
Troubleshooting Installation#
Plugin Not Visible#
- Ensure files are in the correct directory:
/custom/plugins/topdata-colors-sw6/ - Run
bin/console plugin:refreshto update the plugin list - Check file permissions
Installation Fails#
- Verify Shopware version compatibility (6.6. or 6.7.)
- Check PHP version requirements
- Review server error logs for specific error messages
- Ensure sufficient disk space and memory
Cache Issues#
- Clear all caches:
bin/console cache:clear - If using Redis or other cache systems, clear those as well
- Restart web server if necessary
Uninstallation#
To remove the plugin:
# Deactivate the plugin
bin/console plugin:deactivate TopdataColors
# Uninstall the plugin
bin/console plugin:uninstall TopdataColors
# Clear cache
bin/console cache:clear
Note: Uninstalling the plugin will not remove your configuration data by default. If you want to completely remove all plugin data, use the --keep-user-data=false flag:
```bash bin/console plugin:uninstall --keep-user-data=false TopdataColors