Title: dwmingos's Replies | WordPress.org

---

# dwmingos

  [  ](https://wordpress.org/support/users/dwmingos/)

 *   [Profile](https://wordpress.org/support/users/dwmingos/)
 *   [Topics Started](https://wordpress.org/support/users/dwmingos/topics/)
 *   [Replies Created](https://wordpress.org/support/users/dwmingos/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/dwmingos/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/dwmingos/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/dwmingos/engagements/)
 *   [Favorites](https://wordpress.org/support/users/dwmingos/favorites/)

 Search replies:

## Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)

 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [after installation, admin works fine, blog shows “redirect loop” error](https://wordpress.org/support/topic/after-installation-admin-works-fine-blog-shows-redirect-loop-error/)
 *  [dwmingos](https://wordpress.org/support/users/dwmingos/)
 * (@dwmingos)
 * [16 years, 9 months ago](https://wordpress.org/support/topic/after-installation-admin-works-fine-blog-shows-redirect-loop-error/#post-1112744)
 * Same problem here. The admin works fine via https and so do the static readme.
   html and license.txt files. I was hoping to find a workaround, plugin, or even
   a code hack but all my searching hasn’t turned up anything. I’m going through
   the WP source now to try to find the source of the problem…
 *   Forum: [Installing WordPress](https://wordpress.org/support/forum/installation/)
   
   In reply to: [WordPress database error: [Got a packet bigger than ‘max_allowed_packet’ bytes]](https://wordpress.org/support/topic/wordpress-database-error-got-a-packet-bigger-than-max_allowed_packet-bytes/)
 *  [dwmingos](https://wordpress.org/support/users/dwmingos/)
 * (@dwmingos)
 * [18 years, 4 months ago](https://wordpress.org/support/topic/wordpress-database-error-got-a-packet-bigger-than-max_allowed_packet-bytes/#post-655612)
 * I’m having the same issue…
 * Has anyone come up with a solution yet?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Cannot Validate Post Page](https://wordpress.org/support/topic/cannot-validate-post-page/)
 *  [dwmingos](https://wordpress.org/support/users/dwmingos/)
 * (@dwmingos)
 * [20 years, 2 months ago](https://wordpress.org/support/topic/cannot-validate-post-page/#post-358989)
 * The problem seems to be just before your Archives section in your sidebar. In
   the HTML that WordPress finally sends to client browsers, you’ve got:
 * `<ul>`
 * </ul>
 * with no list items. This is probably because you’ve got a UL for Pages but you
   don’t actually have any Pages so it’s putting out an empty list. You can either
   remove that code (if you’re sure you won’t have any Pages in the future) or first
   check to see if there are any Pages and then write out the UL only if there are.
 * There are several ways to do this but a quick ‘n dirty way is to do the following;
 * `
    <?php $pageitems = wp_list_pages('title_li=<h2>' . __('Pages') . '</h2>'&echo
   =false ); if (strlen($pageitems) {    echo "<ul>{$pageitems}</ul>"; } ?>

Viewing 3 replies - 1 through 3 (of 3 total)