I must be typing the path wrong. According to directions, I have to edit this part in the donate/includes/library.php file:
// the path needs to be updated to include your api.php
$includes_folder = dirname(__FILE__);
require_once("$includes_folder/path/to/global/api/api.php");
if the path is ../formtools/global/api/api.php what should the above line(s) look like?
Update - this code:
// the path needs to be updated to include your api.php
$includes_folder = dirname(__FILE__);
require_once("$includes_folder/../../formtools/global/api/api.php");
produces an "Error 200" instead of my usual "not found" errors.
// the path needs to be updated to include your api.php
$includes_folder = dirname(__FILE__);
require_once("$includes_folder/path/to/global/api/api.php");
if the path is ../formtools/global/api/api.php what should the above line(s) look like?
Update - this code:
// the path needs to be updated to include your api.php
$includes_folder = dirname(__FILE__);
require_once("$includes_folder/../../formtools/global/api/api.php");
produces an "Error 200" instead of my usual "not found" errors.