• Resolved carmpocalypse

    (@carmpocalypse)


    Hello,

    I am getting an error when using UpdraftPlus WordPress Backup Plugin (https://www.ads-software.com/plugins/updraftplus/). When starting the backup, during the middle of the backup process, I get an error message:

    PHP event: code E_WARNING: Zend OPcache could not compile file /home/xxxx/public_html/wp-content/cache/docket-cache/93da65a9fd00-b287b31d338a.php (line 882, wp-content/plugins/docket-cache/includes/src/Filesystem.php) (Aug 25 15:15:19)
    

    When I deactivate the plugin, the backup process works. Not sure when this started happening but it used to be fine with both plugins working together. As of late, it’s not.

    Any help would be appreciated.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Nawawi Jamili

    (@nawawijamili)

    Hi,

    Thank you for your report.

    Docket Cache will try to immediately compile the cache file into OPcache. The warning indicates that the OPcache opcache_compile_file function failed to compile the cache file.

    Normally it has no effect on operation since the cache file will be cached into OPcache when Docket Cache load the cache file.

    Btw, you can make a change to the code in includes/src/Filesystem.php at line 882.

    Original:

    try {
                    return @opcache_compile_file($file);
                } catch (\Throwable $e) {
                    nwdcx_throwable(__METHOD__, $e);
                }

    Changes:

    try {
                    @opcache_compile_file($file);
                    return true;
                } catch (\Throwable $e) {
                    nwdcx_throwable(__METHOD__, $e);
                }

    Thanks.

    Plugin Author Nawawi Jamili

    (@nawawijamili)

    Hi,

    I’m marking this thread as resolved. Feel free to open a new topic if you have further questions.

    Thanks.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Conflict with UpdraftPlus WordPress Backup Plugin’ is closed to new replies.