Forum Replies Created

Viewing 15 replies - 16 through 30 (of 106 total)
  • Thread Starter drezac

    (@drezac)

    So- if I had to do it all again, I would never have used Feedburner for these category feeds on Podpress.

    I created them because at the time, I didn’t know what Podtrac was. However to really make podtrac work, I would have started by simply using the original Podpress category feeds directly to iTunes, then using Podtracs enhanced feeds instead.

    Unfortunately, what I have now is this middle-man: feedburner. For one of our feeds, I thought I could simply delete the Feedburner feed. Now, even the original feed doesn’t work:

    edreach.us/category/littech/feed

    .

    In my wisdom, I deleted the feedburner feed associated with that category, and feedburner is still directing to an error page. How long does it take for me to get back the original feed? When will they stop redirecting? Just curious…

    In order to fix this, I’d have to start all over with a new category, and republish to iTunes. That’s not what I want to do.

    Any ideas? Thanks.

    DR

    Did you ever figure this out? Would love to know what you did….

    DR

    Thread Starter drezac

    (@drezac)

    Okay – to support my idea that there is something weird just going on with Category feeds, explain this.

    I created a redirect from edreach.us/feed/podcast (main podcast feed)
    feeds.feedburner.com/edreachnetwork

    And guess what? It’s updated. So only my category feeds are not updating when the redirect is in place. Don’t know….

    DR

    Thread Starter drezac

    (@drezac)

    The Redirections looks interesting, but doesn’t that just write to the htaccess folder anyway?

    DR

    Thread Starter drezac

    (@drezac)

    Okay-

    So I actually talked to Podtrac on the phone today. We went back and forth. Basically they said that by adding my raw feed redirecting to Podtract is creating some sort of re-direct loop and not updating the feed.

    I tried a test. In the htaccess file I created a redirect to a feedburner feed:

    feed://feeds.feedburner.com/edunation

    No error message. However- the feed never updated after a new show went in.

    Whatever it is- whenever I try to implement a redirect- it STOPs the feed update. Podtrac said it was like being in a room with an “in” door without any “out” door. Okay…

    There is a button on podtracs side to “refresh” feeds. I hit it, then nothing.

    We recently had a dev do some work on adding custom post types for us. He edited the functions.php file. I wonder if you could see anything that might make this happen? I know that when I take away these redirects- the feeds will update once again.

    /**
     * Custom Post Types
     */
    register_post_type(
      'podcast', array(
        'label'         => 'Podcast',
        'public'        => true,
        'show_ui'       => true,
        'capability_type'   => 'post',
        'hierarchical'      => false,
        'has_archive'     => true,
        'query_var'       => true,
        'supports'        => array(
          'title',
          'editor',
          'author',
          'comments',
          'revisions',
          'thumbnail',
          //'page-attributes',
        ),
        'taxonomies'      => array('podcast-channel', 'category', 'post_tag'),
      )
    );
    
    function add_category_to_cpt() {
      register_taxonomy_for_object_type('category', 'podcast');
      register_taxonomy_for_object_type('post_tag', 'podcast');
    }
    add_action('init', 'add_category_to_cpt');
    Thread Starter drezac

    (@drezac)

    One more question:

    I’m going to reach out to your creativity, Tim.

    Could there be a way to encode the URL redirects within Podpress?
    http://edreach.us/category/littech/feed
    to
    http://feeds.podtrac.com/Pkb6GU-CLAU$

    That seems to me like something that might be helpful and save folks a lot of time that want to change their feeds. Plus- going in and editing htaccess might be out of reach for many. I did it, but I’m not many.

    What do you think?

    DR

    Thread Starter drezac

    (@drezac)

    I edited the htaccess file.

    I added

    AddType 'text/html; charset=UTF-8' html

    to the htaccess file right in the beginning. I have to say the re-directs happen much faster, however, it still gives me that error, and the feeds still don’t update.

    I’m going on day three of this, and we feel like we’re close. What now?

    Thread Starter drezac

    (@drezac)

    Just testing…

    I added one of our feeds that didn’t have the redirect on to feed validator, and it comes up clean:

    edreach.us/category/google-educast/feed

    DR

    Thread Starter drezac

    (@drezac)

    I turned off the redirect, and used the link that you sent me. Below is how I wrote it.

    Seemed to load faster- but no feed update and same error. This is what that looks like. They are taking all day to get back to me (sometimes 2 days). Ugh.

    Thanks, Tim.

    rewriteengine on
    rewritecond %{HTTP_HOST} ^www.edreach.us$ [OR]
    rewritecond %{HTTP_HOST} ^edreach.us$
    rewriterule ^category\/edadmin-cast\/feed$ "http\:\/\/feeds\.podtrac\.com\/WTHAMtqadUU$" [R=301,L] #504ff64ba2984
    rewritecond %{HTTP_HOST} ^www.edreach.us$ [OR]
    rewritecond %{HTTP_HOST} ^edreach.us$
    rewriterule ^newsletter$ "http\:\/\/edreach\.us1\.list-manage2\.com\/subscribe?u=52c806c527b871e20ee9e9ba7&id=bc9e8ba8e8" [R=301,L] #4f836f411065a
    
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteBase /
    RewriteRule ^category/littech/feed http://feeds.podtrac.com/Pkb6GU-CLAU$ [L,R=301]
    RewriteRule ^category/edunationcast/feed http://feeds.podtrac.com/ntX-BC3LTIc$ [L,R=301]
    RewriteRule ^category/edadmin-cast/feed http://feeds.podtrac.com/WTHAMtqadUU$ [L,R=301]
    </IfModule>
    # END WordPress
    Thread Starter drezac

    (@drezac)

    Alright Tim-

    I thought we had this solved. However, I did the 301 redirects right within the .htaccess file.

    The redirects work great (edreach.us/category/edadmin-cast/feed) – however- the feeds are not updating. We are getting an error like this:

    Your feed appears to be encoded as “utf-8”, but your server is reporting “US-ASCII”

    We are so close to solving this- any help would be appreciated. Also- from what I read, there needs to be some charset rewrite for ASCII to UTF and I’m lost at how to do that.

    Any clues? Thanks?

    Dan

    Thread Starter drezac

    (@drezac)

    FYI-

    This link really is helpful for 301 Redirects in wordpress and just shows you how to do it:

    http://www.podcastfaq.com/syndicating-your-podcast/changing-your-podcast-rss-feed-address-url/

    The Godaddy system puts the redirect outside of WordPress in .htaccess, so I’m going to see what happens now within that section.

    The Player has returned- it was conflicting with W3 Total Cache, which I instituted yesterday.

    DR

    Thread Starter drezac

    (@drezac)

    Update:

    So I spoke with Godaddy. Apparently Godaddy borks the redirects to make it look like the feed is in ASCII. I had to turn all of them off.

    Many of the resources that I read- told me I could rewrite my HTACCESS folder.
    Can you give me an example of what this rewrite rule might look like?
    I looked at, I think, like 3 different styles.

    Also- does the htaccess rewrite rule go inside the WordPress section of the htaccess or outside of it?

    I’m trying to rewrite: http://edreach.us/category/edadmin-cast/feed
    to go to http://feeds.podtrac.com/WTHAMtqadUU$
    as a 301 redirect.

    An example might be nice!

    Dan

    Thread Starter drezac

    (@drezac)

    Okay let me guess. It has something to do with this? I ran feed validator…

    Your feed appears to be encoded as “utf-8”, but your server is reporting “US-ASCII”

    Am I right?

    DR

    Thread Starter drezac

    (@drezac)

    Hi Tim-

    I recently forked all of our podcast feeds over to Podtrac and added the redirects using Godaddy’s URL redirect tool:
    IF you check http://edreach.us/category/edadmin-cast/feed it should take you to the new URL. The itunes New Feed tag is in effect.

    However- since I did this today, the feed didn’t update. It updated on our site, you can see edreach.us, but none of the podcast feeds updated.

    Is there something I did wrong or forgot to check? Podtrac was loading really slowly as well. I’m getting lots of emails, ugh. Thanks for the assistance.

    To top it off, the Podpress player seems to have disappeared from the front pages of our site. Gone. That’s never happened before.

    Something I can do about that? Activate and reactivate?

    Thanks-

    DR

    Thread Starter drezac

    (@drezac)

    This is what I’m supposed to do:

    You should set your web server to return an HTTP 301 response and redirect when receiving a request for the old feed. Doing so will cause both the iTS and most (but not all) iTunes clients that have subscribed to your podcast to pick up the new feed URL.

    Any help is appreciated.

    DR

Viewing 15 replies - 16 through 30 (of 106 total)