Title: monkeynotes's Replies | WordPress.org

---

# monkeynotes

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

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

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 26 total)

1 [2](https://wordpress.org/support/users/monkeynotes/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/monkeynotes/replies/page/2/?output_format=md)

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [UTF-8 character encoding problem](https://wordpress.org/support/topic/utf-8-character-encoding-problem/)
 *  Thread Starter [monkeynotes](https://wordpress.org/support/users/monkeynotes/)
 * (@monkeynotes)
 * [17 years, 1 month ago](https://wordpress.org/support/topic/utf-8-character-encoding-problem/#post-1035789)
 * Doh. Fixed this by adding the following into wp-config.php
 *     ```
       define('DB_CHARSET', 'utf8');			// force utf8
       define('DB_COLLATE', 'utf8_general_ci');	// force collation
       ```
   
 * I also used phpMyAdmin to makes sure the collation matched.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Image Resizing/Thumbnail Generation Plugin](https://wordpress.org/support/topic/image-resizingthumbnail-generation-plugin/)
 *  [monkeynotes](https://wordpress.org/support/users/monkeynotes/)
 * (@monkeynotes)
 * [20 years, 1 month ago](https://wordpress.org/support/topic/image-resizingthumbnail-generation-plugin/page/3/#post-323045)
 * OK, fixed it. It was having problems determining my path using the funtion:
 * `PixGallery_DeterminePaths()`
 * Since I host my site on blog.stephencarr.org the actual directory structure is:
 * /root
    /web /public /blog
 * So when it was determining the root of my web space it just returned
 * /root/web/public
 * This is because my subdomain is running out of a folder on my main domain’s docroot.
 * I fixed this by hardcoding the correct docroot and commenting out line 54: PixGallery_DeterminePaths();
   so that the determinepath function does not get called. I am pretty sure the 
   path to your WP installation is a global WP variable anyway, you should be able
   to use that. Don’t ask me how, I just hack things about.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Image Resizing/Thumbnail Generation Plugin](https://wordpress.org/support/topic/image-resizingthumbnail-generation-plugin/)
 *  [monkeynotes](https://wordpress.org/support/users/monkeynotes/)
 * (@monkeynotes)
 * [20 years, 1 month ago](https://wordpress.org/support/topic/image-resizingthumbnail-generation-plugin/page/3/#post-323044)
 * I can’t seem to get this to produce any thumbnails. I have looked at the HTML
   and it is looking for the thumbs in the correct place but it is not generating
   any thumbs. I am sure this is a path problem, permissions on the folders are 
   777 and as I said it is writing the HTML to the folder correctly but just not
   outputting the images to that folder. Any ideas?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [thumbnail size](https://wordpress.org/support/topic/thumbnail-size/)
 *  [monkeynotes](https://wordpress.org/support/users/monkeynotes/)
 * (@monkeynotes)
 * [20 years, 1 month ago](https://wordpress.org/support/topic/thumbnail-size/page/3/#post-305487)
 * This is bugging me too. I want to be able to specify the true thumb size, not
   just HTML resize the thumbnail/main image. I am dabbling with PixGallery which
   claims to resize thumbs on the fly but it does not seem to be working.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Exclude Category From Archives](https://wordpress.org/support/topic/exclude-category-from-archives/)
 *  Thread Starter [monkeynotes](https://wordpress.org/support/users/monkeynotes/)
 * (@monkeynotes)
 * [21 years ago](https://wordpress.org/support/topic/exclude-category-from-archives/#post-204223)
 * Sorry, I am not being quite clear here. I don’t want to list the actual category
   names, I want to list the posts, sorted by date (with month headers) in a certain
   category, excluding the posts in another.
 * I know you can use
 * `<?php if (in_category(n)) { ?>` or `<?php if (!(in_category(n))) { ?>`
 * For loop operations but that method does not seem to help when building an archive
   style page:
 * March (20)
    February (10)
 * The number is the number of posts in that month, but I don’t want to count certain
   posts such as my remainder link posts.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Sortable Nicer Archives for 1.3](https://wordpress.org/support/topic/sortable-nicer-archives-for-13/)
 *  [monkeynotes](https://wordpress.org/support/users/monkeynotes/)
 * (@monkeynotes)
 * [21 years ago](https://wordpress.org/support/topic/sortable-nicer-archives-for-13/page/2/#post-105356)
 * <<Bump>> for a 1.5 plugin version that can exclude specific categories.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Build a link to a page](https://wordpress.org/support/topic/build-a-link-to-a-page/)
 *  Thread Starter [monkeynotes](https://wordpress.org/support/users/monkeynotes/)
 * (@monkeynotes)
 * [21 years ago](https://wordpress.org/support/topic/build-a-link-to-a-page/#post-203438)
 * Yes, I remember that method now. Dang, I ended up doing it like this:
 * `<?php echo get_page_link(54) ?>`
 * Thanks anyway.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [jefte.net How is this made?](https://wordpress.org/support/topic/jeftenet-how-is-this-made/)
 *  [monkeynotes](https://wordpress.org/support/users/monkeynotes/)
 * (@monkeynotes)
 * [21 years ago](https://wordpress.org/support/topic/jeftenet-how-is-this-made/#post-203018)
 * Multiple Loops would do it:
    [http://codex.wordpress.org/The_Loop#Multiple_Loops](http://codex.wordpress.org/The_Loop#Multiple_Loops)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Disable comments](https://wordpress.org/support/topic/disable-comments-2/)
 *  Thread Starter [monkeynotes](https://wordpress.org/support/users/monkeynotes/)
 * (@monkeynotes)
 * [21 years ago](https://wordpress.org/support/topic/disable-comments-2/#post-179045)
 * Thanks, how confusing, I suppose it is logical seeing as pings are part of the
   commenting system, I just never thought to close that as well. Thanks for your
   help guys.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Disable comments](https://wordpress.org/support/topic/disable-comments-2/)
 *  Thread Starter [monkeynotes](https://wordpress.org/support/users/monkeynotes/)
 * (@monkeynotes)
 * [21 years ago](https://wordpress.org/support/topic/disable-comments-2/#post-179041)
 * <Bump> again. I am running WP 1.5.1 and still can’t get the “Comments closed”
   to work. Someone must be able to help here, I can’t beleive I am the only one
   with this problem.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Php Web Log Analizer](https://wordpress.org/support/topic/php-web-log-analizer/)
 *  [monkeynotes](https://wordpress.org/support/users/monkeynotes/)
 * (@monkeynotes)
 * [21 years ago](https://wordpress.org/support/topic/php-web-log-analizer/#post-197520)
 * Like the plugin but you have misspelt “analyzer”
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Disable comments](https://wordpress.org/support/topic/disable-comments-2/)
 *  Thread Starter [monkeynotes](https://wordpress.org/support/users/monkeynotes/)
 * (@monkeynotes)
 * [21 years ago](https://wordpress.org/support/topic/disable-comments-2/#post-179040)
 * <<BUMP>>
 * I still cannot get it to display “comments closed”. Any ideas? Anyone?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [no line breaks between links and link description](https://wordpress.org/support/topic/no-line-breaks-between-links-and-link-description/)
 *  [monkeynotes](https://wordpress.org/support/users/monkeynotes/)
 * (@monkeynotes)
 * [21 years, 3 months ago](https://wordpress.org/support/topic/no-line-breaks-between-links-and-link-description/#post-91100)
 * Any idea how to fix this with a plugin for 1.5? I don’t really want to go and
   make permanent changes to the links.php file as it might mess things up somewhere
   else.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[ANN] WP-ContactForm for WP V1.5](https://wordpress.org/support/topic/ann-wp-contactform-for-wp-v15/)
 *  [monkeynotes](https://wordpress.org/support/users/monkeynotes/)
 * (@monkeynotes)
 * [21 years, 3 months ago](https://wordpress.org/support/topic/ann-wp-contactform-for-wp-v15/#post-138947)
 * Don’t know if this has already been pointed out but this plugin does not play
   nicely with Markdown or Textile.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [<!–more–> not working](https://wordpress.org/support/topic/lt-more-gt-not-working/)
 *  Thread Starter [monkeynotes](https://wordpress.org/support/users/monkeynotes/)
 * (@monkeynotes)
 * [21 years, 3 months ago](https://wordpress.org/support/topic/lt-more-gt-not-working/#post-147744)
 * I have found the problem, kind of. My site is set up to only display one story
   per page – if I set it to display more than one story the <!–more–> thing starts
   working again.

Viewing 15 replies - 1 through 15 (of 26 total)

1 [2](https://wordpress.org/support/users/monkeynotes/replies/page/2/?output_format=md)
[→](https://wordpress.org/support/users/monkeynotes/replies/page/2/?output_format=md)