Forum Replies Created

Viewing 5 replies - 1 through 5 (of 5 total)
  • I finally tracked down the cause of my blow-up. Yet Another Related Posts Plugin 2.1.6, with the “Display related posts in feeds?” option set to ON. Turning the option OFF restored feed functionality. Yay.

    As for me, I have none of those fun Redirects to delete in the .htaccess for my site:

    AddHandler application/x-httpd-php5 .php
    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /tib/
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /tib/index.php [L]
    </IfModule>
    
    # END WordPress

    I can’t help but notice that wp-feed.php in 2.6x has:

    if (empty($doing_rss)) {
    	$doing_rss = 1;
    	require(dirname(__FILE__) . '/wp-blog-header.php');
    }
    
    do_feed();

    While the new one in 2.7 is:

    require( './wp-load.php' );
    wp_redirect( get_bloginfo( 'rss2_url' ), 301 );

    It’s similar with wp-rss2.php as well. Clearly something got missed in the recoding. If this problem is to do with looping, I can’t help but wonder if dropping the condition might be a part of the problem.

    Interesting note: if I deactivate the Feedburner plugin, I can get a quick download of my feed ONCE. After that, it just seems to hang like before. I don’t know what exactly is going on, but whatever it is, it’s killin’ me.

    I’m having a similar problem with my feed (https://cjcs.com/tib):

    Feed Address: https://feeds.feedburner.com/cjcs/TIB

    HTTP Error Code: 500

    Detail: There was a problem retrieving the feed: java.net.SocketTimeoutException: Read timed out

    Frustrating as all get-out.

    Thread Starter potomac79

    (@potomac79)

    Fixed by resaving my permalink settings–though the site now runs slower…but that’s a different exploration.

    I’ve been having the same problem. With 1.5, I’d either just plop my iframes into the code, or I’d span them to get them positioned how I like. Once I upgraded to 2.0.2, mucho weirdness.

    Existing posts display properly and without so long as I don’t muck around with them.

    Trying to insert new links, either in the edit window or in the HTML window, breaks the pages. One effect: all the contents after the insert disappear. More commonly: the contents of a post from after the iframe insert to some point into the contents of the next post don’t display…they effectively disappear; with the formatting of the page breaking (in my case, the main wp contents flowing into the sidebar).

    Since I shouldn’t have to work this hard to make something that worked before work again, I’m simply going back to 1.5 for the time being…it’s less frustrating. I am looking forward to seeing any good solutions come out of this.

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