Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End WordPress Plugin Upgrade Re: WordPress Plugin Upgrade

#79082
Timoslav
Member

Hi guys,

solved it by myself.

After editing wp-config.php with following code at the end of the file:

Code:
if(is_admin()) {
add_filter(‘filesystem_method’, create_function(‘$a’, ‘return “direct”;’ ));
define( ‘FS_CHMOD_DIR’, 0751 );
}

Now, plugins update despite WP installation in sub-dir.

Greetz!