vi aggiorno qui di seguito.....
ho trovato 2 messaggi di log, che riportano errori ecc., di seguito qui descritti:
Notice: Undefined variable: errstr in drupal_http_request()
Notice: Undefined variable: errno in drupal_http_request()
drupal_http_request() è una funzione che si trova nel file common.inc
spulcialdo il file ho trovato il codice seguente:
Codice PHP:
if (empty($options['context'])) {
$fp = @stream_socket_client($socket, $errno, $errstr, $options['timeout']);
}
else {
// Create a stream with context. Allows verification of a SSL certificate.
$fp = @stream_socket_client($socket, $errno, $errstr, $options['timeout'], STREAM_CLIENT_CONNECT, $options['context']);
}
// Make sure the socket opened properly.
if (!$fp) {
// When a network error occurs, we use a negative number so it does not
// clash with the HTTP status codes.
$result->code = -$errno;
$result->error = trim($errstr) ? trim($errstr) : t('Error opening socket @socket', array('@socket' => $socket));
// Mark that this request failed. This will trigger a check of the web
// server's ability to make outgoing HTTP requests the next time that
// requirements checking is performed.
// See system_requirements()
variable_set('drupal_http_request_fails', TRUE);
return $result;
}
Avete qualche consiglio?