… The third refuses, it gives a “Unable to locate WordPress Plugin directory./Plugin upgrade Failed” error …
BitchSpot,
I don’t know if this has been answered before but I was having a similar issue and it was caused because my ABSPATH was not set correctly. To fix this, open file wordpress/wp-load.php and make the following change
/** Define ABSPATH as this files directory */
#define( ‘ABSPATH’, dirname(__FILE__) . ‘/’ ); <– comment this
define(‘ABSPATH’, ‘/u/akshay/public_html/wordpress/’); <– put your path in second argument
The above code is around line 19 in wordpress 2.7.1.
This fixed it for me:
* Enter absolute path to uploads directory (in Settings – Miscellaneous section)
* Uncheck “Organize my uploads…” check box
Hope this works for others!
Akshay