From ac2bbc218107b50e230d48c7751dfe2c28a79310 Mon Sep 17 00:00:00 2001 From: Remy Sharp Date: Fri, 19 Jun 2009 12:20:45 +0100 Subject: [PATCH] Fixed the layout - hopefully this time. --- README.markdown | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.markdown b/README.markdown index 13fd54c..07f408b 100644 --- a/README.markdown +++ b/README.markdown @@ -20,7 +20,7 @@ For the tweet to cascade to the next plugin, you must return the tweet, otherwis ### Example plugin -`<?php +
<?php
 class dump {
   // tweet is the full single object that returns from a JSON hit to the search API
   function run($tweet) {
@@ -30,14 +30,14 @@ class dump {
     return $tweet;
   }
 }
-?>`
+?>
-## Configuration where fopen can't be accessed from cron +

Configuration where fopen can't be accessed from cron

-You need to set up a cronjob that does a URL hit rather than running from the command line. You should still protect the directory from reading via the .htaccess file, but you'll need to allow entry to the cron.php file: +

You need to set up a cronjob that does a URL hit rather than running from the command line. You should still protect the directory from reading via the .htaccess file, but you'll need to allow entry to the cron.php file:

-deny from all - +
deny from all
+<Files cron.php>
 order allow,deny
 allow from all
-
+</Files>