Hello,
I'm using Mollify version 1.8.9.3
My Mollify is running on external interface. I log with users on my website and if I click "intranet", mollify opens in an iframe.
I have just changed my provider and merged my website on a new server (using rsync command on Debian server). Everything was well sync and my website runs ok on the new server.
The only issue is that when I click on "intranet", Mollify ask for login. It seems "MollifyExternalInterface.class.php" is not working.
If I log with a user, everything is ok and Mollify runs good.But I don't want this "double-login".
The only difference between the 2 servers is PHP version. Before it was php 5.3 and now it is PHP 5.4.
Do you have any idea where the problem can come from?
Here is my code:
<?php
session_start();
$_SESSION['id'];
$id = $_SESSION['id'];
set_include_path("./backend/".PATH_SEPARATOR.get_include_path());
require("external/MollifyExternalInterface.class.php");
$mollify = MollifyExternalInterface();
if (!$mollify->isAuthenticated()) $mollify->authenticate($id);
?>
<!--
Copyright (c) 2008- Samuli Järvelä
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html. If redistributing this code,
this entire header must remain intact.
-->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "
http://www.w3.org/TR/html4/loose.dtd">
Thanks
Pierre