PluginProbe
Passster – Password Protect Pages and Content / 4.3.16
Passster – Password Protect Pages and Content v4.3.16
4.3.16 4.3.15 4.3.14 4.3.12 4.3.13 4.3.11 4.3.10 4.3.9 4.3.8 4.3.7 4.3.6 4.3.5 trunk 3.5.4 3.5.5.2 3.5.5.8 3.5.5.9 4.0 4.1.4 4.2.10 4.2.11 4.2.12 4.2.13 4.2.14 4.2.15 All 48 releases
← All changes | inc/freemius/templates/debug.php +9 -1 4.3.54.3.16 View file →
@@ -257,8 +257,12 @@
257 257 'key' => 'WP_FS__DIR',
258 258 'val' => WP_FS__DIR,
259 259 ),
260 260 array(
261 + 'key' => 'DISABLE_WP_CRON',
262 + 'val' => defined( 'DISABLE_WP_CRON' ) ? ( DISABLE_WP_CRON ? 'true' : 'false' ) : 'Not defined',
263 + ),
264 + array(
261 265 'key' => 'wp_using_ext_object_cache()',
262 266 'val' => wp_using_ext_object_cache() ? 'true' : 'false',
263 267 ),
264 268 array(
@@ -281,9 +285,13 @@
281 285 <tr<?php if ( $alternate ) {
282 286 echo ' class="alternate"';
283 287 } ?>>
284 288 <td><?php echo $p['key'] ?></td>
285 - <td><?php echo $p['val'] ?></td>
289 + <td><?php echo $p['val'] ?><?php
290 + if ( 'DISABLE_WP_CRON' === $p['key'] && 'true' === $p['val'] ) {
291 + echo '<p><small><strong>Freemius SDK’s sync cron jobs will not run unless an alternative server-side cron is set up.</strong></small></p>';
292 + }
293 + ?></td>
286 294 </tr>
287 295 <?php $alternate = ! $alternate ?>
288 296 <?php endforeach ?>
289 297 </tbody>