Make WordPress Core

Changes between Version 1 and Version 2 of Ticket #61602, comment 1


Ignore:
Timestamp:
07/09/2024 02:26:15 PM (2 months ago)
Author:
mi5t4n
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #61602, comment 1

    v1 v2  
     1I tested this but could not replicate the issue. The `disk_free_space` function is suppressed and returns false on failure.
     2
     3{{{#!php
     4<?php
     5File: src\wp-admin\includes\class-wp-site-health.php
     61820:           $available_space = function_exists( 'disk_free_space' ) ? @disk_free_space( WP_CONTENT_DIR . '/upgrade/' ) : false;
     7}}}
     8
     9If you could tell us what is your environment like PHP version and WP version, that will help use replicate the issue.