-
-
Notifications
You must be signed in to change notification settings - Fork 3
FAQ
- Open the browser console (F12 → Console) and check for errors
- Make sure PHP is running and
api/index.phpis reachable: visithttps://your-server/dispensa/api/index.php?action=get_settings— it should return JSON - Check your web server error log:
tail -f /var/log/apache2/error.log
Camera access requires HTTPS. On plain HTTP, browsers block getUserMedia().
- Set up HTTPS with Let's Encrypt, Caddy, or a self-signed certificate
- On Android, you can also add a security exception in Chrome:
chrome://flags/#allow-insecure-localhost
chmod 755 data/
chown -R www-data:www-data data/docker compose logs evershelfUsually a permission issue on the mounted data/ volume. Try:
docker compose down
rm -rf data/
mkdir data/
docker compose up -d- Check that
GEMINI_API_KEYis set in.env - Verify the key is valid at aistudio.google.com
- Check that you haven't exceeded the free tier quota (15 req/min, 1500 req/day)
- Look for errors in the PHP error log
This is usually a Gemini API timeout. The app streams results via SSE — if the server PHP timeout is too low, the stream is cut short. Increase max_execution_time in php.ini:
max_execution_time = 120Add your Bring! credentials to .env:
BRING_EMAIL=your@email.com
BRING_PASSWORD=yourpassword- Verify your credentials are correct by logging into getbring.com
- Check for rate-limit errors in the PHP error log — Bring! has API limits
- Confirm the gateway app is running and shows the WebSocket URL
- Check the Gateway URL in EverShelf Settings matches exactly
- Make sure both the Android device and the EverShelf server are on the same network
- Look at the scale status indicator (⚖️) in the header — "disconnected" means no WebSocket connection
- The auto-fill only triggers for products with unit
gorml - Make sure you tapped "⚖️ Leggi bilancia" first to activate the scale modal
- The weight must stabilize (stay within 10g) for the countdown to start
- Wake up the scale (step on it or press its button)
- Make sure Bluetooth and Location permissions are granted to the gateway app (Location is required by Android for BLE scanning)
- Restart the gateway app
- Make sure the tablet is on the same Wi-Fi network as the server
- Try entering the URL manually instead of using auto-discovery
- Check that the server responds on the expected port (80/443/8080/8443)
The dialog shows the exact failure code. Common causes:
| Code | Cause | Fix |
|---|---|---|
STATUS_FAILURE (1) |
Generic install failure — often OEM restriction | Enable "Install from unknown sources" for the kiosk app in Android Settings |
STATUS_FAILURE_CONFLICT (3) |
Signature mismatch with existing install | Uninstall the old gateway app, then retry |
STATUS_FAILURE_STORAGE (6) |
Not enough storage | Free up space on the device |
The ✕ button is injected into the header by the kiosk app. If the web app's header is covered or the page failed to load, try the hard refresh (↻) button. If neither is visible, triple-tap the page title area to access the developer settings.
Restart the device. Screen pinning is released on reboot.
The version is cached by the browser. Do a hard refresh:
- Desktop:
Ctrl+Shift+R/Cmd+Shift+R - Android: tap the ↻ button (kiosk) or clear site data in Chrome settings
The log shows the last 50 entries by default. Tap "Carica altri" to load more. Entries older than the database creation date won't appear.
The undo window is 24 hours. For older operations, manually correct the inventory via the Edit function on the affected product.
EverShelf uses a fingerprint to deduplicate — the same error from the same device won't create a new issue within 24 hours. If you're seeing duplicates, check the data/rate_limits/ folder and clear old files.
- Open an issue: github.com/dadaloop82/EverShelf/issues
- Email: evershelfproject@gmail.com
- Try the demo: evershelfproject.dadaloop.it/demo
When reporting a bug, include:
- EverShelf version (shown in the header as
v1.x.x) - Browser and OS
- Steps to reproduce
- Any error messages from the browser console (F12)