Dominik Schilling
Forum Replies Created
-
Forum: Plugins
In reply to: [Public Post Preview] Checkbox is deactivated after post i is saved@intertex Looks like the screencast is missing.
Forum: Plugins
In reply to: [Public Post Preview] Preview Links no longer active after publishedHello, can you provide some steps so I can try to reproduce this issue? It seems to work fine for me. See also https://github.com/ocean90/public-post-preview/blob/master/public-post-preview.php#L496.
Forum: Plugins
In reply to: [Public Post Preview] Nonce Time Cut in HalfThat’s correct and is the same what WordPress does, see https://developer.wordpress.org/reference/functions/wp_nonce_tick/ and https://developer.wordpress.org/reference/functions/wp_verify_nonce/.
The configurator should still work since my plugin wasn’t changed that much since then.
Forum: Fixing WordPress
In reply to: Any way to disable Connection Information?Hi,
yes, there are a few constants like
FTP_USERorFTP_PASSwhich you can add to your wp-config.php file. You can find the constants and their usage on this codex page.Forum: Fixing WordPress
In reply to: Warning: ini_get_all() has been disabled for security reasonsTo provide a fix for this issue I’m interested in a few details. If you could follow these steps that would be really helpful:
1) Upload a file named
disabled-functions.phpwith the following content into the root directory of your WordPress install (or download it here):<?php echo '<pre>'; var_dump( phpversion() ); var_dump( ini_get( 'disable_functions' ) ); echo '</pre>';2) Open the file in your browser (example.org/disabled-functions.php, example.org is the URL of your site).
3) Copy and paste the output in a comment in this thread.Thanks!
AT THE SAME TIME trying to Update my WordPress (4.6 RC2).
I’m curious how you updated WordPress to RC2. Are you using the WordPress Beta Tester plugin or did you upload the files via FTP?
Forum: Alpha/Beta/RC
In reply to: 4.6 RC1 & WP Multi-Network 1.7.0Forum: Alpha/Beta/RC
In reply to: Inline Plugin Updates – no way to see error messagesHowever, it doesn’t actually report the same problem. That ticket reports an issue where the failure is never reported at all (the ‘updating…’ keeps spinning).
@danlester As already mentioned by Marius, the underlying issue is the same. The ticket now has a patch. I’m not sure how familiar you are with core development but maybe you can apply the patch and test if it the results are now better?
Forum: Alpha/Beta/RC
In reply to: passing a single taxonomy as a string to WP Term Query returns errorThanks! A ticket has been created to track it: https://core.trac.wordpress.org/ticket/37545.
Forum: Alpha/Beta/RC
In reply to: passing a single taxonomy as a string to WP Term Query returns errorHello @endocreative, thanks for your report. Can you please provide the code which you’re using? Thanks!
Forum: Alpha/Beta/RC
In reply to: Inline Plugin Updates – no way to see error messagesHi @danlester, which error messages are you missing? If a detailed messages for a failed update process is available your should be able to see it in an inline notice in the table.
Forum: Alpha/Beta/RC
In reply to: wp_http multiple request exampleHello @camaran, it’s currently not possible to make multiple request through the WP_HTTP API, see https://make.wordpress.org/core/2016/07/27/http-api-in-4-6/ and https://core.trac.wordpress.org/ticket/37459 for more info.
Forum: Alpha/Beta/RC
In reply to: Ordering of DNS Prefetch & PreconnectThe new DNS Prefetch & Preconnect link tags currently load after css is enqueued. They should load before any css.
Thanks for the hint! This makes perfectly sense so I created a ticket: https://core.trac.wordpress.org/ticket/37317
Forum: Alpha/Beta/RC
In reply to: Duplicate/unwanted loading of plugin textdomaini know how filters and actions work.
Well,
apply_filters( 'override_load_textdomain', true, 'wp-photo-album-plus', '' );is definitely wrong.Forum: Alpha/Beta/RC
In reply to: Duplicate/unwanted loading of plugin textdomain@opajaap Please take a look at https://developer.wordpress.org/plugins/hooks/filters/ on how to use actions/filters.