Instalar plugin de wordpress sin tener que poner los datos ftp
AUTOR PREGUNTA #1
-
¿Tienes la misma pregunta? Yo también
Esto también te interesa!
PREGUNTAS SIMILARES
#2
[size=4][font=arial,helvetica,sans-serif]Agregamos el siguiente código al final de nuestro wp-config.php[/font][/size]
if(is_admin()) {
add_filter('filesystem_method', create_function('$a', 'return "direct";' ));
define( 'FS_CHMOD_DIR', 0751 );[/font][/size]
}Ahora cuando instalemos un plugin o tema no necesitaremos agregar ningún dato y se instalarán automáticamente. Tambien debes revisar los permisos de los directorios donde se instalen.