Martin Blumenfeld
Forum Replies Created
-
Is there a guide showing how to properly set up W3TC with multi-site. I understand having to activate it individually on each blog, though then each blog starts throwing config and .htaccess warnings at the top of the page. Or do you just ignore those?
Thanks for the reply!
How do you properly set up the .htaccess file? There are site specific paths in the default .htaccess config settings and people just say to do it manually, but don’t dig into it in more detail. Do I need to make sure that all sites have the exact same settings?
Forum: Plugins
In reply to: [Sniplets] [Plugin: Sniplets] New post bugThere are two fixes for this issue from what I’ve seen. One uses FolioVisions update as described above. WordPress changed the URL for new posts to “post-new.php”. So that’s one. Another change has to be made to the admin.js file in the resources folder of the Sniplets plugin.
If you replace lines 231 to 239 with these line it’ll get your edit page working. It won’t however add in the sniplets button to your toolbar. I’m not sure what button the original developers code is trying to clone. Then again we have a new solution and won’t require sniplets in our next site release.
if (but) { while (but.nodeType != 1) but = but.previousSibling; but = but.cloneNode (true); toolbar.appendChild(but); but.value = 'sniplet'; but.title = edButtons.length - 1; but.onclick = function () {edInsertTag(edCanvas, parseInt(this.title));} but.id = "ed_sniplet"; }Forum: Networking WordPress
In reply to: Roles listing empty on MU admin pagesMy issue ended up being that I imported my wordpress tables from a local single install into my WordPress network. I updated the table names to include the ID for the site, but I missed updating the ‘wp_user_roles’ attribute in the options tables. So renaming that to “mwp_6_user_roles”, with “mwp_6_” being the prefix for my other site tables, the roles started to work.
Forum: Networking WordPress
In reply to: Roles listing empty on MU admin pagesHow did you figure out your options table was corrupted and how did you fix it?