• Hello,

    I tried to delete a plugin WP Statistics, but every time I try to delete it I get this error message. Can anyone tell me how to delete this plugin?

    Warning: require(../../../wp-load.php) [function.require]: failed to open stream: No such file or directory in /home2/myecashs/public_html/blog/wp-content/plugins/wp-statistics/uninstall.php on line 2

    Warning: require(../../../wp-load.php) [function.require]: failed to open stream: No such file or directory in /home2/myecashs/public_html/blog/wp-content/plugins/wp-statistics/uninstall.php on line 2

    Fatal error: require() [function.require]: Failed opening required ‘../../../wp-load.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home2/myecashs/public_html/blog/wp-content/plugins/wp-statistics/uninstall.php on line 2

Viewing 3 replies - 16 through 18 (of 18 total)
  • Aha, makes sense.. and it worked!!
    Thanks so much JiveCo!

    You’re welcome!

    Hey, I just want to share to other members who have not succeeded in uninstalling the wp-statistic before this thread is closed.

    Watch for the error, there is written:

    Warning: require (.. /.. /.. / Wp-load.php) [function.require]: failed to open stream: ......

    And also read:

    /home2/myecashs/public_html/blog/wp-content/plugins/wp-statistics/uninstall.php on line 2

    Then we ought to do is:

    1. Open the FTP program, such as FileZilla
    2. Enter /public_html/ (in this case)
    3. Open the file /wp-content/plugins/wp-statistic/uninstall.php

    Edit this line of code (line 2 or 3):

    require ('.. /.. /.. / wp-load.php');

    becomes:

    require ('/home2/myecashs/public_html/blog/wp-load.php');

    or If your WordPress is located at the root of your website just like JiveCo said, you can change it becomes :

    require ('/home2/myecashs/public_html/wp-load.php');

    #Sorry, if my english is not well

Viewing 3 replies - 16 through 18 (of 18 total)
  • The topic ‘Deleting a Plugin’ is closed to new replies.