dylan
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Is WordPress “Out of memory”?I did contact my host, and after a long conversation with them, they determined that they can’t help me. Their only support for wordpress is setup. They installed a fresh setup, and that worked, so I’m on my own.
I did have the google sitemaps plugin installed. Even though it is disabled, is it possible that the plugin is still using memory?
Forum: Fixing WordPress
In reply to: Is WordPress “Out of memory”?I am running no plugins at all, just to be safe.
Forum: Fixing WordPress
In reply to: block Searchbots?put this meta tag in between the
<head>and</head>tags in your html<meta name="robots" content="noindex,nofollow" />Forum: Fixing WordPress
In reply to: del.icio.us daily blog posting feature support?It really looks like somebody spammed this conversation.
Anyway, I’m looking for a way to integrate del.icio.us with wordpress links, not wordpress posts. Has anyone encountered anything that helps do this. any ideas?
Forum: Plugins
In reply to: Del.icio.us intergrationI would think that the best way to integrate del.icio.us into wordpress would be to get the links into wordpress links. You remember wordpress’ links functionality, don’t you? Why doesn’t it seem like any of the available plugins can do this? Links are links, and posts are posts, I think, so why do del.icio.us links become posts? — or just a list on the sidebar, while the links portion of your blog’s database languishes in obscurity.
Is there a plugin out there that works along these lines?
Forum: Fixing WordPress
In reply to: Displaying sibling pages with wp_list_pages.
<?php /* Creates a menu for pages beneath the level of the current page */
if (is_page() and ($notfound != '1')) {
$current_page = $post->ID;
while($current_page) {
$page_query = $wpdb->get_row("SELECT ID, post_title, post_status, post_parent FROM $wpdb->posts WHERE ID = '$current_page'");
$current_page = $page_query->post_parent;
}
$parent_id = $page_query->ID;
$parent_title = $page_query->post_title;if ($wpdb->get_results("SELECT * FROM $wpdb->posts WHERE post_parent = '$parent_id' AND post_status != 'attachment'")) { ?>
<div class="sb-pagemenu"><h2><?php echo $parent_title; ?> Subpages</h2>
<ul>
<?php wp_list_pages('sort_column=menu_order&title_li=&child_of='. $parent_id); ?>
</ul><?php if ($parent_id != $post->ID) { ?>
<a href="<?php echo get_permalink($parent_id); ?>">Back to <?php echo $parent_title; ?></a>
<?php } ?>
</div>
<?php } } ?>Forum: Plugins
In reply to: Page excerpts plugin?Why isn’t it a default ability to edit the excerpt of a page?
Forum: Plugins
In reply to: Popularity Contest Plugin and WordPress, 2.1I found the latest version of the plugin on the WP Plugins Site, and it seems to be working for me. Yay!
Forum: Requests and Feedback
In reply to: Why use raquo as a page title separation?I found these, sourtesty of the W3C
http://www.w3.org/TR/html4/sgml/entities.html<!ENTITY isin CDATA “∈” — element of, U+2208 ISOtech –>
<!ENTITY notin CDATA “∉” — not an element of, U+2209 ISOtech –>
<!ENTITY ni CDATA “∋” — contains as member, U+220B ISOtech –>
<!ENTITY sub CDATA “⊂” — subset of, U+2282 ISOtech –>That last one would be useful to show that a category is contained within a larger structure.
Forum: Requests and Feedback
In reply to: Why use raquo as a page title separation?thenerdsangle
So, the chraracter I mentioned (code number 1028 ?) is for showing that X is contained by Y? Or did you only mean that it is only the mirror image of the character you mentioned(#8715)?
If not, is there a related symbol for “is contained by”?
It would be nice if there were, so that titles could be listed in either order: title first or section first.
Forum: Requests and Feedback
In reply to: Why use raquo as a page title separation?I’ve had this thread in the back of my mind for some time. The “@” symbol caught on like gangbusters, for showing the relationship between a user and a domain — but there’s no similarly ubiquitous symbol for showing the relationship between a document/post and a domain/section.
I asked some mathematically inclined friends, in case they knew of a way of writing such relationships, and they said, “oh sure: Є”
Its either html entry & # 1 0 2 8 ; or & # 7 4 5 3 ; (i’ve had to space them out because neither backticks nor < code > seems to be working)
This symbol, when placed between x and y is used to say that x is part of y, where y is a set that contains y.
I thought it would be a good character to use in place of the one that is technically a quote.
Forum: Fixing WordPress
In reply to: WP 2.0 broke my permalink structureMoshu, that fixed it for me, too.
From http://trac.wordpress.org/changeset/3371 I downloaded the updated functions-post.php and
classes.php and installed them into /wp-includes/ over the existing ones.Thanks a million!
Forum: Fixing WordPress
In reply to: Upgrading to WP 2.0I am having a problem with the permalinks since upgrading to 2.0. Did I miss something in the upgrade process?
Forum: Fixing WordPress
In reply to: WP 2.0 broke my permalink structureI’m having a similar problem. My permalink structure was /%category%/%postname%/ but whenever I click on a permalink, after the upgrade to 2.0 I get one of those 404 errors.
I’ve deactivated all of my plugins, on the off chance that one of them was the culprit.
In options > permalinks I set “common options” to the default position, and now my permalinks work, but I consider this a temporary fix. What should I do?
Forum: Themes and Templates
In reply to: Category dropdown list – no go! button?I tried sunshine’s suggestion there, and it almost works, however the addresses led to by the form, they aren’t correct. suggestions anyone?