Mark Jaquith
Forum Replies Created
-
Where does it place its menu? Can you show me a screenshot?
Forum: Alpha/Beta/RC
In reply to: Theme name, author, description not displaying correctly in 3.2-RC2zoonini —
The problem is that your newline characters are CR (
\r) instead of LF (\n). See this Wikipedia entry for more information.To fix it (tested on Mac OS X), open up a Terminal window, and do the following:
cd wp-content/themes/YOUR-THEME-DIR/ cat style.css | tr '\r' '\n' > style-fixed.cssThat’ll replace them (then just move
style-fixed.csstostyle.css). Once that’s done, I was seeing the correct information in WordPress.One of your development tools is doing something naughty… I suspect it was Dreamweaver. Textmate wouldn’t do this (but nor would it fix it if it was previously done).
Forum: Alpha/Beta/RC
In reply to: Comments don't workI’m still not sure why the default permalink doesn’t work.
The
?p=123style permalinks don’t work? Or what did you mean by “default”?Forum: Alpha/Beta/RC
In reply to: Theme name, author, description not displaying correctly in 3.2-RC2zoonini —
Can you zip up your theme (or at least the style.css file) and put it somewhere for download?
Also, can you post the output of
ls -lain that theme’s directory?Forum: Alpha/Beta/RC
In reply to: RC3.2 Menus still crippledmanicolaus —
The WordPress core team is quite aware of this issue, and it is absolutely something that needs to be solved. It is an issue with how the menus are saved. Too much data is passed back. It takes a lot of memory and computation time, and many servers are configured to have limits on the number of vars you can POST in one request. Unfortunately, we just couldn’t reach a consensus on the best way to solve it in time for WordPress 3.2. So for this release, it will have to remain a known issue that menu saving performance degrades or generates errors beyond a certain point (which may vary from server to server).
The Trac ticket has been tagged as 3.3-early, which means we’ll put it as high priority early in the 3.3 development cycle.
I appreciate your feedback and for holding us to a high standard! This is how things get better.
Forum: Plugins
In reply to: [Monitor Pages] Cannot redeclare submit_button() in Monitor Pages 0.4My mistake. Pushed a fix for 3.0.x compat and inadvertently broke 3.1.x.
I just pushed version 0.4.1 which works in both.
Thanks for the report!
Forum: Plugins
In reply to: the_content is wrecking the loop?I don’t know what’s going on there, but you should probably use a better method of changing the posts per page. By doing it the way you’re doing it, you’re creating a second query.
Try a plugin like this: http://wordpress.org/extend/plugins/cbnet-different-posts-per-page/
Forum: Plugins
In reply to: How to install Hotfix plugin on localhost?Sorry, yeah, that tool doesn’t work with localhost. It connects to your blog to look for what directory WordPress is in.
Forum: Alpha/Beta/RC
In reply to: WP 3.1 breaks RSS customization via exclude_category?Verified. Unintentional, and a bug. Moving it over to Trac.
Forum: Plugins
In reply to: [Login Logo] [Plugin: Login Logo] triggering fatal errorWordPress 3.2 will require PHP 5.2+. Should start thinking about getting your host to upgrade you now.
Forum: Networking WordPress
In reply to: Multisite with domain mapper and SSLThe redirection happens at the beginning of wp-login.php, and I don’t know if there’s any way for domain mapping or any other plugin to modify this behavior.
There is:
$location = apply_filters('wp_redirect', $location, $status);The plugin might be able to hook in there and redirect to the appropriate mapped domain.
Forum: Alpha/Beta/RC
In reply to: Internal Linking ?Dave — can you provide a screenshot of the link dialog on your site?
Forum: Plugins
In reply to: [Hotfix] [Plugin: Hotfix] How will Hotfix handle fixes through the future?I think a lot more people are likely to enable this plugin, forget about it, and then get a lot of fixes that don’t get the usual vetting and testing.
Well, for now, they have to manually update the plugin. That’s their opt-in. And I’m providing update notices, which appear in WordPress. So they’ll know what the new version contains.
If people have to opt in to individual fixes, it’s likely that they won’t. They won’t know to look, and they might not know if the bug they’re experiencing is actually the one that is described.
I think more benefit can come from enabling all the hotfixes for their particular version automatically. I don’t plan to do a lot of these hotfixes.
Forum: Fixing WordPress
In reply to: You are using a development version (3.1-RC4).comemerda2 — I wasn’t able to reproduce. The pt_PT version installed fine, and I wasn’t unexpectedly updated to 3.1-RC4.
Forum: Fixing WordPress
In reply to: WP wysiwyg editor disappearedHave you cleared your browser cache?