Note: You are currently viewing documentation for Moodle 2.8. Up-to-date documentation for the latest stable version of Moodle may be available here: AMFPHP.

Development talk:AMFPHP: Difference between revisions

From MoodleDocs
mNo edit summary
mNo edit summary
Line 11: Line 11:
but I still get an error:
but I still get an error:


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

Revision as of 06:52, 30 September 2008

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 "&".