Troubleshooting
Last updated March 7, 2026
Connection Issues
"Could not connect to the TI PowerUp server"
Cause: API connection error or incorrect API key.
Solutions:
- Verify your API key is correct (get from your profile at tipowerup.com)
- Check your internet connection
- Verify your firewall doesn't block tipowerup.com
- Try again in a few minutes — the server may be temporarily down
Installation Issues
"Checksum Mismatch: Package integrity check failed"
Cause: Downloaded file is corrupted or incomplete.
Solutions:
- Click Retry to re-download
- Check disk space (need ~500MB free minimum)
- Check internet stability
- Try using the Composer method instead
"Extraction Failed: Could not extract package files"
Cause: File permissions, full disk, or invalid ZIP.
Solutions:
- Check permissions on
storage/app/tipowerup/(should be 755 or 775) - Free up disk space (need 2x ZIP file size)
- Check error logs in
storage/logs/
Fix permissions:
chmod 755 storage/app/tipowerup/
chmod 755 vendor/
chmod 755 extensions/
"Migration Failed: Database migration error"
Cause: Database permissions or schema conflict.
Solutions:
- Verify your database user has CREATE/ALTER permissions
- Check database disk space
- Check for conflicting table or column names
- Contact your hosting provider with error details
Extension Not Working After Installation
- Rebuild the package manifest:
php artisan igniter:package-discover - Check it's enabled in System > Extensions
- Clear all caches:
php artisan cache:clear && php artisan view:clear - Run pending migrations:
php artisan igniter:up - Check logs in
storage/logs/laravel.log
Performance Issues
"Memory Limit Exceeded"
Increase the PHP memory limit:
; In php.ini
memory_limit = 512M
Or via .htaccess:
php_value memory_limit 512M
"Max Execution Time Exceeded"
- Switch to "Direct Extraction" method in PowerUp Installer settings
- Ask your hosting provider to increase
max_execution_timeto 120+ seconds
Cache Issues
After any installation, clear caches if the extension doesn't appear:
php artisan cache:clear
php artisan view:clear
php artisan igniter:package-discover
300" class="lg:hidden">