JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
added run.php
[wfpl.git] / run.php
1 <?php
2
3 #  Copyright (C) 2006 Jason Woofenden
4 #
5 #  This file is part of wfpl.
6 #
7 #  wfpl is free software; you can redistribute it and/or modify it
8 #  under the terms of the GNU General Public License as published by
9 #  the Free Software Foundation; either version 2, or (at your option)
10 #  any later version.
11 #
12 #  wfpl is distributed in the hope that it will be useful, but
13 #  WITHOUT ANY WARRANTY; without even the implied warranty of
14 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 #  General Public License for more details.
16 #
17 #  You should have received a copy of the GNU General Public License
18 #  along with wfpl; see the file COPYING.  If not, write to the
19 #  Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20 #  MA 02111-1307, USA.
21
22
23 # This file facilitates making a site with mixed PHP and html files. All URLs
24 # have the .html extension. One benefit of this is that you can change static
25 # html files to php scripts without having to update links.
26
27 # This script will pull the filename from the URL. It looks for a file with
28 # that name, and for one with the same basename, but with the .php extension
29 # and acts accordingly:
30
31 #--------------------------------------------#
32 #        | .php file exists   | no .php file #
33 #--------+--------------------+--------------#
34 # .html  | load html file as  | pass html    #
35 # file   | a template and run | file through #
36 # exists | run the php file   | as is        #
37 #--------+--------------------+--------------#
38 # no     |                    |              #
39 # .html  | run php file       | display 404  #
40 # file   |                    |              #
41 #--------------------------------------------#
42
43
44
45 # To activate this script in a directory, you'll need to put something like the
46 # following in you your .htaccess file (where /foo/ is the part of the url
47 # between the hostname and the filename.) The example below would work for this
48 # url: http://example.com/foo/bar.html
49
50 # RewriteEngine  on
51 # RewriteBase    /foo/
52 # RewriteRule    .*\.html$  /foo/code/wfpl/run.php
53
54 function run_php() {
55         chdir('../..');
56         $html_file = $_SERVER['REDIRECT_URL'];
57         $html_file = ereg_replace('.*/', '', $html_file);
58         $php_file = ereg_replace('\.html$', '.php', $html_file);
59         if($php_file != $html_file && file_exists($php_file)) {
60                 require_once('code/wfpl/template.php');
61                 if(file_exists($html_file)) tem_load($html_file);
62                 require $php_file;
63                 if(file_exists($html_file)) tem_output();
64         } else {
65                 if(file_exists($html_file)) {
66                         require $html_file;
67                 } else {
68                         header('HTTP/1.0 404 File Not Found');
69                         echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html><head><title>404</title></head><body><h1>404 File Not Found</h1></body></html>';
70                 }
71         }
72 }
73
74 run_php();
75
76 ?>