Forum Replies Created

Viewing 1 replies (of 1 total)
  • Forum: Fixing WordPress
    In reply to: Deleting a Plugin

    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 1 replies (of 1 total)