Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Talk:AMFPHP

From MoodleDocs

I have a problem with User.php not working on my installation - UserName.php works fine.

I had to change:

include(AMFPHP_BASE . "util/MethodTable.php");

to

include("../core/shared/util/MethodTable.php");

but I still get an error:

 (Object)#0
 message = "faultCode:AMFPHP_RUNTIME_ERROR faultString:'Missing argument 3 for create()' 
 faultDetail:'***MOODLEROOT***/lib/amfphp/core/shared/util/MethodTable.php on line 53'"
 name = "Error"
 rootCause = (null)

The line in MethodTable.php is:

 function create($className, $servicePath = NULL, &$classComment){

I think the problem might be the the "&".