Bi0[x]iD's WaY oF LiFe

Un blog a 60 pulsaciones por minuto


Errorcillos en WP-µ

Es lo que tiene el software libre. Cuando tienes un problema, en vez de quejarte, lo arreglas ;).

Por si alguien usa WordPress MU también, hemos encontrado un fallito que daba mucho por saco.

Cuando estás autentificado en el sistema, al intentar entrar en la parte de administración de algunos blogs escribiéndolo en la barra de direcciones, te mandaba a cualquier otro sitio menos a donde tú querías ir. Así que le hemos arreglado la dirección para que vaya bien :).

Un sencillo cambio. Da gusto que WordPress trabaje con variables globales de forma tan sencilla.


Just be careful, it can be annoying.

When accessing your WP-µ, you can either use wp-login.php or enter /wp-admin/

If you are not authentified, the system will work correctly. But if you are authentified, it will try to reach wp-admin/ and it will fail.

If you want to patch it:

1. Go to your wp-login.php file in your host.
2. Go to line 213, and make this change:

$redirect_to = 'wp-admin/';
$redirect_to = ABSPATH . 'wp-admin/';

It will work correctly again.


Si alguien tiene algo más que aportar, puede hacerlo desde el mismo foro o puede dejarlo en los comentarios.

EDIT:

Las cosas de escribir muy rápido, que al final no pones todo lo que tienes que poner.

Ahora, bien explicado, lo que le ocurre al WordPressµ es que si intentas entrar en cualquier blog del multiblog con un usuario que no tenga permisos, intenta llevarte de nuevo a la página /wp-admin/. Pero se olvidaron de ponerle una pequeña variable que indica cuál es el dominio en el que estamos para que lo haga bien.

Si alguien tiene algo que aportar, ahora está en el trac.


Just founded a small problem on my system.

Apache/1.3.39 (Unix) mod_perl/1.29 PHP/4.4.7 MySQL/4.1.22

I have installed a WPµ site with multiple blogs and users.

When accessing WP-µ using administrator, or without being authentified, I have no problem at all. But, if you are authentified, and try to enter to another blog where you have no rights, it will try to reach wp-admin/ and it will fail, sending you to page http://wp-admin/ (or, if your DNS works like that, http://www.wp-admin.com).

It also happens if you are not authentified at all and try to enter in other blog of the multiblog where you have not any rights with your user. It means, you try to enter in http://myblog.com/mattsblog/wp-admin/ with the user of /jacksblog/ and it will reach http://wp-admin/

I have found a simple solution.

1. Go to your wp-login.php file in your host.

2. Go to line 213, and make this change:

$redirect_to = 'wp-admin/';
$redirect_to = ABSPATH . 'wp-admin/';

It will work correctly again.


EDIT 2:

Hay que seguir mirando. Elimina el error en algunos blogs, pero no en el principal.

EDIT FINAL:

Solucionado en http://trac.mu.wordpress.org/changeset/1198 (gracias Donncha)



Una respuesta a «Errorcillos en WP-µ»

  1. Para los interesados, ya hay solución al problema. Rápida y elegante.

Deja un comentario