|
From: ktukker <kt...@us...> - 2003-03-12 22:31:00
|
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 +1 -1 sources/flashservices/io/AMFSerializer.php 1.7
|