evaneckard
Forum Replies Created
-
Forum: Plugins
In reply to: [Pay with a tweet] Error 401 – 401 UnauthorizedTesting at a new page: https://www.evaneckard.com/2014/09/whattup/
pass: tweetForum: Plugins
In reply to: [Sermon Manager] Broken in 3.5.1?I had all required info input into a new sermon post. I can’t seem to get the plugin to work on any theme in 3.5.1 (front end).
Forum: Plugins
In reply to: [Easy Sermon] Brokendashboard UI seems fine – front end renders no data
I did with WinFF using the HTML5/H264 preset. Don’t know what else to try… I even re-exported using premiere as an H264 mp4.
Video came from a client as mp4. I ran it through WinFF w/ your presets, then used “MP4 FastStart” to set to fast start
I did read through that. I can get the video to play in FF – still no dice in IE9. I’ve set the mp4 to fast start, added the htaccess edits, etc. I just get a frozen loading animation after clicking the play button
Has anyone found fixes for any of this? I tried encoding using the presets Dustin mentioned above, and I only get the loading icon over the playback tools in both FF and IE9 on windows 7. Files play locally no problem.
I had gotten a different version of the mp4 file I had working in FF, but that was it.
Forum: Plugins
In reply to: [WP Survey And Quiz Tool] Cannot save question to pollI’ve added answers and filled out combinations of other fields on the form – it still doesn’t want to save and throws the same error.
Forum: Fixing WordPress
In reply to: query_posts by tag and showpostsI was simply trying to open the loop showing only 4 posts tagged with “featured”
If I use just showposts=4, the loops shows the most current 4 posts. If I use just the tag, nothing shows even though I have posts tagged as such.
Looking at the codex, it seems it should work.
Forum: Fixing WordPress
In reply to: pharma hackYes, I’ve followed those as well – no dice.
Forum: Fixing WordPress
In reply to: pharma hackShort of deleting everything, I have already followed both of those articles and it’s no help.
This has to be a hole in wordpress itself, i’m assuming poor security in one of the core files.
Forum: Fixing WordPress
In reply to: pharma hackThis file appeared as “ext-akismet.php”
Forum: Fixing WordPress
In reply to: pharma hackThe plugin files that this exploit write look like this:
[Code moderated as per the Forum Rules. Please use the pastebin]
Forum: Fixing WordPress
In reply to: link to latest postI’m sorry this is so late, but you could do something like this:
<?php query_posts('showposts=1'); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <a href="<?php the_permalink() ?>">Click here for latest post</a> <?php endwhile; endif; ?>