bransonsparks
Forum Replies Created
-
…whoops, with the rest of the code from above. I don’t know if the plugin code has changed since I posted this nearly a year ago. I know that WPStats runs through Jetpack now.
I’m not using this hack anymore; I ditched my personal homepage.
I should think so.
Try this:
if ( $a['post'] == "page1" || "page2" || "page3" ){
etc.
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Making static copy of a siteThis might be helpful:
https://mossiso.com/2009/07/20/convert-wp-to-static-html-part-2.htmlForum: Fixing WordPress
In reply to: Schedule Posts Not Working in 2.5I just edited my /wp-includes/cron.php file and it worked.
–Branson
Forum: Fixing WordPress
In reply to: Schedule Posts Not Working in 2.5I am using NearlyFreeSpeech.net for my hosting.
Following this from talltree over in the tracker fixed it for me:
status changed from closed to reopened.
version changed from 2.2 to 2.5.
resolution deleted.
I had this problem too while using nearlyfreespeech.net hosting and future posts not working. I made this change to the code and now it worksin /includes/cron.php search for
if ( $argyle ) fputs( $argyle, "GET {$parts['path']}?check=" . wp_hash('187425') . " HTTP/1.0\r\n" . "Host: {$_SERVER['HTTP_HOST']}\r\n\r\n" ); }
and replace with
if ( $argyle ){ fputs( $argyle, "GET {$parts['path']}?check=" . wp_hash('187425') . " HTTP/1.0\r\n" . "Host: {$_SERVER['HTTP_HOST']}\r\n\r\n" ); fflush($argyle); fgets($argyle); fclose($argyle); } }
Thanks
Here’s the link:
https://trac.www.ads-software.com/ticket/3742A very, very frustrating problem. Makes WordPress unusable if you’re working ahead.
Thanks,
Branson