Index: amfphp.module =================================================================== RCS file: /cvs/drupal/contributions/modules/amfphp/amfphp.module,v retrieving revision 1.8 diff -u -r1.8 amfphp.module --- amfphp.module 27 Feb 2008 20:11:47 -0000 1.8 +++ amfphp.module 1 Mar 2008 21:14:23 -0000 @@ -38,7 +38,7 @@ */ function amfphp_server() { $path = drupal_get_path('module', 'amfphp'); - define("PRODUCTION_SERVER", variable_get('services_debug', FALSE)); + define("PRODUCTION_SERVER", !variable_get('services_debug', FALSE)); require_once $path . "/amfphp/globals.php"; require_once $path . "/overrides/AmfphpGateway.php"; @@ -98,5 +98,5 @@ * Implementation of hook_server_error() */ function amfphp_server_error($message) { - trigger_error($message, E_USER_ERROR); + watchdog('amfphp server', $message, NULL, WATCHDOG_ERROR); } \ No newline at end of file Index: README.txt =================================================================== RCS file: /cvs/drupal/contributions/modules/amfphp/README.txt,v retrieving revision 1.4 diff -u -r1.4 README.txt --- README.txt 15 Jul 2007 06:48:53 -0000 1.4 +++ README.txt 1 Mar 2008 21:14:23 -0000 @@ -7,6 +7,6 @@ INSTALLATION ------------ - Place entire amfphp folder in the Drupal modules directory, or relevant site module directory -- Download AMFPHP 1.9 beta 2 from http://www.5etdemi.com/blog/archives/2007/01/amfphp-19-beta-2-ridiculously-faster/ +- Download AMFPHP 1.9 beta 2 from You must dowload http://downloads.sourceforge.net/amfphp/amfphp-1.9.beta.20080120.zip?modtime=1200844138 - Extract AMFPHP 1.9 beta 2 modules/amfphp/amfphp inside of the amfphp module directory - Enable the module in the admin \ No newline at end of file