Lyndon Roeller
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] 1.4.4 broken RSS feedhmm… hold the phone. seems I use this bit of code to shorten the RSS cache time. could be the culprit as well
//shorted cache feed time add_filter( 'wp_feed_cache_transient_lifetime', create_function('$a', 'return 50;') );
EDIT: yup that’s it. I guess I’ll just remove this from my functions and deal with the default cache time.
EDIT2: now it doesn’t work with W3 Total Cache 0.9.2.8 enabled. Seems like there’s some screwy stuff happening with the RSS in the 1.4.4. interested if anyone can confirm this.
Forum: Fixing WordPress
In reply to: HTTP Error on image upload after upgrade to 3.5Excellent, finally I find a fix to this. Thank you!!
For me (on Dreamhost VPS) I had to add it to a php.ini override. Quite easy to do in php 5.3
https://wiki.dreamhost.com/PHP.ini#phprc
This error seemed to appear with my 3.5 update, but now thinking back I bet it was actually my switch to PHP 5.3 on the hosting level around the same time. Some of the memory limit defaults must have changed.
Cheeers.
Forum: Fixing WordPress
In reply to: Upload New Media hangs at 'crunching' wordpress 3.5@clubdesign – thanks for the tip. it turned out to be the dimensions for me as well. Did you ever solve this? It would be really annoying if I had to manually cut down a few images in a batch exceeding a certain dimension.
the only thing I can think of is that’s it’s a host issue (as suggested by @songdogtech). I will add a custom php.ini to my site and see if upping the max size and execution time help.
Forum: Plugins
In reply to: [No Future Posts] WP 3.5, > plugin gives errorsthere might be a simpler function.php code add to take care of this without the use of a plugin… https://www.ads-software.com/support/topic/publish-scheduled-posts-in-35?replies=7
testing now.
Forum: Plugins
In reply to: [No Future Posts] WP 3.5, > plugin gives errorsI checked back on the author’s website and he released a patched version
https://www.tomsdimension.de/wp-plugins/no-future-posts
I deactivated, deleted, then reinstalled. Now it’s fixed. Hopefully the author will update the version number and release the update so that it becomes available through WP.
Hope this helps.
Forum: Plugins
In reply to: [No Future Posts] WP 3.5, > plugin gives errorsSame issue here with the No Future Post (version 1.3) plugin and WP 3.5
Warning: Missing argument 2 for wpdb::prepare(), called in /home/wp-content/plugins/no-future-posts/no-future-posts.php on line 74 and defined in /home/wp-includes/wp-db.php on line 990 Warning: Missing argument 2 for wpdb::prepare(), called in /home/wp-content/plugins/no-future-posts/no-future-posts.php on line 81 and defined in /home/wp-includes/wp-db.php on line 990
Seems like 3.5 isn’t too happy with the way the DB connection is being done.
Anyone have any ideas? The author’s website https://www.tomsdimension.de/ seems to be down, so that might be a dead end
thank you!
Forum: Fixing WordPress
In reply to: can't drag widgets, edit posts, etc. in 3.5Thank you esmi, you are correct. I will start a new topic.
Forum: Fixing WordPress
In reply to: can't drag widgets, edit posts, etc. in 3.5Ahh yes, that was a known issue in the 3.5 troubleshooting master list, however I’m not using that.
I just disabled cloudflare to no effect. Now I’m really puzzled.
again, my .htaccess is totally clean. I suspect it’s something being done on the hosting level.
Forum: Fixing WordPress
In reply to: can't drag widgets, edit posts, etc. in 3.5Same issue here. At first I thought it was browser-specific, but that doesn’t seem to be the case.
I have no .htaccess files in my admin folder and I’ve removed everything from my root .htaccess except wordpress’s stuff. I do not have mod_pagespeed enabled.
My current thought is that it’s CDN’s (cloudflare) optimization settings.
Forum: Plugins
In reply to: [Cleaner Gallery] [Plugin: Cleaner Gallery] Include limitation?the above would be a great feature request!
overall tho, cleaner gallery is a very useful pluign, install it on all my sites.
oh since we’re talking features… it’s currently a pain to exclude images using the id number (same in WP’s original gallery). It would be GREAT if a plugin make this easier.
did anyone figure out how to stop the page from jumping?
even when I specified a fixed height on the quotes container it still jumps.
wrote to the developer but have not gotten a reply.
thanks in advance!
Forum: Fixing WordPress
In reply to: Duplicate Category Slug Workaround Gone?I might even be open to hacking the core if anyone has done this?
here’s how to do it in 2.8:
https://www.ads-software.com/support/topic/duplicate-category-names?replies=7
Forum: Fixing WordPress
In reply to: Using accented characters in permalink URLsvery helpful David thanks…
now I’ve just got to figure out how to modify that snippet to give me a more complete accented character equivalent library.
this looks like a pretty complete one… https://myshadowself.com/coding/php-function-to-convert-accented-characters-to-their-non-accented-equivalant/
we are in need of occasional accents in names ranging from greek to french, to dutch etc… the filter is going to have to be pretty complete while hopefully not sacrificing much performance.
Forum: Fixing WordPress
In reply to: remove "Attachment Post URL" button from media uploadme too! anyone?
Forum: Plugins
In reply to: [Plugin: External Videos] Use Shortcode in my template?ended up doing something like this..
<?php query_posts(array( 'posts_per_page' => 1, 'post_type' => 'external-videos', 'post_status' => 'publish' )); if ( have_posts() ) { // extract the video for the feature the_post(); $videourl = get_post_meta(get_the_ID(), 'video_url'); $video = trim($videourl[0]); // get oEmbed code $oembed = new WP_Embed(); $vid = $oembed->shortcode(null, $video); // replaces $vid = preg_replace ('/width="\d+"/', 'width="500"', $vid); $vid = preg_replace ('/height="\d+"/', 'height="375" class="youtube-player" frameborder="0"', $vid); // grab desc $description = get_post_meta(get_the_ID(), 'description'); $desc = $description[0]; } ?> <article class="post"> <h2><?php echo get_the_title(); ?></h2> <?php echo $vid; ?> <div class="entry"> <p><?php echo $desc; ?></p> </div> </article>
all in all, works nice.