Marco Luzi

Results 12 comments of Marco Luzi

@gchtr This seems to be fixed in v1.0. On the other hand I noticed, that when I delete an Image in the Media Tab, the generated srcset images remain in...

@Levdbas open_basedir is used on the server the website is running on. I don't know much about that server setup and can not change it. I am using absolute path,...

If anyone has the same problem, this is a quick fix I use to manipulate the absolute template path before i pass it to `Timber::compile()` method: ```php $open_basedir = ini_get('open_basedir');...

Hey @Levdbas This is the method I use to register the gutenberg blocks. It is hooked to the `init` hook: ```php public function registerThemeBlocks() { if (file_exists(THEME_DIR.'/dist/blocks')) { // Find...

Same problem here on my MacBook Pro (2017) and MacBook Pro (2021) both running macOS 13.6.

@bvidovic1 I think it happened after the update to 13.6, but I'm not sure. I am also not quite sure wether it is an AlDente Problem or something else. I...

Hey @Levdbas I hope you are doing well. Could I have an update on this issue?

Hey @Levdbas, Thank you for the testing. I just tested it again on the server where the error was occurring, and it doesn't happen anymore. So, there were probably some...

@dkotter Just checked again. `wp core version` workes with a deprecated message. `Deprecated: file_get_contents(): Passing null to parameter #2 ($use_include_path) of type bool is deprecated in phar:///opt/homebrew/Cellar/wp-cli/2.7.1/bin/wp/vendor/wp-cli/core-command/src/Core_Command.php on line 929`....

I did some further debugging. Maybe this helps. I put some `var_dump()` and `function_exists()` inside the the safe-svg source code to compare outputs between the CLI environment and the laravel...