Christian Münch

Results 282 comments of Christian Münch

@torhoehn No. It's about replacing the manual "exec" calls in the code base with a more standardized way how it's handled in Symfony applications. We have own util classes and...

@ThomasNegeli I know a develop who plans to publish a n98-magerun2 module for that purpose.

@buffcode anonymization is a complete different approach. I think it also a critical legal problem. I personally do not like such solutions. But that's a different topic.

See also: https://github.com/elgentos/masquerade

@Flyingmana It's currently possible to list all defined routes with config:dump command. ``` n98-magerun.phar config:dump frontend/routers ``` Can you explain what the command should further do?

Bug confirmed in v4.9.1

Found an issue in result of the piped command. Example: ``` mysqldump --single-transaction --quick -h'db' -u'db' --password='db1' 'db' | LANG=C LC_CTYPE=C LC_ALL=C sed -E 's/DEFINER[ ]*=[ ]*`[^`]+`@`[^`]+`/DEFINER=CURRENT_USER/g' > 'db.sql' 2>&1...

Tried with Symfony/Process component. Seems that internally any shell_exec or proc_open with piped commands is executed in OS default shell. On some system, like my ddev test environment based on...

> @cmuench Spotted this and wonder if you have come across this before? http://cfajohnson.com/shell/cus-faq-2.html#Q11 > > Might be useful, may still produce a dump file but allow you to get...

> see_no_evil Maybe it's a case of doing it in multiple processes / steps? > > ```shell > mysqldump --single-transaction --quick -h'db' -u'db' --password='db1' 'db' > db.sql.tmp > # if...