-
AuthorPosts
-
October 20, 2014 at 6:26 pm #338529
This info is in my header twice. I’e disabled all plugins and it makes no difference.
<link href=”http://gmpg.org/xfn/11″ rel=”profile”></link>
<link href=”http://justhost.insightpd.com/feed/” title=”Insight Product Development RSS2 Feed” type=”application/rss+xml” rel=”alternate”></link>
<link href=”http://justhost.insightpd.com/xmlrpc.php” rel=”pingback”></link>
I’ve also added:
remove_action( ‘wp_head’, ‘avia_set_rss_tag’, 10, 0 );
remove_action( ‘wp_head’, ‘avia_set_pingback_tag’, 10, 0 );
remove_action( ‘wp_head’, ‘avia_set_profile_tag’, 10, 0 );to my functions.php (using a child theme. does that make a difference?)
I’m using enfold 3.0.2 and wordpress 4.0 on my dev site:http://justhost.insightpd.com/ (this is where i added the functions update. trying to trouble shoot here before switching this one to live)
My live site is insightpd.com (which has not been updated. using 2.9.2 on WP 4.0) which has been crashing. A LOT. Something is happening where it just fills up the memory and crashes the site. You have to do a reboot of the server. An error that always comes up is something about RSS. Could this be related? I’ve been unable to find anything that could be the culprit.
Please help!
October 20, 2014 at 9:08 pm #338640In a different forum, it asks if they were using a child theme, so i’m wondering if that’s the issue?
https://kriesi.at/support/topic/feeds-pingback-and-stuff-being-duplicated-in-headers/again, adding the above did not work in my child theme functions.php
thanks!
October 22, 2014 at 4:05 pm #339516Hi again, any thoughts on this? I’m heading out of town soon and our site is still crashing about every 3 days. I’ve never had this happen before so I’m trying to trouble shot before leaving my company with this issue. I’m trying anything and everything, and like I said, an rss error has been a consistant message before a crash.
Something is filling up the memory so quickly, the server can’t clear it in time and the whole seerver crashes, causing us to do a manual reboot to the server. It did not happen at all during development, but once we opened the site to the world, it’s been happening.
Please advise. At the very least, please let me know what to do about the double rss and ping issue in the header.
Thanks!
October 28, 2014 at 11:35 am #342145Hi!
Thank you for using and we’re very sorry for the delay.
Looks like you’re using a child theme. Did you copy the header.php file or any templates on the child theme folder? Please try to add this on functions.php:
function ava_remove_rel() { remove_action( 'wp_head', 'avia_set_rss_tag', 10, 0 ); remove_action( 'wp_head', 'avia_set_pingback_tag', 10, 0 ); remove_action( 'wp_head', 'avia_set_profile_tag', 10, 0 ); } add_action('init', 'ava_remove_rel', 5);
You should probably contact your hosting provider for more info regarding the memory issues. Ask for any error logs.
Cheers!
IsmaelOctober 28, 2014 at 11:02 pm #342442OK that worked, thank you!
As far as the memory issues, we host locally. There are no errors, per se. It’s just up then it fills so quickly with requests, it just crashes. The errors it logs are errors bc the site is not responding, not that the site is doing something wrong.. I’ll look further into it…
-
AuthorPosts
- The topic ‘RSS and pingbacks appear twice in header. Suggested fixes do not work’ is closed to new replies.