Hi, did you fix that problem?
I have the same here. As far as I see, it is already defined when it comes to the line in wp-config.php.
You can write this in order to avoid the error:
if ( ! defined( ‘FS_METHOD’ ) ) {
define( ‘FS_METHOD’, ‘direct’ );
}
To check how it is defined you can write this line before all that stuff.
echo “FS_METHOD :”.FS_METHOD;
I assume that it is set by my theme somewhere. When you take a look at wp-settings.php which is load by the wp-config.php, than you see that a lot of php files are loaded before it comes to the define in wp-config.php.
Regards,
Thomas