0
I am trying to log in and return on the screen the panel of a site pore me and returned an error 405 Method Not Allowed
how can I fix this ?
<?php
$email = ' ';
$senha = ' ';
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://host.com/login');
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
curl_setopt ($ch, CURLOPT_POST, 1);
curl_setopt ($ch, CURLOPT_POSTFIELDS, '_username=$email&_password=$senha');
curl_setopt($ch, CURLOPT_COOKIESESSION, true);
$store = curl_exec ($ch);
curl_setopt($ch, CURLOPT_URL, 'https://host.com/dashboard/');
curl_setopt ($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.6) Gecko/20070725 Firefox/2.0.0.6");
$prok =curl_exec($ch);
curl_close ($ch);
echo $prok;
?>
I am trying to access the https://minhaconta.payleven.com.br/login page to create my custom management panel
– Bruno Lazarine
The whole message Oops! An Error Occurred The server returned to "405 Method Not Allowed". Something is Broken. Please Let us know what you Were Doing when this error occurred. We will fix it as soon as possible. Sorry for any inconvenience caused
– Bruno Lazarine
Now the code of errp returned is: 301 Moved Permanently Nginx
– Bruno Lazarine