|
From: ktukker <kt...@us...> - 2003-03-12 22:30:59
|
CVS commit by ktukker:
To overcome include_path issues for those who are using a hosting provider or are not allowed to change it by themselves:
in your gateway.php you can use:
// path to the directory containing flashservices/
define("AMFPHP_INCLUDE_PATH","/path/to/your/amfphpdir/");
include(AMFPHP_INCLUDE_PATH."flashservices/app/Gateway.php");
$gateway = new Gateway();
When you can use the include_path setting of php, and the "flashservices/" is in
this path, you just can do:
include("flashservices/app/Gateway.php");
$gateway = new Gateway();
M +2 -2 sources/flashservices/app/Executive.php 1.5
M +12 -9 sources/flashservices/app/Gateway.php 1.5
|