#petermolnaraaronpk, or anyone else with deep GPS-related service knowledge: is anyone aware of a relatively easy (either api calls or offline database) that could give me altitude information for lat/lon positions?
#tantekwhoa I just got a "503 Service Unavailable / No server is available to handle this request." from somewhere in the middle of my admin page
#tantekand it's not obvious to me where its coming from. huh
#tanteklike this is injected into the middle of my markup, not by any of my code (I have no code that explicitly generates this) "<html><body><h1>503 Service Unavailable</h1> No server is available to handle this request.</body></html>""
#tantekthis will take some interesting PHP debugging
#tantekand I have text that my code generated both before and after that
#tantekit was intermittent apparently, and is gone now
#tanteklike is there a PHP function that can error out by writing that to the output buffer?!?
#tantekwhat is particularly odd is that at that point in my code, there shouldn't be anything that is making an HTTP request.
#aaronpkthat’s happened to me when there have been certain syntax errors
#aaronpki don’t know exactly what kind, but sometimes it’s so bad that php doesn’t even get a chance to output an error message
#aaronpkcould also be nothing to do with your code. that error also means there are no backend processes to handle the request, such as when the server gets too many requests and all the php processes are busy
#tantekoh well, I've made a note of the conditions in case it happens again. I wonder if this is an excuse to "compile" your PHP for an "app" into a single file ;)
#aaronpkis it turned on by default in 5.5 or just shipped with 5.5?
KevinMarks joined the channel
#petermolnarshipped w/ 5.5, that's why I had a hard time trying to use apc
#petermolnarbut unlike apc, opcache doesn't have a user-entry part, it's essentially bytecode cache only, APCu is there for the memcache-like user-data option