midori
Forum Replies Created
-
I have the opposite problem: I want some role to be able to post Pages but not posts, so I would need the possibility to use -1 to limit that. Are you still planning to do that?
Forum: Themes and Templates
In reply to: Weird spacing bug except on main page.*facepalm* THANK YOU SO MUCH! I have been looking everywhere except right there. Really, THANK YOU!
Oh, perfect. That was very quick AND working. Thank you very very much!
Forum: Plugins
In reply to: [Plugin Polyglot] Sudden errorNever mind, the new version of WP did it.
Forum: Fixing WordPress
In reply to: Upgraded to 2.6 > error in widgets.php on line 686Thank you Otto42, the _rss line did it!
Forum: Installing WordPress
In reply to: Upgrade failed from 2.2 to 2.7THANK YOU! It took me two hours to try all the non working solutions, and 10 seconds to use yours that solved everything, so thank you for taking time to write what was the solution.
Forum: Fixing WordPress
In reply to: Fatal Error – Memory size exhaustedNope, GD2 is compiled, according to the phpinfo. As for the plugins, having no plugin or just the “Get recent comments” does not change anything. I am sending a mail to the hosting support to see what they can do for the version of PHP. Thanks both for the ideas.
Forum: Fixing WordPress
In reply to: Fatal Error – Memory size exhaustedHi there,
I get the same problem with the “upload” part of the admin, it’s apparently the miniature creation that causes problem, because the image itself is uploaded, and NO, I cannot augment memory being on a shared hosting. Did someone at least try to find another solution than “read the other threads” (that I did) and “augment the memory” (that I can not) ?
Forum: Installing WordPress
In reply to: RSS Comments feed will not validate because of pubdateAll right. I found the answer by myself.
For unknown reason, the new version of the comments feed behaved like the older version, so the answer found here: http://codex.wordpress.org/Customizing_Feeds is valid.Forum: Installing WordPress
In reply to: RSS Comments feed will not validate because of pubdateHuuu, you do not seem to understand my problem:
– I leave WordPress to take care of “producing” the feeds.
– For some reason, a perfectly nice GMT date out of the db (2006-08-28 23:06:37) appears correctly in the blog itself, but is turned is something weird by wp-rss2.php, namely Tue, 30 Nov 2010 00:00:00 +0000
– It is the reason for not validating, but I would rather understand why the feeds turns the normal date into that weird date
(btw, I suspect some localisation reasons, since I have a french speaking wordpress…)Forum: Plugins
In reply to: Problem with Moody plug-inI solved that by modifying the plugin itself.
function dispmoody($afficher = 0, $avant = '', $apres = '', $textemood = 'Mood: ') {(to set between <?php and ?> and the plugin header).
$mood_icon_dir = $curpath . "/wp-content/plugins/moods/";
$mood_icon_ext = '.gif';
$values = get_post_custom_values('mood');
$mood = $values[0];
if(!empty($mood)) {
$prepamood = ' ';
$prepamood .= $avant.'('.$textemood.': ';
$prepamood .= '<img src="' . get_settings('siteurl') . $mood_icon_dir . $mood . $mood_icon_ext . '" alt="' . $mood . '" title="' . $mood . '" />)'.$apres;
}
if ($afficher == 0) { return $prepamood; } else { echo $prepamood; }
}And in your index / single / page / … add:
<?php polyglot_other_langs(1, 'before', 'after', 'texte'); ?>
(first, 1, being for display, if not, 0 for return; mood texte, for example set to ‘Mood: ‘ would be displayed before the icon).Midori 🙂
Forum: Installing WordPress
In reply to: Polyglot and Get Recent comments clashAll right, more information.
Apparently, the comment has disapeared because the post suddenly went to the drafts.
Is that a bug someone here already had with polyglot ? It did so with another post, that is why I notcied.
I modified the post, and when I asked for “save and continue editing, it was set to draft without me asking for that.
So, anyone ?
Forum: Installing WordPress
In reply to: Polyglot and Get Recent comments clashhmm… UP ? (waiting 10 houres is enough, I hope…)
Forum: Themes and Templates
In reply to: What file needs editing to insert my own design?wp-layout.css. And the css of the admin part. And perhaps a bit index.php if need be.
Forum: Fixing WordPress
In reply to: My posts begin with “<<<<<…” and chop off textThose are & lt; except for one. I suspect something you modified somewhere, or a plugin… cause it seems to appear *in* the loop… but I can not help more since I can not see (just as it should be for PHP) the real source of it….