tactics
Forum Replies Created
-
Forum: Plugins
In reply to: [BulletProof Security] BPS blocking iTunes podcasts?Sorry. Yes, the problem has been resolved. I checked the feed in itunes, and all the episodes are showing up now. Thanks very much.
Forum: Plugins
In reply to: [BulletProof Security] BPS blocking iTunes podcasts?There’s a bunch of entries in the security log that look like this:
[403 GET / HEAD Request: September 5, 2014 5:10 pm]
Event Code: BFHS – Blocked/Forbidden Hacker or Spammer
Solution: N/A – Hacker/Spammer Blocked/Forbidden
REMOTE_ADDR: 17.154.84.42
Host Name: 17.154.84.42
SERVER_PROTOCOL: HTTP/1.1
HTTP_CLIENT_IP:
HTTP_FORWARDED:
HTTP_X_FORWARDED_FOR:
HTTP_X_CLUSTER_CLIENT_IP:
REQUEST_METHOD: GET
HTTP_REFERER:
REQUEST_URI: /?feed=seriesengine
QUERY_STRING:
HTTP_USER_AGENT: iTMSForum: Plugins
In reply to: [BulletProof Security] BPS blocking iTunes podcasts?Sent request from terminal on Mac:
curl -I https://findrefuge.com/?feed=seriesengine
HTTP/1.1 403 Forbidden
Date: Sat, 06 Sep 2014 16:52:34 GMT
Server: Apache
Connection: close
Content-Type: text/html; charset=iso-8859-1Forum: Plugins
In reply to: [BulletProof Security] BPS blocking iTunes podcasts?I followed those instructions to the letter, and tested it out by sending my own request from terminal. Still getting the error.
No.
No, I did not get it working, and it’s not resolved. I’m using a WPExplorer theme.
When I disable Ajax, it still jumps to the home page. Only difference is that they don’t get the notification popup (which makes it even worse).
Nope. Still doesn’t work. From the home page, go to a post like this one:
https://fashionistador.com/the-deanarita/
Enter your email address in the sidebar or footer. The form redirects to the home page. It’s supposed to just give the person a confirmation, and remain on the post page. Tested in Safari 5.1.1
Forum: Plugins
In reply to: [Members - Membership & User Role Editor Plugin] New users can't registerNever mind, it was a wordpress settings issue. Thanks for a great plugin.
Forum: Fixing WordPress
In reply to: Bizarre next_posts_link/previous_posts_link problemYep.
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<h1 class=”pageTitle”><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php edit_post_link(‘Edit this page’, ‘<p>’, ‘</p>’); ?>
<?php if (show_posts_nav()) : ?>
<div class=”pagination”>-
<li class=”prevlink”><?php next_posts_link(‘Previous Post’); ?>
<li class=”nextlink”><?php previous_posts_link(‘Next Post’); ?></div>
Forum: Fixing WordPress
In reply to: Bizarre next_posts_link/previous_posts_link problemPage.php is used for permalink pages, not posts. So in the case of this site, it would be pages like:
https://cinemagogue.com/about/
But to test your theory, I added the code to page.php, and it didn’t work.
Forum: Plugins
In reply to: [Plugin: Smart YouTube] Not working on iphoneAnyone? I’m using WordPress 2.8.3 and the very latest version of the plugin (3.3), and it’s still not working. My client is on my case about it, and I need to find a solution.
Forum: Fixing WordPress
In reply to: Only most recent post on home pageI’ll check it out, thanks.
In the meantime, I managed to get it to work by creating a “home.php” page and using this:
<?php query_posts('showposts=1&cat=0'); global $more; $more = 0; while (have_posts()) : the_post(); ?>
That retrieves the latest post from category number 0
Forum: Fixing WordPress
In reply to: Only most recent post on home pageThen it sets all the pages to only one. I want my categories pages to have ten. I just want my home page to have one.
Forum: Fixing WordPress
In reply to: Where the hell is the allowed_tags setting in 2.7?Aha. Well, it still exists in the default theme, it’s just commented out. So I was under the impression that this meant HTML tags were simply disabled by default, and uncommenting that line enabled them. I’ll start chopping up the kses file. Thanks a bunch.