Archive for the 'wordpress' Category
There is an old chestnut joke doing about the memos exchanged between pilots and ground crews…
- Problem: Left main tire almost needs replacement.
Solution: Almost replaced left main tire - Problem: Test flight OK, except autoland very rough.
Solution: Autoland not installed on this aircraft. - Problem: Something loose in cockpit.
Solution: Something tightened in cockpit. - Problem: Dead bugs on windshield.
Solution: Live bugs on backorder. - Problem: Autopilot in altitude-hold mode produces a 200-fpm descent.
Solution: Cannot reproduce - Problem on ground.
- Problem: Evidence of leak on right main landing gear.
Solution: Evidence removed. - Problem: DME volume unbelievably loud.
Solution: DME volume set to more believable level. - Problem: Suspected crack in windscreen.
Solution: Suspect you’re right. - Problem: Aircraft handles funny.
Solution: Warned Aircraft to straighten up, fly right, and be serious. - Problem: Radar hums.
Solution: Reprogrammed radar with words. - Problem: Mouse in cockpit.
Solution: Installed cat.
In programming it’s sometimes necessary to adopt the same attitude, viz don’t solve the problem, just silence the error message. Fortunately all error messages are enclosed in named divs so they can be silenced by editing the stylesheet.css of a wordpress theme;
.wpdberror {
display: none;
}
.error {
display: none;
}
The text will still be sent, but a brower will not display it.
Continue reading ‘Wordpress error messages’
Wordpress K2 Google bomb
Published March 5th, 2006 in google bomb, wordpress, k2 and uncategorized. 0 Commentsfooter.php reads
<br class="clear" />
</div> <!– Close Page –>
<hr />
<p id="footer"><small>
<?php bloginfo(’name’); ?> is powered by <a href="http://wordpress.org"
title="Where children sing songs of binary bliss">WordPress <?php
bloginfo(’version’); ?></a> and <a href="http://binarybonsai.com/wordpress/k2/"
title="Is to WordPress what math is to reality; hard to
understand.">K2 <?php if (function_exists(’k2info’)) {
k2info(version); } ?></a> by <a href="http://binarybonsai.com"
title="Michael Heilemann">Michael</a> and <a href="http://chrisjdavis.org"
title="Chris J Davis">Chris</a><br />
<a href="<?php bloginfo(’rss2_url’); ?>">RSS
Entries</a> and <a href="<?php bloginfo(’comments_rss2_url’);
?>">RSS Comments</a><!– <?php echo $wpdb->num_queries; ?> queries. <?php
timer_stop(1); ?> seconds. –>
</small></p><?php /* Try. to understand */ ?>
<?php do_action(’wp_footer’); ?>
</body>
</html>

Comments