1.0.0 • Published 2 years ago

myphpcgis v1.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

NodeCGIEmbedded - run php scripts like wordpress, drupal, etc with node and cgi counter parts

With Node PHP Embedded you can leverage the speed of node js and run all of the widely available php scripts directly inside your express site.

This is a fork ofe-php and has been modified for making this take dynamic PHP pathing, so that it can run without a PHP distribution installed on a machine and can work with an embedded PHP binary distribution.

Installation

npm install myphpcgijs --save

Usage

To run php scripts with node js and express create the following script like below:

var express = require('express');
var php = require("phpcgijs"); 
var path = require("path"); 

var app = express();

// Following is the structure for providing the decalration of paths
// app.use("/", php.cgi("/path/to/phpscript", "to/php/cgi/path/php-cgi.exe")); 

// Following works without a local PHP-CGI path and tries to use PHP-CGI installed in system by default
// app.use("/", php.cgi("/path/to/phpscript")); 

// Following uses a path in second argument defining the local copy of PHP-CGI that you want to use for the application
app.use("/", php.cgi("/path/to/phpscript", "to/php/cgi/path/php-cgi"));



app.listen(9090);
console.log("Server listening!");

Explanation

The script will pipe all files that end in the .php extension through the php parser. All other files will be served as static content.

Basic permalinks are supported but the support for them can probably be improved.

Dependencies

php-cgi

  • You need to have the interpreter installed in the system in order to use this extension.
  • Alternatively, You can specify the full path of locally available php-cgi path.
  • If custom path not specified in express, it tries to find the system installed php-cgi executable. If still unavailable, the server errors out.
  • TODO:
    • Add php.ini path config
    • app.use("/", php.cgi("/path/to/phpscript", "to/php/cgi/path", '/path/to/php.ini'));

License

The MIT License (MIT) - See LICENSE for further details.