Urban Giraffe Support | Plugins
User Permissions v0.8.1 crashes WP 2.6
Hi there,
I just updated WP to version 2.6 from SVN and now found out that User Permissions v0.8.1 crashes it. The only thing I get on the normal blog is a white page, the administration area works as usual.
Because I do have a lot of secret posts I had to put my blog into maintenance mode, thus disabling all access to all posts. If there is anything I can do to help fix this problem, I will be happy to assist, just let me know.
Thanks,
Lars
Responses
Posted 3 months ago by Member
Hi Lars, try to understand if the problem is related to the PHP configuration value: "magic_quotes_gpc".
I found that the permissions are saved back-slashed, so the wp-content/plugins/user/models/permissions.php (function get) doesn't unserialized correctly the meta_value (row 49 circa).
I had:
$data = unserialize ($row->meta_value);
with this it worked for me:
$data = unserialize (stripslashes($row->meta_value));
bye
Posted 3 months ago by Member
Hi sandaniele,
I just got to try it and it works perfectly for me so far.
Thanks very much,
Lars
Posted 3 months ago by Key Master
I've added this to the plugin.
Reply
You must log in to post.