Installing WFPL =============== Just unpack the file somewhere that php has access to. It's recomended to have php at ``inc/wfpl/`` relative to your site php files, so you can use wfpl_main() and files from metaform without modification. Metaform ======== Metaform is a code generator. Specifically, it generates the files that for a web page with a form (which, optionally saves to a database, emails, etc.) You are free to use the installation of metaform here: https://jasonwoof.com/metaform/ However, if you'd like to run your own (possibly modified) version, read on for how to set up your own: Installing Metaform on apache (OPTIONAL) ========================================= Note: metaform is a code generator. It is NOT required to use wfpl. It is a tool for auto-generating code for your site which makes use of wfpl. You'll need some directives in your .htaccess: php_flag register_globals off php_flag magic_quotes_gpc off AddDefaultCharset UTF-8 RewriteEngine on RewriteRule .*\.tgz$ /metaform/index.php And a PHP file with: require_once(__DIR__.'/'.'inc/wfpl/metaform.php); metaform_main();