willrich33
Forum Replies Created
-
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Spotofy Image ProblemsThank you both:
Serhiy got it right. Images did not appear in the individual episodes in the WP backend though they were appearing in the live podcasts. Once I re-attached the images from the media library everything validated.
Willy
Forum: Plugins
In reply to: [Seriously Simple Podcasting] Spotofy Image ProblemsThank you Serhiy. I see some problems with episode images now, size and not loading in the SSP post type in the back end. It will take a week to fix. I will circle back then to complete this thread.
lordwhizzy:
If you are on shared linux hosting there is probably little you can do, besides asking your ISP. Outgoing spam filters are usually kept on.
If you are on VPS then go to WHM as root and search for “exim”
Exim Configuration Manager > Apache SpamAssassin? Options > Scan outgoing messages for spam and reject based on the Apache SpamAssassin? internal spam_score setting
Will disable or enable it…at least that’s what I remember.
willrich33
- This reply was modified 7 years, 11 months ago by willrich33.
Got it, it was a WHM Apache spam filter.
Ok, go to Websharks right?
KTS915
Yeap, that is what it was. I am a newbie at running APC and never thought about clearing the cache on plugin updates. Duh.
Thank you very much!
Willy
Got response on the subject from premium support.
Forum: Fixing WordPress
In reply to: redirect loop after update WordPress 4.4Thanks Danny
it worked for me
Forum: Fixing WordPress
In reply to: pre_get_postsHi:
Got it. I was so close. 13 is the category I wanted to include.
add_action( 'pre_get_posts', 'hfo_modify_alter_insights_to_all' ); // Modify the current query function hfo_modify_alter_insights_to_all( $query ) { // Check if on frontend and main query is modified if (!$query->is_main_query() || is_admin()) return; if ($query->is_category && is_category(1)) { $taxquery = array( 'relation'=>'OR', array( 'taxonomy' => 'category', 'field' => 'term_id', 'terms' => array(13) , ) ); $query->set('tax_query', $taxquery); } return $query; }
Thanks, HTH, Willy
Forum: Fixing WordPress
In reply to: URL ProblemsAndrew:
It’s ezvideo player. It could be that I need to update it, I believe it is not free, I inherited it.
I just looked, and I am not sure which ezvideo player it is. There could be more than one.
Thanks, Willy
Forum: Fixing WordPress
In reply to: URL ProblemsAndrew:
Thank you, my concerns were alleviated by trying a
$_GET
on both url styles.A plugin broke with this update, but its actually something I need to attend to anyway.
Willy
Forum: Fixing WordPress
In reply to: URL ProblemsAndrew:
Just to be clear, this is a real problem. Link tags are also having the ampersands turned into entities. So when you use the WordPress editor to render a link with a querystring the ampersands in the url are being transformed to entities.
Most browsers will look past this, but I wouldn’t call it desired behavior.
As I said, a link
So https://www.url.com/i=1&j=2
will render
https://www.url.com/i=1#038;j=2
in the source.
In a WordPress post:
<a href="https://www.url.com/i=1&j=2">Link Text</a>
will render in the source
<a href="https://www.url.com/i=1#038;j=2">Link Text</a>
Imagine the ampersand, the forum applies entities.
Willy
Forum: Fixing WordPress
In reply to: URL ProblemsThanks:
This is the first object embed.
<div id=”evp-f20660315cea03d4b82db69b7138ef51-wrap” class=”evp-video-wrap”></div><script type=”text/javascript” src=”https://jewelheart.org/video/framework.php?div_id=evp-f20660315cea03d4b82db69b7138ef51&id=MjAxNWdyc3QyMy0xLm1wNA%3D%3D&v=1437583421&profile=default”></script><script type=”text/javascript”><!–
_evpInit(‘MjAxNWdyc3QyMy0xLm1wNA==[evp-f20660315cea03d4b82db69b7138ef51]’);//–></script>The link is the framework.php link.
Here is the second one.
<div id=”evp-00fd017c54bbd3fb912ed33d84cfbdfd-wrap” class=”evp-video-wrap”></div><script type=”text/javascript” src=”https://jewelheart.org/video/framework.php?div_id=evp-00fd017c54bbd3fb912ed33d84cfbdfd&id=MjAxNWdyc3QwMS0yLm1wNA%3D%3D&v=1426085386&profile=default”></script><script type=”text/javascript”><!– _evpInit(‘MjAxNWdyc3QwMS0yLm1wNA==[evp-00fd017c54bbd3fb912ed33d84cfbdfd]’);//–></script>
In the last post I left links out since the forum inserts entities. You have to look at the source to see the difference.
Willy
Forum: Fixing WordPress
In reply to: URL ProblemsThanks:
Search for link directly after, working
id=”evp-f20660315cea03d4b82db69b7138ef51-wrap”
in https://www.jewelheart.org/
Search for link directly after with entities, not working
id=”evp-00fd017c54bbd3fb912ed33d84cfbdfd-wrap”
https://www.jewelheart.org/digital-dharma/sundays-with-gelek-rimpoche-1/
One is in a post and one is not. This worked before the 4.2.3 update.
Willy
Forum: Fixing WordPress
In reply to: 4.2.3 and embebed JavascriptI am having a similar problem with ampersands
It’s quite simple, a post with links with ampersands is having entitites substituted. Usually this doesn’t cause problems but it is in an object embed with a bunch of javascript.
https://www.ads-software.com/support/topic/url-problems-13?replies=3
Willy