我是drupal的新手,我在sites / all / modules / edm中创建了一个Drupal 7模块
edm.info
/*Chrome,Safari*/
-webkit-clip-path: polygon(129px 43px,114px 250px,389px 272px,390px 54px,125px 42px);
/*Firefox*/
clip-path: url("#clipPolygon");
edm.module
name = edm
description = EDM Registration Module
package = EDM API
version = 1.0
core = 7.x
files[] = edm.module
当我为localhost中的一个多站点启用此模块时,工作正常。我通过上传然后启用它来为实时网站做同样的事情。但总是重定向到主页。
我以前访问的网址是
<?php
function edm_menu() {
$items = array();
$items['edm/send'] = array(
'title' => 'EDM Registration Module',
'page callback' => 'perform_curl_request',
'access arguments' => array('access content'),
'type' => MENU_CALLBACK,
);
return $items;
}
function perform_curl_request() {
drupal_add_http_header('Content-Type', 'application/json; utf-8');
echo json_encode(array('result'=>'success','message','Cool! it is working');
}
我错过了一些配置或可能是什么原因。
答案 0 :(得分:0)
目前,它适用于以下网址格式。希望干净的网址存在问题。
http://domaninnamexxx.com/?q=edm/send
而不是
http://domaninnamexxx.com/edm/send