首页 > 代码库 > Drupal错误:“HTTP 请求状态 失败”

Drupal错误:“HTTP 请求状态 失败”

在" /modules/system/system.module" 里面有一行

$result = drupal_http_request(url(‘‘, array(‘absolute‘ => TRUE)));


改成:

$result = drupal_http_request(url(‘http://drupal.org‘, array(‘absolute‘ => TRUE)));


Drupal错误:“HTTP 请求状态 失败”