Title: Ryan Fitzer's Replies | WordPress.org

---

# Ryan Fitzer

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/ryanfitzer/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ryanfitzer/replies/page/3/?output_format=md)…
[32](https://wordpress.org/support/users/ryanfitzer/replies/page/32/?output_format=md)
[33](https://wordpress.org/support/users/ryanfitzer/replies/page/33/?output_format=md)
[34](https://wordpress.org/support/users/ryanfitzer/replies/page/34/?output_format=md)
[→](https://wordpress.org/support/users/ryanfitzer/replies/page/2/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP Super Cache] [Plugin: WP Super Cache] 500 errors in WP 3.0](https://wordpress.org/support/topic/plugin-wp-super-cache-500-errors-in-wp-30/)
 *  [Ryan Fitzer](https://wordpress.org/support/users/ryanfitzer/)
 * (@ryanfitzer)
 * [15 years, 6 months ago](https://wordpress.org/support/topic/plugin-wp-super-cache-500-errors-in-wp-30/#post-1552197)
 * > `AddType x-mapp-php5 .php`
 * Yeah, unfortunately, that is the only way to get your 1and1 account to use php5.
   I found that out the hard way as well.
 * Donncha, does WP Super Cache require php5? I looked over your [plugin page](http://wordpress.org/extend/plugins/wp-super-cache/)
   but found nothing stating php5 as a requirement.
 * If not then it’s very obscure indeed. Maybe that .htaccess directive does some
   other things as well.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [wp_insert_user in WP 3.0](https://wordpress.org/support/topic/wp_insert_user-in-wp-30/)
 *  [Ryan Fitzer](https://wordpress.org/support/users/ryanfitzer/)
 * (@ryanfitzer)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/wp_insert_user-in-wp-30/#post-1615808)
 * Looks like I’ve hijacked this thread so this will be my last post. Found the 
   issue. Was just misunderstanding the function. If you predefine the `id` for 
   the user, wp looks for that `id` in order to **update** it in the DB. I thought
   it would create the user with that specific `id`.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [wp_insert_user in WP 3.0](https://wordpress.org/support/topic/wp_insert_user-in-wp-30/)
 *  [Ryan Fitzer](https://wordpress.org/support/users/ryanfitzer/)
 * (@ryanfitzer)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/wp_insert_user-in-wp-30/#post-1615797)
 * I see the error in the if statement `$temp` should be `$userId`. Fixed it and
   still same result.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [wp_insert_user in WP 3.0](https://wordpress.org/support/topic/wp_insert_user-in-wp-30/)
 *  [Ryan Fitzer](https://wordpress.org/support/users/ryanfitzer/)
 * (@ryanfitzer)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/wp_insert_user-in-wp-30/#post-1615796)
 * Looks like my code block got borked. Another try:
 *     ```
       $userId = wp_insert_user( $userdata );
       if ( is_wp_error($temp) ) :
           echo $userId->get_error_message();
       else :
           echo $userId;
       endif;
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [wp_insert_user in WP 3.0](https://wordpress.org/support/topic/wp_insert_user-in-wp-30/)
 *  [Ryan Fitzer](https://wordpress.org/support/users/ryanfitzer/)
 * (@ryanfitzer)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/wp_insert_user-in-wp-30/#post-1615795)
 * Ok, so further testing shows that I’m actually receiving the user id back from
   the call to wp_insert_user(), but the user is still not being created. No clue
   on this one.
 * Example:
 * `$userId = wp_insert_user( $userdata );
    if ( is_wp_error($temp) ) : echo $userId-
   >get_error_message() . ‘‘; else : echo $userId . ‘‘; endif; ‘
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [wp_insert_user in WP 3.0](https://wordpress.org/support/topic/wp_insert_user-in-wp-30/)
 *  [Ryan Fitzer](https://wordpress.org/support/users/ryanfitzer/)
 * (@ryanfitzer)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/wp_insert_user-in-wp-30/#post-1615793)
 * I’m needing a fix as well. This was not an issue in earlier versions of WP. I’m
   importing users from another CMS which allows for duplicate email addresses.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: Viper’s Video Quicktags] Audio but no video with Quicktime](https://wordpress.org/support/topic/plugin-vipers-video-quicktags-audio-but-no-video-with-quicktime/)
 *  Thread Starter [Ryan Fitzer](https://wordpress.org/support/users/ryanfitzer/)
 * (@ryanfitzer)
 * [16 years, 3 months ago](https://wordpress.org/support/topic/plugin-vipers-video-quicktags-audio-but-no-video-with-quicktime/#post-1425370)
 * I’ve done more research and found an [Apple forum thread stating a similar issue](http://discussions.apple.com/message.jspa?messageID=5938814#5938814).
 * > “Open the HD/Library/Internet Plug-Ins folder and drag the QuickTime Plugin.
   > webplugin to your Desktop.
   >  Quit and relaunch Safari and try the page again.”
 * The thread is a couple of years old, but when I repeated the process the issue
   was resolved on my Powerbook 2003. My MBP unibody did not have the listed file
   at all so this would seem to indicate that the _QuickTime Plugin.webplugin_ could
   possibly be the issue.
 * Not sure if this is an issue for Windows users.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Audio.jpg and Video.jpg Function](https://wordpress.org/support/topic/audiojpg-and-videojpg-function/)
 *  Thread Starter [Ryan Fitzer](https://wordpress.org/support/users/ryanfitzer/)
 * (@ryanfitzer)
 * [19 years, 1 month ago](https://wordpress.org/support/topic/audiojpg-and-videojpg-function/#post-554409)
 * Did some digging in trac an found this old page [http://trac.wordpress.org/attachment/ticket/2074/attachment-attack.diff](http://trac.wordpress.org/attachment/ticket/2074/attachment-attack.diff)
 * This says that you can also add these images to you’re theme’s image folder:
 * application.jpg to be used as an icon for the following file extensions:
    rtf
   js pdf doc pot pps ppt wri xla xls xlt xlw mdb mpp swf class tar zip gz gzip 
   exe
 * text.jpg to be used as an icon for the following file extensions:
    txt c cc h
   php rtx css htm html
 * These are quite the catch-alls and it would be nice to see them further categorized
   but I least now I know.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blog entries on website](https://wordpress.org/support/topic/blog-entries-on-website/)
 *  [Ryan Fitzer](https://wordpress.org/support/users/ryanfitzer/)
 * (@ryanfitzer)
 * [19 years, 3 months ago](https://wordpress.org/support/topic/blog-entries-on-website/#post-535451)
 * Got a link to your site so I can get a better idea?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Problem with Titles](https://wordpress.org/support/topic/problem-with-titles/)
 *  [Ryan Fitzer](https://wordpress.org/support/users/ryanfitzer/)
 * (@ryanfitzer)
 * [19 years, 3 months ago](https://wordpress.org/support/topic/problem-with-titles/#post-535449)
 * Don’t see anything out of the ordinary. Could you elaborate?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [wp 100% strip down](https://wordpress.org/support/topic/wp-100-strip-down/)
 *  [Ryan Fitzer](https://wordpress.org/support/users/ryanfitzer/)
 * (@ryanfitzer)
 * [19 years, 3 months ago](https://wordpress.org/support/topic/wp-100-strip-down/#post-535448)
 * This should do the trick for ya. [http://www.transycan.net/blogtest/2005/07/05/integrate/1/](http://www.transycan.net/blogtest/2005/07/05/integrate/1/)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Rhymed Code Asides no longer working](https://wordpress.org/support/topic/rhymed-code-asides-no-longer-working/)
 *  [Ryan Fitzer](https://wordpress.org/support/users/ryanfitzer/)
 * (@ryanfitzer)
 * [19 years, 5 months ago](https://wordpress.org/support/topic/rhymed-code-asides-no-longer-working/#post-507646)
 * I’m stumped. Have you tried disabling all plugins?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Role Management Plugin](https://wordpress.org/support/topic/role-management-plugin/)
 *  [Ryan Fitzer](https://wordpress.org/support/users/ryanfitzer/)
 * (@ryanfitzer)
 * [19 years, 5 months ago](https://wordpress.org/support/topic/role-management-plugin/#post-509190)
 * Not sure if Owen will be updating that plugin anytime soon. But if everything
   works fine in the 2.0.x series, there should be no reason to upgrade. Is there
   something that is missing for you or are just looking for the lastest and greatest?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Text displaying as link on pages](https://wordpress.org/support/topic/text-displaying-as-link-on-pages/)
 *  [Ryan Fitzer](https://wordpress.org/support/users/ryanfitzer/)
 * (@ryanfitzer)
 * [19 years, 5 months ago](https://wordpress.org/support/topic/text-displaying-as-link-on-pages/#post-509189)
 * Found this in your source
    `<div id="headerimg"> </a> <div class="description"
   > </div>
 * Rogue anchor doin’ its thang.
 * Validated it here and #7 says the same. I would fix all these errors also. [http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fthe-f-word.org%2Fblog%2F%3Fpage_id%3D6%23content](http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fthe-f-word.org%2Fblog%2F%3Fpage_id%3D6%23content)
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [relocating the footer](https://wordpress.org/support/topic/relocating-the-footer/)
 *  [Ryan Fitzer](https://wordpress.org/support/users/ryanfitzer/)
 * (@ryanfitzer)
 * [19 years, 5 months ago](https://wordpress.org/support/topic/relocating-the-footer/#post-509187)
 * Wrap that text in `<div id="header"></div>`. Then, put the call `<?php get_header();?
   >` at the bottom of the container that wraps all the other elements. Then write
   some css to style it.

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

1 [2](https://wordpress.org/support/users/ryanfitzer/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ryanfitzer/replies/page/3/?output_format=md)…
[32](https://wordpress.org/support/users/ryanfitzer/replies/page/32/?output_format=md)
[33](https://wordpress.org/support/users/ryanfitzer/replies/page/33/?output_format=md)
[34](https://wordpress.org/support/users/ryanfitzer/replies/page/34/?output_format=md)
[→](https://wordpress.org/support/users/ryanfitzer/replies/page/2/?output_format=md)