Title: Derek's Replies | WordPress.org

---

# Derek

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[YouTube Simple Gallery] 'DESC' and 'ASC' is not working properly](https://wordpress.org/support/topic/desc-and-asc-is-not-working-properly/)
 *  [Derek](https://wordpress.org/support/users/dmoon79/)
 * (@dmoon79)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/desc-and-asc-is-not-working-properly/#post-7336646)
 * This is also happening for me. None of the sorting is working correctly.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Database Sync] (HTTP 406) Remote site not accessible](https://wordpress.org/support/topic/http-406-remote-site-not-accessible/)
 *  [Derek](https://wordpress.org/support/users/dmoon79/)
 * (@dmoon79)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/http-406-remote-site-not-accessible/#post-5024756)
 * Seeing the same error using Bluehost, pulling from remote into local dev environment.
   I’ve also treid it from the other way around.
 * `Remote site not accessible (HTTP 406)`
 * or
 * `Remote site not accessible (HTTP 0)`
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Gravity Forms Directory] Directory Columns window on the Form Edit page blank](https://wordpress.org/support/topic/directory-columns-window-on-the-form-edit-page-blank/)
 *  [Derek](https://wordpress.org/support/users/dmoon79/)
 * (@dmoon79)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/directory-columns-window-on-the-form-edit-page-blank/#post-3553927)
 * +1 on this. Any workaround?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Scalable Vector Graphics (SVG)] Using SVG in Media Uploader Not Working](https://wordpress.org/support/topic/using-svg-in-media-uploader-not-working/)
 *  [Derek](https://wordpress.org/support/users/dmoon79/)
 * (@dmoon79)
 * [13 years, 3 months ago](https://wordpress.org/support/topic/using-svg-in-media-uploader-not-working/#post-3197868)
 * +1
    I’m not able to upload a svg using the media uploaded in WordPress.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Video Thumbnails] Video Thumbnails Plugin Stopped Working](https://wordpress.org/support/topic/video-thumbnails-plugin-stopped-working/)
 *  [Derek](https://wordpress.org/support/users/dmoon79/)
 * (@dmoon79)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/video-thumbnails-plugin-stopped-working/#post-2939122)
 * Stopped working for me as well, after months of success. Is there a fix in the
   works?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Video Thumbnails] [Plugin: Video Thumbnails] Plugin seems to have just stopped working](https://wordpress.org/support/topic/plugin-video-thumbnails-plugin-seems-to-have-just-stopped-working/)
 *  [Derek](https://wordpress.org/support/users/dmoon79/)
 * (@dmoon79)
 * [13 years, 11 months ago](https://wordpress.org/support/topic/plugin-video-thumbnails-plugin-seems-to-have-just-stopped-working/#post-2930755)
 * The plugin has stopped working all together. Been using it for months, and now
   it wont fetch video thumbnails
 * > Error retrieving a thumbnail from the URL [http://img.youtube.com/vi/bjekZJtQU8o/0.jpg](http://img.youtube.com/vi/bjekZJtQU8o/0.jpg)
   > 
   > Libcurl error 0: Failed to connect to 2607:f8b0:4007:801::1008: Network is 
   > unreachable. If opening that URL in your web browser shows an image, the problem
   > may be related to your web server and might be something your server administrator
   > can solve.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wp_get_post_categories($post->ID) – Category Names?](https://wordpress.org/support/topic/wp_get_post_categoriespost-id-category-names/)
 *  Thread Starter [Derek](https://wordpress.org/support/users/dmoon79/)
 * (@dmoon79)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/wp_get_post_categoriespost-id-category-names/#post-2509395)
 * I figured it out
 *     ```
       $wpcats = wp_get_post_categories( $post->ID );
       		$cats = array();
   
       		 	foreach ($wpcats as $c) {
       			$cats[] = get_cat_name( $c );
       			}
       		$lister = implode(",", $cats);
       ```
   
 * Then I could put $lister where I needed it.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wp_get_post_categories($post->ID) – Category Names?](https://wordpress.org/support/topic/wp_get_post_categoriespost-id-category-names/)
 *  Thread Starter [Derek](https://wordpress.org/support/users/dmoon79/)
 * (@dmoon79)
 * [14 years, 6 months ago](https://wordpress.org/support/topic/wp_get_post_categoriespost-id-category-names/#post-2509243)
 * Thanks for the response, alchymyth. I really appreciate it! Unfortunately, that
   fix is not working to generate the category names. I am still getting a list 
   of numeric ID’s
 * I wasn’t sure that you could pass any array other than array (‘fields’ => ‘ID’).
   As that is defined as the default.
 * Do I have to define the fields in the array before I call them, or is ‘names’
   in the defaults for post categories? Better question is where would I find that
   information?

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