Web Interface Issues¶
Troubleshooting guide for web interface problems.
Quick Checks¶
# Check services
sudo systemctl status nginx
sudo systemctl status php8.2-fpm
sudo systemctl status mb-rpcd
# Check logs
sudo tail -n 50 /var/log/nginx/mailborder-error.log
sudo tail -n 50 /var/log/php8.2-fpm.log
Cannot Access Interface¶
Check Nginx:
Check SSL certificate:
Test from command line:
502 Bad Gateway¶
Cause: PHP-FPM or mb-rpcd not running
Check PHP-FPM:
Check mb-rpcd:
Restart:
500 Internal Server Error¶
Check logs:
Common causes: - PHP errors - Database connection failure - Permission issues
Fix permissions:
Login Not Working¶
Check authentication:
Test user exists:
Reset password:
Session Expired Immediately¶
Check Redis:
Check session configuration:
Restart services:
Slow Interface¶
Check resource usage:
Check database:
Optimize:
# Increase PHP workers
sudo nano /etc/php/8.2/fpm/pool.d/mailborder.conf
# pm.max_children = 50
sudo systemctl restart php8.2-fpm