• Hi, trying this object cache solution on a server without memcached or redis available, I found a huge amount of warnings in the PHP log file related to file management/deletion.

    Like:

    
    [30-Aug-2020 11:21:35 UTC] PHP Warning:  unlink(/home/lessgrnb/public_html/wp-content/cache/object//fffeaba2/51161fc8/77855c4e/59b4486f/.object): No such file or directory in /home/lessgrnb/public_html/wp-content/object-cache.php on line 51
    [30-Aug-2020 11:21:35 UTC] PHP Warning:  rmdir(/home/lessgrnb/public_html/wp-content/cache/object//fffeaba2/51161fc8/77855c4e/59b4486f): No such file or directory in /home/lessgrnb/public_html/wp-content/object-cache.php on line 56
    [30-Aug-2020 11:21:35 UTC] PHP Warning:  rmdir(/home/lessgrnb/public_html/wp-content/cache/object//fffeaba2/51161fc8/77855c4e): No such file or directory in /home/lessgrnb/public_html/wp-content/object-cache.php on line 56
    [30-Aug-2020 11:21:35 UTC] PHP Warning:  rmdir(/home/lessgrnb/public_html/wp-content/cache/object//fffeaba2/51161fc8): No such file or directory in /home/lessgrnb/public_html/wp-content/object-cache.php on line 56
    [30-Aug-2020 11:21:35 UTC] PHP Warning:  rmdir(/home/lessgrnb/public_html/wp-content/cache/object//fffeaba2): No such file or directory in /home/lessgrnb/public_html/wp-content/object-cache.php on line 56
    

    Or:

    
    [30-Aug-2020 14:01:30 UTC] PHP Warning:  rmdir(/home/lessgrnb/public_html/wp-content/cache/object/): Directory not empty in /home/lessgrnb/public_html/wp-content/object-cache.php on line 56
    

    Or:

    
    [30-Aug-2020 14:02:22 UTC] PHP Warning:  mkdir(): File exists in /home/lessgrnb/public_html/wp-content/object-cache.php on line 120
    

    Does this indicate a problem?

The topic ‘Many PHP warning in log’ is closed to new replies.