• BekBek20

    (@bekbek20)


    i receive this error when installing version 3

    Warning: copy(C:/wamp/www/wordpress/wp-content/upgrade/wordpress-31.tmp/wordpress/wp-admin/js/plugin-install.js) [function.copy]: failed to open stream: No such file or directory in C:\wamp\www\wordpress\wp-admin\includes\class-wp-filesystem-direct.php on line 217

Viewing 1 replies (of 1 total)
  • muddg

    (@muddg)

    Below is the code in class-wp-filesystem-direct.php
    starting with line 213 to 221
    `function copy($source, $destination, $overwrite = false, $mode = false) {
    if ( ! $overwrite && $this->exists($destination) )
    return false;

    217 >>> $rtval = copy($source, $destination);
    if ( $mode )
    $this->chmod($destination, $mode);
    return $rtval;
    }’

    It is trying to copy a file or a folder.
    This is probably a permission problem.
    Read the last entry on this support post where Dave explains how to check permissions on WAMP.

Viewing 1 replies (of 1 total)

The topic ‘i have problem when installing 3.9’ is closed to new replies.