Blog Sections Open
Fixing DBAPI Connection Failures When localhost and IP Behave Differently
How to diagnose DBAPI connection problems when `localhost` and the server IP do not behave the same way.
Database connection issues under FastCGI can become confusing when the same credentials behave differently depending on whether the host is specified as localhost or an IP address. That difference is not cosmetic: it can change socket behavior, resolution paths, and how the runtime reaches MySQL.
The practical takeaway is that DBAPI connection testing should include the transport assumption itself. If one host form fails while another works, the problem may be in how PHP and the server stack resolve local database access rather than in the username or password alone.
This is a good Best Practices topic because those environment-specific mismatches are common on older Evolution stacks and can waste a lot of debugging time if you treat them as ordinary credential errors.
Fixing HTTPS Captcha and veriword Issues on Hosted Evolution CMS Sites
Why captcha or veriword assets can break under HTTPS on some hosts and how to debug mixed protocol or path assumptions.
Fixing AjaxSearch Breakage When FileSource Points to a Missing Snippet File
How a FileSource-based snippet workflow can break manager editing when the referenced AjaxSearch file no longer exists.