CubicleSoft
                                            CubicleSoft
                                        
                                    FYI, I switched over to this script: https://github.com/Fleshgrinder/nginx-sysvinit-script From an active contributor on PHP internals and an officially recognized repo from the nginx side of things. Also, the script actually...
No. This issue has not been fixed. It's also probably not related to whatever you are running into. It's also possible that this issue is a non-issue due to how...
The name limitation is kind of to be expected. On Windows, you are limited to what Windows named objects allow (see the Microsoft API documentation for CreateMutex, CreateEvent, etc.). On...
I don't see an obvious problem with the approach. That's the whole point of reader/writer locks. Many readers can be accessing at one time. When a writer needs to write,...
Max requests should have nothing to do with it. Those are clean startups/shutdowns of PHP core. The max requests option is to deal with memory leaks in some extensions/libraries. Being...
That sounds odd. If you dump the `$_COOKIE` superglobal from a test PHP script on an affected device that encounters the error, what cookie keys does the server see? ```
Those are three different issues. The first three are not setting/accepting the `sso_server_id2` cookie before the redirect. The fourth one involves someone revisiting the validation page after completing validation (e.g....
Another thought: How about PHP error/warning logs? If PHP is emitting headers BEFORE setting the cookie for whatever reason, then the cookie won't be set/sent. Did you mean to close...
The styles/layout are all managed in CSS. Medium icon view, which is what this widget uses, displays slightly more items on a single screen than a detail/list view can. Detail/list...
Yes. You can definitely mock responses back into the widget. While the most obvious integration is with a server, there is no obligation/requirement to use server-side communications or even the...