Nov 23rd, 2010, 8:51 PM
Ack! This is a bug. At the top of process.php, you'll find this line:
Right before it, add this:
So, in total, the top section of code will be this:
I'll include a fix for this in 2.1.0.
- Ben
PHP Code:
@include_once("$folder/global/api/api.php");
Right before it, add this:
PHP Code:
$folder = dirname(__FILE__);
So, in total, the top section of code will be this:
PHP Code:
$folder = dirname(__FILE__);
// always include the core library functions
require_once("$folder/global/library.php");
// if the API is supplied, include it as well
$folder = dirname(__FILE__);
@include_once("$folder/global/api/api.php");
I'll include a fix for this in 2.1.0.
- Ben