[/php]
<?php
include_once("usuario.php");
include_once("xmlrpc.inc");
$user=new Customer(0,'','',$_REQUEST['email'],$_REQUEST['password'],0);
$user->login();
$usr = $_REQUEST['email'];
$pas = $_REQUEST['password'];
if(isset($_POST["email"]) && isset($_POST["password"])){
$f = new xmlrpcmsg("wp.getUsersBlogs",array(new xmlrpcval($_POST["email"],"string"),new xmlrpcval($_POST["password"],"string")));
//print "<pre>".htmlentities($f->serialize())."</pre>\n";
$c = new xmlrpc_client("http://servidor_externo.php"); //esto es de prueba no pondre la direccion original por seguridad
$c->return_type = 'phpvals';
$c->setDebug(0);
$r=$c->send($f);
if(!$r){
die("Falló SEND");
}
$v =$r->value();
if(!$r->faultCode()){
print "Usuario ".$_POST["email"]." y contrasenia ".$_POST["password"] ." es ".$v->scalarval()."<BR>";
}else{
print "Numero de error: " .$r->faultCode()." Descripcion del error '".$r->faultString()."'<BR>";
}
}
else{
/*if($user->id!=0)
{
session_start();
$_SESSION['customer_id']=$user->id;
header('Location: ../cuenta.php');
}
else
{
session_start();
if(isset($_SESSION['customer_id']))
session_destroy();
header('Location: ../ingresar.php');
}*/
print "Paso a loguearme con la base de datos de OC";
}
?>
[/php]
Muchas gracias de antemano