Salve, con gli ultimi aggiornamenti mi si è presentato questo errore sulla bacheca principale di wordpress:
CURLOPT_CUSTOMREQUEST before CURLOPT_URL in /membri/lintervallosalesiano/wp-includes/Requests/Transport/cURL.php on line 348
E la stessa cosa mi si presenta quando voglio effettuare le operazioni più basilari su wordpress (tipo eliminazione di plugin), mi viene mostrato questo errore:
Eliminazione fallita: Warning: Can't set CURLOPT_CUSTOMREQUEST before CURLOPT_URL in /membri/lintervallosalesiano/wp-includes/Requests/Transport/cURL.php on line 348 {"success":true,"data":{"delete":"plugin","slug":" wp-super-cache","plugin":"wp-super-cache\/wp-cache.php","pluginName":"WP Super Cache"}}
Ho verificato il suddetto file che crea questo problema, ma non ho trovato nulla di strano; vi posto le righe saganalate da wordpress:
switch ($options['type']) {
case Requests::POST:
curl_setopt($this->handle, CURLOPT_POST, true);
curl_setopt($this->handle, CURLOPT_POSTFIELDS, $data);
break;
case Requests::HEAD:
curl_setopt($this->handle, CURLOPT_CUSTOMREQUEST, $options['type']);
curl_setopt($this->handle, CURLOPT_NOBODY, true);
break;
case Requests::TRACE:
curl_setopt($this->handle, CURLOPT_CUSTOMREQUEST, $options['type']);
break;
case Requests::PATCH:
case Requests::PUT:
case Requests::DELETE:
case Requests::OPTIONS:
default: curl_setopt($this->handle, CURLOPT_CUSTOMREQUEST, $options['type']);
if (!empty($data)) {
curl_setopt($this->handle, CURLOPT_POSTFIELDS, $data);
}
}
Quella in grassetto è la riga 348.
Qualcuno mi sa consigliare cosa fare e come risolvere il problema? Ho letto in giro e credo sia un problema dei server di altervista. E' così?