TV Quiz PhD

Results 13 comments of TV Quiz PhD

> There's just one problem with this: although it typically is, `localhost` does not have to be assigned to 127.0.0.1; it can be assigned to other addresses within that block...

In my nginx logs, something looks a bit off with the number of colons/protocols in this "upstream" request: ``` upstream: "fastcgi://unix:/run/php/php-fpm.sock:" ```

Thank you so much for your reply! 
^M is how vim displays 0xD, the carriage return character. It shows up when people or software use both types of return characters....

I'm doing everything as root, and I've specified that MODX should use the root user and password. See the core/config.inc.php: ``` $database_user = 'root';^M $database_password = '************';^M ``` Reading your...

I’ve created a new MySQL user with ALL PRIVILEGES, and I updated my `core/config/config.inc.php` with the new username and password. I’lll keep trying things. Maybe the setup needs to be...

The issue seems to be [with fastcgi and PHP](https://stackoverflow.com/questions/15423500/nginx-showing-blank-php-pages) I will update if I find a solution— then I’d make a PR against the modx nginx docs if I find...

I followed [nginx fastcgi instructions](https://www.nginx.com/resources/wiki/start/topics/examples/phpfcgi/) to some success. My nginx config location looks like this now: ``` location ~ [^/]\.php(/|$) { fastcgi_split_path_info ^(.+?\.php)(/.*)$; if (!-f $document_root$fastcgi_script_name) { return 404; }...

I’ve dumped ``` ini_set('display_errors', '1'); ini_set('display_startup_errors', '1'); error_reporting(E_ALL); ``` into index.php, and now I see this when I access domain.example.com/manager ``` Warning: Trying to access array offset on value of...

Should I open an issue at https://github.com/modxcms/xpdo ? Here is the [line of the error](https://github.com/modxcms/xpdo/blob/31ea925f130ba06a7863751a49fa0876eab95501/src/xPDO/Om/xPDOObject.php#L251) It’s trying to index errorInfo, which is a Boolean. possibly related: https://github.com/modxcms/xpdo/issues/137