tijmen
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: A mess in capabilities, how to fix that?Pfew. Fixed it. It appears that the Role-Manager plugin [rather messed up in a strange old fashion] the wp_user_roles in the wp_options table. I installed a fresh version of WP on some other server and copy-pasted the messed up value with the initial one. That did the trick.
FYI, if you’re ever in this situation, this is the initial value:
a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:30:{s:13:"switch_themes";b:1;s:11:"edit_themes";b:1;s:16:"activate_plugins";b:1;s:12:"edit_plugins";b:1;s:10:"edit_users";b:1;s:10:"edit_files";b:1;s:14:"manage_options";b:1;s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:6:"import";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:8:"level_10";b:1;s:7:"level_9";b:1;s:7:"level_8";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:19:{s:17:"moderate_comments";b:1;s:17:"manage_categories";b:1;s:12:"manage_links";b:1;s:12:"upload_files";b:1;s:15:"unfiltered_html";b:1;s:10:"edit_posts";b:1;s:17:"edit_others_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:10:"edit_pages";b:1;s:4:"read";b:1;s:7:"level_7";b:1;s:7:"level_6";b:1;s:7:"level_5";b:1;s:7:"level_4";b:1;s:7:"level_3";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:8:{s:12:"upload_files";b:1;s:10:"edit_posts";b:1;s:20:"edit_published_posts";b:1;s:13:"publish_posts";b:1;s:4:"read";b:1;s:7:"level_2";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:4:{s:10:"edit_posts";b:1;s:4:"read";b:1;s:7:"level_1";b:1;s:7:"level_0";b:1;}}s:10:"subscriber";a:2:{s:4:"name";s:10:"Subscriber";s:12:"capabilities";a:2:{s:4:"read";b:1;s:7:"level_0";b:1;}}}
Forum: Fixing WordPress
In reply to: Details on sidebar when hovering on a linkI’d try the magic Pure CSS Popups:
https://www.meyerweb.com/eric/css/edge/popups/demo.html
If that’s what you’re trying to do.
Forum: Fixing WordPress
In reply to: font change?Hmm, maybe the Rich Text Editor? You can turn that off in the Your Profile screen.
Forum: Plugins
In reply to: PHP code inside posts?Hmm. That works for me. I use blabla.com/?page_id=1&thing=2&id=34322, and this in the code:
$thing = $_GET["thing"];
$id = $_GET["id"];I only use it on static pages, but that shouldn’t make a difference I think.
Forum: Plugins
In reply to: PHP code inside posts?I use RunPHP too, works great for me. What doesn’t work about it?
Forum: Plugins
In reply to: PHP code inside posts?Ah, moi aussi, je n’ecrire pas anything en Francais in a lot of années…
Forum: Plugins
In reply to: PHP code inside posts?So you think it’s better to use French than use acronyms? ??
Forum: Plugins
In reply to: PHP code inside posts?Ouch.
I’m stupid today.
Forum: Plugins
In reply to: PHP code inside posts?RTE?
Forum: Fixing WordPress
In reply to: Renamed template dir, hell breaks looseHeh, didn’t see you reaction. Thanks anyway ??
Forum: Fixing WordPress
In reply to: Renamed template dir, hell breaks looseNvm. Found the solution. It somehow flipmoded when it couldn’t find the theme, and changed the theme to ‘default’, which I don’t have. Editted wp_options to repair.
Forum: Fixing WordPress
In reply to: Excerpts in RSSBump. Sorry, still looking for an answer..
Forum: Plugins
In reply to: sidebar links modifications to links.php?Hurray! Great teamwork ??
Forum: Plugins
In reply to: sidebar links modifications to links.php?Aaah. That space between after and n is supposed to be a backslash, which won’t show up here…
Forum: Plugins
In reply to: sidebar links modifications to links.php?Hah. Got it. The code pasted weirdly here, and
$output .= "$aftern";
is supposed to be$output .= "$after n";
…$after calls your </div>, not $aftern ??