jdandrea
Forum Replies Created
-
Greetings! I’ve upgraded to the latest WP, Jetpack, and SoundCloud Is Gold release. I’ve switched to the new HTML5 player. Unfortunately, unless I disable Jetpack, all I get is “This track is currently not available.” (and, for some reason, the Flash player is used). OTOH, if Jetpack (the latest one) is disabled, everything works perfectly (and with the HTML5 player).
Forum: Plugins
In reply to: [Plugin: WP Super Cache] WP-Super-Cache DOES NOT work with 2.7!Greetings! For a li’l while I was in the same boat: WP 2.7 (latest), plus the very latest wp-super-cache, both htaccess files and wp-config prerequisites in order, permissions all correct, PHP safe mode off … but I was not getting any cache love. ??
Then I found the culprit – a symlink in wp-content:
advanced-cache.php -> /nfs/c01/h02/mnt/####/domains/my.domain.com/html/wp-content/plugins/wp-super-cache/wp-cache-phase1.php
Only one problem. It doesn’t exist. Instead, I changed it to be relative to wp-content vs. filesystem root-relative:
advanced-cache.php -> plugins/wp-super-cache/wp-cache-phase1.php
Ta-dah, it works! So if you think you’ve done everything there is to do, check your symlink for advanced-cache.php. You never know. ??
Meanwhile, thanks to Donncha for all the sweat equity he put into this plugin. Essential ammo for any WP site.
Forum: Installing WordPress
In reply to: No “SuperCache” DirectoryProgress! WP_CACHE was in the wrong place in wp-config.php (meaning it was the last thing in the file). I moved it up above the final include and now we’ve got caching!
Now for a reality check to make sure all’s well.
I see most of the files end up in the cache and cache/meta directories but not under supercache. For instance:
meta/wp-cache-0b70cbdeb2cdcf07215ef5b4dc720562.meta wp-cache-63d9a2d4a3b7de539ca16fea74e80d3e.html
For supercache I’ll always see this (my site’s blog is under the blog directory):
supercache/www.mysite.com/blog/post-slug
That is, a directory but no file. On occasion I’ll see a few index.html files though:
supercache/www.mysite.com/blog/post-slug/index.html supercache/www.mysite.com/blog/2008/04/index.html
Is this normal – the occasional files in supercache?
If so, we’re all set!
Forum: Installing WordPress
In reply to: No “SuperCache” DirectoryMatisme33 – greetings!
I tried your steps (THANK you for sharing!) but, alas, no dice. ??
I have a supercache directory, it’s 777 perms, the .htaccess files are all in place, everything’s looking good, I changed $sem_id, the whole deal, but nothing is landing in the cache.
Hmm …
Forum: Plugins
In reply to: Pending approve?Zorpia,
Not sure if this is what you seek, but I’m working on a pending approval plugin:
Forum: Plugins
In reply to: Pending Review Email AlertFrom what I can tell, I don’t think WP 2.3.x actually notifies anyone. It just flags the post. All pending posts can then be viewed under Manage Posts (via filtering).
Out of necessity, I am writing a plugin (using Notify-On-Draft-Post as inspiration). It handles notification based on the pending status. It will contact any combo of admins/editors/authors and also notify the original post author after publish.
I’ve already got the notification part working. Currently adding in all the options.
Contact jdandrea at gmail dot com if you’d like to tire-kick! Put ‘NotifyPending’ in the subject.
Forum: Themes and Templates
In reply to: Spotpress Admin ThemeGreetings! I found it online after a bit of digging. Enjoy …
Forum: Plugins
In reply to: Share This and Hemingway OK?Got it – thanks Alex!
I was originally thinking the changes should be rolled in to the plugin because that would maintain the white background of the share this window no matter what happens. (Not necessarily so?)
Forum: Fixing WordPress
In reply to: Image Upload QuirksAlso also also … this is interesting: I uploaded a new image by creating a new post (but I didn’t save it – I just had to get to the upload section). Well, the file got uploaded, and I was able to search/edit it to adjust the category and ownership … but now it’s not listed in the uploads list!
Methinks that’s due to the (unorthodox?) way I went about adding it. But is there another way? “There’s got to be a better way!” ??
Forum: Plugins
In reply to: Page excerpts plugin?I second that (or third that?) – out-of-the-box ability to edit a page excerpt would be wonderful.
Meanwhile, I’ve added the snippet from RandomWhim and it works just fine – thank you!
Forum: Plugins
In reply to: Share This and Hemingway OK?Problem solved! Wow, that was fast. ??
Here’s all you do. Get thee to share-this.php in the share-this plugin directory. You’ll need to make a few small repairs.
First, to see the text again, add “color: #000;” (sans quotes) within each of:
#akst_form ul.tabs li
#akst_social ul li aNext, to get rid of the stray bullets (ahem), add “list-style-type: none;” within each of:
#akst_form ul.tabs li
#akst_social ul liReload and test. (Ahh, much better!)
Forum: Plugins
In reply to: Share This and Hemingway OK?Ahh – the names are there. They’re in white! So there is indeed some conflict in the CSS between the two. Will dig deeper and post a fix if possible.
Forum: Fixing WordPress
In reply to: Bug: Main index is, apparently, a 404 pageStill having this problem (previous post). Still trying to hunt the root cause down. Clues still welcome/appreciated.
Forum: Fixing WordPress
In reply to: Bug: Main index is, apparently, a 404 pageI have what might be a similar problem. Fresh install of WordPress (1.5.2) on DreamHost, htaccess is all set up for the permalinks, the works.
If I access any page BUT the home page, it works fine. If I access the home page (which calls index.php which calls my wp-blog-header file), it pauses a bit and I get a “Not Found” page. See this page (note the explicit index.php) to reproduce the issue. As a temporary band-aid I have an extra htaccess rule that translates
^$
to/index.php?year=2005
but that’s not going to fill the bill long term.FWIW, I also read WP ticket 353 on what appears to be the same subject. The only thing is I’m on a more recent version than what is stated in the ticket (when the issue was resolved/closed).
Clues welcome! Thanks.