Deployment Issues
Deployment failed with a build error
Deployment failed with a build error
Symptoms: Deployment status shows “failed” with a build error in the logs.Solutions:
- Check Settings > Deployment History and expand the failed deployment to read the error message
- Common causes:
- Syntax errors in JavaScript/TypeScript files
- Missing dependencies (run
npm installin the terminal) - Invalid
package.jsonor build script
- Fix the issue in the code editor and deploy again
- If the error is unclear, switch to Debug mode in the AI chat and paste the error message
A failed deployment never affects your live site. The previous successful version remains online.
Site shows a blank white page after deploying
Site shows a blank white page after deploying
Symptoms: Deployment succeeded but the site shows nothing.Solutions:
- Open browser DevTools (F12) and check the Console tab for JavaScript errors
- Verify your
index.htmlor entry point exists in the project files - For React/Next.js apps, ensure the root component renders correctly
- Check the Hosting dashboard log viewer for server-side errors
- Ask the AI in Debug mode: “My site shows a blank page after deploying — diagnose the issue”
Custom domain shows SSL error or redirect loop
Custom domain shows SSL error or redirect loop
Symptoms: Browser shows “Your connection is not private” or the page keeps redirecting.Solutions:
- DNS not propagated yet — wait 15-30 minutes after adding your CNAME record, then click Verify DNS Configuration in Settings
- Cloudflare users — set your CNAME proxy status to DNS only (gray cloud), not Proxied. If you must use Cloudflare proxy, set SSL/TLS mode to Full (strict)
- Check that your CNAME record points to the exact distribution address shown in the domain setup wizard
- Use dnschecker.org to verify DNS propagation globally
AI Assistant Issues
AI says credits are exhausted
AI says credits are exhausted
Symptoms: The AI won’t make changes and shows a credits warning.Solutions:
- Credits reset on the 1st of each month automatically
- Switch to Hiveku Mini (free on all plans) for basic tasks
- Ask your account Owner/Admin to upgrade the plan for more credits
- Connect a BYOK Anthropic API key in Settings > AI Credits to bypass credits entirely
AI is slow or not responding
AI is slow or not responding
Symptoms: Messages take a long time or the stream hangs.Solutions:
- Try switching to a different model tier (Mini is fastest)
- Use
/compactto condense a long conversation — this frees up context space - Start a new session with
/clearif the conversation has become very long - Set reasoning effort to Low for simple tasks
- Check your internet connection
AI made changes I don't want
AI made changes I don't want
Symptoms: The AI edited files incorrectly or broke something.Solutions:
- Open the affected file in the code editor
- Click the History icon (clock) in the toolbar
- Browse the version list and click Restore on the version before the AI’s changes
- Save the restored file with Ctrl+S / Cmd+S
Editor Issues
Preview is not updating after I save
Preview is not updating after I save
Symptoms: Changes in the editor don’t appear in the preview pane.Solutions:
- Make sure you saved the file (Ctrl+S / Cmd+S) — look for the dot indicator on the tab to disappear
- Try refreshing the preview manually using the refresh button in the preview toolbar
- For container-based projects, the hot reload may take a few seconds
- Check the browser console for JavaScript errors that might prevent rendering
File upload failed or file is missing
File upload failed or file is missing
Symptoms: Uploaded files don’t appear in the file tree.Solutions:
- Binary files (images, videos) are stored as assets — check the asset manager
- Make sure the file isn’t too large for your plan’s storage limit
- Try uploading again by dragging the file onto a specific folder in the file tree
- Check Settings > Resource Usage to verify you haven’t hit your storage limit
GitHub Issues
Push to GitHub failed
Push to GitHub failed
Symptoms: Committing or pushing changes shows an error.Solutions:
- Verify your GitHub connection in Settings > GitHub — reconnect if the token has expired
- Check that the Hiveku GitHub App still has access to the target repository
- If there are conflicts, pull the latest changes first, resolve conflicts, then push again
- Make sure the repository hasn’t been deleted or transferred on GitHub
Pull overwrote my local changes
Pull overwrote my local changes
Symptoms: Files you edited were replaced by the GitHub version.Solutions:
- Check version history for the affected files — your pre-pull versions should be saved as snapshots
- Restore the version you need from history
- In the future, always commit your local changes before pulling
Database Issues
Database connection failed
Database connection failed
Symptoms: Your app can’t connect to the database, or queries return errors.Solutions:
- Verify the database is provisioned in Project Settings > Database
- Check that your environment variables include the correct
DATABASE_URL - For BYOD (Bring Your Own Database), verify the connection string is correct and the database allows connections from Hiveku’s IP range
- Check the Hosting dashboard log viewer for connection error details
How do I restore my database from a backup?
How do I restore my database from a backup?
Go to Project Settings > Database > Backups and find the backup you want. Click Restore to replace the current database with that backup.