Daniel Wendler

Results 13 comments of Daniel Wendler

> The closing brace for the class must go on the next line after the body That one is obvious, you have 2 blank lines but it expects 0 blank...

I am getting errors like `EditorConfig: "windows-1252" is not a valid value for charset for file xy.html` in phpStorm. Hasn't this been fixed yet?

Not beeing able to set common encodings makes a big part of .editorconfig obsolete. We could open a bug at [Jetbrains](https://youtrack.jetbrains.com/issues?q=tag:%20EditorConfig) but it doesn't make sense until .editorconfig "officially" is...

@xuhdev Thank you for your reply. I fully understand the logistical problem. Technically it's rather easy because mainstream encodings like windows-1252 are supported in every editor I know, phpStorm, vim,...

We are using a lot of characters from windows-1252 which are not represented the same in latin1, like tildes and several different dashes, it's not an option :-/ But how...

Just because the internal identifiers for encodings differ from editor to editor is not a reason to not support them. This can't be a real problem, put up a mapping,...

After thinking more about it, maybe I simply need to reorder my states to always return to the root state machine if it can't fulfill the current nested states. That...

This problem made me very curious and I found out why it's not working. Missing in the generated `default.conf` from the default template: fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; Also missing something like...

@tkw1536 in the config is no `try_files $uri $uri/ /index.php` and in `fastcgi_params` or the default.conf there is no `fastcgi_param SCRIPT_FILENAME $request_filename;`

@songhanpoo > fastcgi not work with wordpress-fpm. My previously mentioned line of config with `try_files` should contain arguments, at least for wordpress: try_files $uri $uri/ /index.php?$args; @tkw1536 it should be...