geocliff
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Limited page lengthI have come up against a more-or-less identical problem. I have a long page and when I exceed a certain, precise size the page no longer displays. I’ve asked my host support people for help, but I’m running it by you folks in case it turns out to be an application problem (WP), rather than a hosting or d/b issue (for the life of me, I can’t understand why the application would impose an arbitrary web page length limit…!?). If anyone knows what the problem is, I’d be grateful for a reply to the email address, below.
Here’s the text of my email to my host support people:
Dear Support…I have come across a puzzling limitation on page length. The limit I have come up against is 45.56K of mixed ASCII text and HTML. That is, when I exceed precisely 46,652 bytes, the page fails to display–all but the header. The inbound link to the page remains ok.
Is this a MYSQL d/b limitation that I can adjust? Is it a limit of the text entry buffer imposed by WP and, if so, why?
* Web page: Link
* WP version: 2.8In any case I need more space for this page. What can I do to resolve it? I’d rather not go to subpages if I don’t have to. Thoughts?
Thanks!
CliffForum: Fixing WordPress
In reply to: subpage menu orderOK, thanks for looking.
Forum: Fixing WordPress
In reply to: subpage menu orderWow, that reply was fast!
Sorry, Otto42. I’m new to this forum (any forum!). The purpose of the Strong tags was to emphasize a line of code to the reader of the post. They are not actually in the code.
Would you be kind enough to have another look? I’ve updated the “horked-up” post. ??
Thanks!
Forum: Fixing WordPress
In reply to: subpage menu orderI am having the same problem as jk0170, above: Subpages do not sort properly. Here is the code I have no doubt botched up in sidebar.php modifying the wp-list-pages function.
<?php
/* Uncomment this section if you need to have more page navigation than the top
navigation bar allows. You'll still be able to have a few of the default
pages appear at the top (the one's that the Blix theme excludes by default).
**
?>
<h2><em>Pages</em></h2>
<ul class="pages">
<?php
$excluded = my_excluded_pages();
wp_list_pages('title_li=&sort_column=menu_order&title_li=&child_of='. $parent_id);
?>In addition I have updated widgets.php, again modifying the wp-list-pages function:
//////////////////////////////////////////////////////////// Standard Widgets
function widget_pages($args) {
extract($args);
$options = get_option('widget_pages');
$title = empty($options['title']) ? __('Pages') : $options['title'];
echo $before_widget . $before_title . $title . $after_title . "<ul>n";
wp_list_pages("title_li=&sort_column=menu_order");
echo "</ul>n" . $after_widget;Obviously, I have no idea what I’m doing. Will anyone please help!?
Thanks!