plumedaure2016
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: RSS feed works, stops working, works, stops, etcThanks guys. Yes, it looks like W3 Total Cache does affect it. But I did untick the case “Cache feeds” so I don’t get it !
Cdata… do you have any more info on this ?
I will investigate ! Thanks !Forum: Fixing WordPress
In reply to: My RSS feed keeps breakingHi Jess,
I still have the same problem. I can see that you’re right with W3 cache. I’m going to try to find where the problem is.
Thanks a lot for your precious help!Forum: Fixing WordPress
In reply to: My RSS feed keeps breakingOk, the weirdest thing is that the english version of my blog https://www.plumedaure.com/en feed works !
https://www.plumedaure.com/en/feed
I don’t get it…Forum: Fixing WordPress
In reply to: My RSS feed keeps breakingHi Jess,
Thanks a lot for your answer. I didn’t get an email notification for your answer which is why I answer so late.
I hope I get one this time since I really wanna fix this problem.
I’ve checked the post and then my W3 Total Cache plugin settings but unfortunately it wasn’t this. My “cache feed” wasn’t enabled.
Any idea what else it could be?
/AurélieForum: Fixing WordPress
In reply to: My wordpress site cuts all the time :( Don’t know what to do !Thanks, I just did that now.
Hopefully I get more help from them then. Thanks for yours ! Hope I can fix it soon.
Have a nice day,
Aurélie
Forum: Fixing WordPress
In reply to: My wordpress site cuts all the time :( Don’t know what to do !Just realized “client” refers to people’s IP adresses. Oh god, so many people get errors every day :/
Forum: Fixing WordPress
In reply to: My wordpress site cuts all the time :( Don’t know what to do !… yep :/
Mm “WARNING” or “LOG” doesn’t look like it but “ERROR” yes.
Please find the text of some :
[error] [client 66.249.64.206] [host https://www.plumedaure.com] AH00687: Negotiation: discovered file(s) matching request: /homez.2332/plumedauhi/www/index.html (None could be negotiated).
[error] [client 109.132.73.8] [host plumedaure.com] AH00687: Negotiation: discovered file(s) matching request: /homez.2332/plumedauhi/www/index.html (None could be negotiated).
[error] [client 137.226.113.27] [host https://www.plumedaure.com] AH00687: Negotiation: discovered file(s) matching request: /homez.2332/plumedauhi/www/index.html (None could be negotiated).
[error] [client 95.216.5.160] [host plumedaure.com] AH10157: FastCGI: An error happend on Fastcgi processing, fallback to CGI
CGI ??? And why always a different “client”?
I must say that I’m not IT so I don’t really understand those logs. But it doesn’t look good, right ?
??
Forum: Fixing WordPress
In reply to: My wordpress site cuts all the time :( Don’t know what to do !When I go to my OVH client portal and to “logs & statistics” I see this ” 2018-05 : web – ftp – error – cgi – out – ssh – cron ” per month.
“Web” “error” and “out” are clickable.
If I click errors I see more than 2000 / day !
Forum: Fixing WordPress
In reply to: My wordpress site cuts all the time :( Don’t know what to do !* “Can NOT come from my end”, sorry
Forum: Fixing WordPress
In reply to: My wordpress site cuts all the time :( Don’t know what to do !I’m not sure they actually check deeply. Everytime I write to them they say “now it works”
Grr.. when I see this answer I’m like ” YEAH but i KNOW that !!!! Now it works, But it cuts all the time. 5 times + a day…”
Sorry to say but it looks like their service is mediocre actually. Because I’m thinking it comes from the hosting indeed.
You too ?
Also I mean, when I run a Google Speed Test in the developers tool, the results can go from really bad (25/100) to good (89/100) within 2 mn and it goes up and down all day. I’m not changing anything on my website except publishing new blog posts, so it can come from my end.. right ?
Forum: Plugins
In reply to: [Polylang] Get language in index.php –> what code to use?Thanks a lot ??
Forum: Plugins
In reply to: [Polylang] Get language in index.php –> what code to use?OH MY GOD you are a STAR ! Thanks sooo much ! It works ! You can check it by yourself ??
Plumedaure.com
Super happy ! Any review I can let somewhere for you? ??
Forum: Plugins
In reply to: [Polylang] Get language in index.php –> what code to use?Hello I’m very very lost. I’m not so good in HTML, sorry…
What I want is to put a different Revolution Slider for my FR and EN subdomains. (You can see my blog is plumedaure.com).
—-
For now I just have <?php putRevSlider(“Plumedaure”) ?> which is a French Slider on index.php but the problem is I want to call a different one for english (called : <?php putRevSlider(“Plumedaureenglish”) ?> )
What is the code I have to use please? This is my index.php code below :
[ Moderator note: code fixed. Please wrap code in the backtick character or use the code button. ]
<?php get_header(); ?> <?php putRevSlider("Plumedaure") ?> <div class="row"> <div class="col-md-8"> <main id="content" class="entries-classic" role="main" itemprop="mainContentOfPage" itemscope="itemscope" itemtype="https://schema.org/Blog"> <div class="row"> <div class="col-md-12"> <?php if( is_search() ): ?> <?php global $wp_query; $found = $wp_query->found_posts; $none = esc_html__( 'No results found. Please broaden your terms and search again.', 'olsen-light' ); $one = esc_html__( 'Just one result found. We either nailed it, or you might want to broaden your terms and search again.', 'olsen-light' ); $many = esc_html( sprintf( _n( '%d result found.', '%d results found.', $found, 'olsen-light' ), $found ) ); ?> <article class="entry"> <h2 class="entry-title"> <?php esc_html_e( 'Search results' , 'olsen-light' ); ?> </h2> <div class="entry-content" itemprop="text"> <p><?php olsen_light_e_inflect( $found, $none, $one, $many ); ?></p> <?php if ( $found < 2 ) { get_search_form(); } ?> </div> <div class="entry-utils group"></div> </article> <?php endif; ?> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'entry' ); ?> <?php endwhile; ?> </div> </div> <?php olsen_light_pagination(); ?> </main> </div> <div class="col-md-4"> <?php get_sidebar(); ?> </div> </div><!-- /row --> <?php get_footer(); ?>
—–
If you could help you would be my HERO of all times ! Thanks so much
Forum: Plugins
In reply to: [Polylang] Get language in index.php –> what code to use?Hello thanks so much I’ll check this.
Let you know if I still struggled once I’ve tried the code ??
Enjoy your day!! and thanks again