Drupal 的粗體驗
最近在玩 Druapl
不過好像是被 Druapl 玩
裝了一堆有關 SNS 的 third-party 的程式
發現都動不太了
測試後去看程式才發現這程式有點小 bug orz...
目前遇到兩個解決方式如下:
druapl 的 web service 很有趣,所有的 services (json、soap、rest、xml-rpc、amf等)都是 based on services 這個模組問題發生版本:6.x-2.0-alpha2錯誤訊息:{ "#error": true, "#data": "Invalid method " }解決方式:請將 json_server.module 中第 40 行$request = drupal_parse_json($_POST['method']);更改為$request = $_POST['method'];
問題發生版本:6.x-1.2-beta1錯誤訊息:You must specify a name when you register an operation解決方式:將 soap_server.module 中的變數中前的 # 移除例如 foreach ($method['#args'] as $arg) {改成 foreach ($method['args'] as $arg) {上面那個檔案中所有的都要改掉喔!
Reference:
Comments