Troubleshooting
Common issues and how to resolve them
Troubleshooting
Solutions to common issues with the GrootMade platform and connector plugin.
Connection Issues
"Invalid API Key" Error
Symptoms: Plugin shows API key error, can't connect to GrootMade.
Solutions:
- Verify your API key is copied completely (no extra spaces)
- Check your membership is active at grootmade.com/dashboard
- Regenerate the API key and try again
- Ensure your site's clock is accurate (time sync issues can cause auth failures)
"Connection Timeout" Error
Symptoms: Plugin can't reach GrootMade servers.
Solutions:
- Check your server can make outbound connections
- Ask your host to whitelist
api.grootmade.com - Verify your SSL certificate is valid
- Try temporarily disabling firewall/security plugins
- Check if your IP is blocked (contact support)
"SSL Certificate Error"
Symptoms: Connection fails with certificate errors.
Solutions:
- Ensure your site uses HTTPS
- Check your SSL certificate is valid and not expired
- If using Cloudflare, try "Full (Strict)" SSL mode
- Clear any SSL caching
Download Issues
Download Won't Start
Symptoms: Clicking download does nothing.
Solutions:
- Check your membership is active
- Verify you haven't hit daily download limits (free plan)
- Try a different browser
- Disable browser extensions (ad blockers can interfere)
- Check browser console for JavaScript errors
Download Corrupted
Symptoms: ZIP file is damaged or incomplete.
Solutions:
- Try downloading again
- Use a download manager for large files
- Check available disk space
- Try downloading from a different network
- Contact support if persistent
Installation Issues
Plugin/Theme Won't Install
Symptoms: WP shows error during installation.
Solutions:
- Check available disk space (need ~5x the file size)
- Verify file permissions on
wp-content/ - Increase PHP memory limit if needed:
define('WP_MEMORY_LIMIT', '256M'); - Temporarily increase max upload size
- Try manual FTP installation
"Destination Folder Already Exists"
Symptoms: Can't install because folder exists.
Solutions:
- Delete the existing folder via FTP
- Or rename the existing installation first
- Check if a previous installation failed mid-way
Activation Error
Symptoms: Plugin installs but won't activate.
Solutions:
- Check PHP version compatibility
- Look for error messages in debug log
- Temporarily deactivate other plugins to find conflicts
- Verify WP version compatibility
Auto-Update Issues
Updates Not Running
Symptoms: Products aren't updating automatically.
Solutions:
- Verify auto-updates are enabled in plugin settings
- Check WP-Cron is working:
wp cron test - If WP-Cron is disabled, set up a real cron job
- Check update schedule settings
- Manually trigger an update check
Update Failed
Symptoms: Update started but didn't complete.
Solutions:
- Check available disk space
- Verify file permissions
- Look in the update log for specific errors
- Try updating manually
- Use rollback to restore previous version
Site Broken After Update
Symptoms: Site displays errors or blank page after update.
Solutions:
- Use the rollback feature immediately
- Enable WP debug mode to see errors:
define('WP_DEBUG', true); define('WP_DEBUG_LOG', true); - Check for plugin conflicts
- Clear all caches (plugin, server, CDN)
- Contact support with error details
Plugin Conflicts
Identifying Conflicts
Deactivate all plugins except GrootMade connector
Test if the issue persists
Reactivate plugins one by one
Identify which plugin causes the conflict
Common Conflict Sources
- Security plugins — May block API connections
- Caching plugins — May cache API responses incorrectly
- Optimization plugins — May break JavaScript
- Other update managers — May conflict with our updates
Resolving Conflicts
- Check for plugin updates
- Adjust conflicting plugin settings
- Contact both plugin developers
- Use compatibility mode if available
Performance Issues
Site Slow After Installing Products
Solutions:
- Check if it's actually the new product (deactivate to test)
- Enable caching
- Check for excessive database queries
- Review error logs for issues
- Consider upgrading hosting
Dashboard Loading Slowly
Solutions:
- Clear browser cache
- Try incognito mode
- Check your internet connection
- Try a different browser
Account Issues
Can't Log In
Solutions:
- Reset your password
- Check caps lock
- Clear browser cookies
- Try incognito mode
- Contact support if locked out
Two-Factor Authentication Issues
Solutions:
- Ensure device time is accurate
- Try backup codes
- Contact support for account recovery
Getting More Help
Before Contacting Support
Gather this information:
- WP version
- PHP version
- Plugin version
- Error messages (screenshots help)
- Steps to reproduce
- Debug log if available
Contact Options
- Documentation — You're here!
- Community Forums — forums.grootmade.com
- Email Support — [email protected] (Pro+ plans)
- Live Chat — Available on Agency plans
Debug Mode
Enable WP debug logging before contacting support:
define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);