mp459
Forum Replies Created
-
Forum: Localhost Installs
In reply to: WP 3.9, AWS Micro Instance cant access Themes, Plugins & UpdatesHey Jeffsun22
I was on the same boat. Upgraded instance to mini and am now able to access.
mickey
Drats. I manually ran one of the two jobs on that site, and they both reset to a real date. I’ll keep an ey eout as I have backwpup running in several sites.
Hi Daniel
I also have this on one site. IT’s a fairly heavily trafficked site so I doubt it’s just a cron issue; I also call wp-cron.php by cron job every 5 minutes.
mickey
3.1.2 works for me in Multisite as well. have not tried it in non-network installs yet.
thanks for the quick response, Caspar.
Same as Jason with my sites. I can verify that 4.1.1 works with PHP 5.2.17 and the WP 3.7.1
Wow that was quick. Thanks!
Resolved as dupe. Please see thread shown above.
Forum: Themes and Templates
In reply to: [P2] Posting on Chrome isn't working – Mac OSXI didn’t get around to checking the fix, but:
– I _believe_ the line number for theme version 1.5.1 was 1197 on my copy of p2.js
– theme version 1.5.2 works on my endMany thanks @lancewillett
Forum: Themes and Templates
In reply to: [P2] Posting on Chrome isn't working – Mac OSXSame here. Firefox is working but Chrome is not; Safari is intermitent.
Some more info:
– TEchnically, posting _does_ work, but not from the ‘whatcha up to”‘ box. I can go to the dashboard->posts and add posts
– I have a wp network, disabled all other plugins, and this still happens
– chrome debugger shows nothing.@tristancm : where do your developers see the NetworkError? I do not see that on my chrome debug.
On the server side, I see this POST call from Firefox which I don’t ese on chrome (although it could be a red herring):
[myIPaddress] - - [15/Nov/2013:10:09:43 -0500] "POST /wordpress/wp-admin/admin-ajax.php?p2ajax=true HTTP/1.1" 200 3Forum: Plugins
In reply to: [WP-Markdown] Support for atx-style headers?Hey Stephen Harris
First, thanks for the reply!
Second, I’ve done some testing, and I think this only happens with the P2 theme. This is because P2 does some list formatting, including using # for lists. So even without the wp-markdown plugin, P2’s list-creator turns this:
# one # two #threeinto:
1. one 2. two 3. threeWith the wp-markdown plugin, this:
# one # two # three #heading 1 ## heading 2Turns into this on first save:
1. one 2. two 3. three # heading 1 ## heading 2and on 2nd save:
1. one 2. two 3. three 1. heading 1 ## heading 2I don’t think there’s much to do with this rather than gape in amazement or disable p2’s list-creator.
Thanks again
mickeyForum: Plugins
In reply to: [WP-Markdown] Support for atx-style headers?I figured this out. SOrry for the confusion. Here are my findings:
H1 does not work well, but these two formats work:
#heading1#
#headingThe problem is that when editing an existing post, H1 gets translated to
# Heading(note the space)βwhich turns into an ordered list when you save.H2 and below seem to work:
## h2etc.So avoid H1, which is a best-practice anyway since it’s used for the post title.
Forum: Plugins
In reply to: [W3 Total Cache] Random Blank Pages – w3 total cacheI’ve had random issues with blank pages with W3TC rewrite rules came _after_ the wordpress rewrite rules in .htaccess.
Forum: Plugins
In reply to: [Social Media Feather] Share buttons not showing up on posts or pagesI’ll start a different forum topic when I’ve had a chance to investigate some more.thanks.
Forum: Plugins
In reply to: [Social Media Feather] Share buttons not showing up on posts or pagesThis seems to work when showing icons automatically; however the theme code does not work for me still.
synved_social_follow_markup();
or
synved_social_share_markup();
mickeyForum: Plugins
In reply to: [Social Media Feather] Share buttons not showing up on posts or pagesI agree, is_single is a hack and only works for posts, but is_singular($id) does not work at all. Ideally, as I mentioned, I’d use is_singular($post_types), but that’s a bit too much work for me right now π Is_singular() (with no argument) should work for pages and posts, but not CPT.
I’m looking forward to your fix. Thanks for your help and work!
mickey