blackevelvet
Member
Posted 3 years ago #
Hey all, I need help! I keep getting this message when teying to install or uninstall a plugin: Warning: ftp_rawlist() [function.ftp-rawlist]: Unable to create temporary file. Check permissions in temporary files directory. in /home/blackev/public_html/wp-admin/includes/class-wp-filesystem-ftpext.php on line 203
Can Anyone help me out with a solution? It would be greatly appreciated.
blackevelvet
Member
Posted 3 years ago #
Yes, I have and no help, now im getting this error: Unable to locate WordPress directory.
medsdeb
Member
Posted 2 years ago #
There is a solution from a user here called "mcarretero" post link is here , his fix was to add this code
if(is_admin()) {
add_filter('filesystem_method', create_function('$a', 'return "direct";' ));
define( 'FS_CHMOD_DIR', 0751 );
}
to the your wp-config.php file. I had the same problem and this fixed it for me.