vcal Posted November 5, 2014 Report Posted November 5, 2014 Can someone please have a look at http://www.vcal.org.uk and tell me what I am missing? Currents versions of Kacars and the module. Had a look around and nothing is working. Uploaded module twice now and installed the client twice. Help. Thanks. Quote
vcal Posted November 5, 2014 Author Report Posted November 5, 2014 I had this error yet again and below is what I changed to stop it. kAcars now logs in to my site. Change this part of the module $postText = file_get_contents('php://input'); $encoding = mb_detect_encoding($postText); $rec_xml = trim(iconv($encoding, "UTF-8", $postText)); $xml = simplexml_load_string($rec_xml); to this $postText = file_get_contents('php://input'); //$encoding = mb_detect_encoding($postText); //$rec_xml = trim(iconv($encoding, "UTF-8", $postText)); //$xml = simplexml_load_string($rec_xml); $xml = simplexml_load_string($postText); Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.