natereist

Results 8 comments of natereist

The version in use of wp-cli doesn't work with ≥ 4.6 - `PHP Fatal error: Call to undefined function apply_filters() in /srv/www/sitenamehere/htdocs/wp-includes/load.php on line 317` I believe that is coming...

I agree completely, I am trying to figure out how to add a theme to additional environments using themekit, my use case is I've started a theme in a development...

Trying to solve this here as well #420 and #456 I think it is specifically related to the S3 stream wrapper, but I just don't know how to debug that....

Two things I notice in debugging this: [`file_exists` on line 1980](https://core.trac.wordpress.org/browser/tags/5.5.1/src/wp-includes/functions.php#L1980) is returning false for the s3 resource, even if it does exists. Then subsequently [`@mkdir_p` on line 2003](https://core.trac.wordpress.org/browser/tags/5.5.1/src/wp-includes/functions.php#L2003) also...

Yes the target is that s3 URL. `wp_upload_dir` calls `wp_mkdir_p` if the create directory parameter is set to true [here](https://core.trac.wordpress.org/browser/tags/5.5.1/src/wp-includes/functions.php#L2314). That is where the error in the upload dir object...

Yes, the distros are different, but how would the issue not exist in both places if it was introduced in the code change? The two servers are getting different response...

It looks to me that the error I think is occurring is supposed to be solved in the [stream wrapper for s3](https://github.com/humanmade/S3-Uploads/blob/master/inc/class-s3-uploads-stream-wrapper.php#L294-L332) customized for this plugin. Regarding this comment, what...

it is not just the `file_exists` check, if I bypass that it fails to move the file when in the browser. I tested back to WP 5.3.1 and it the...