Hey guys, I've been having some issues while actualizing my home server from i-MSCP 1.1.0-rc1.4 to RC i-MSCP 1.1.0-RC2.1 with one domain only .
I initially had the rc1.4 with squeeze, then I updated the O.S to Wheezy and after that I updated it to RC2.1 and now I can't reach the panel; it only displays the pages code.
The steps I followed were:
Initial O.S: Squeeze
Panel :i-MSCP 1.1.0-rc1.4
mod : FCGI
And now it only displays the panel's code, it doesn't portrait the php.
Here's parts what it shows
Code
- dispatch(iMSCP_Events::onLoginScriptStart); $action = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'default'; $auth = iMSCP_Authentication::getInstance(); init_login($auth->getEvents()); switch ($action) { case 'logout': if ($auth->hasIdentity()) { $adminName = $auth->getIdentity()->admin_name; $auth->unsetIdentity(); set_page_message(tr('You have been successfully logged out.'), 'success'); write_log(sprintf("%s logged out", idn_to_utf8($adminName)), E_USER_NOTICE); } break; case 'login': // Authentication process is triggered whatever the status of the following variables since authentication // is pluggable and plugins can provide their own authentication logic without using these variables. if (!empty($_REQUEST['uname'])) $auth->setUsername(clean_input($_REQUEST['uname'])); if (!empty($_REQUEST['upass'])) $auth->setPassword(clean_input($_REQUEST['upass'])); $result = $auth->authenticate(); if ($result->isValid()) { // Authentication process succeeded write_log(sprintf("%s logged in", $result->getIdentity()->admin_name), E_USER_NOTICE); } elseif (($messages = $result->getMessages())) { // Authentication process failed $messages = format_message($messages); set_page_message($messages, 'error'); write_log(sprintf("Authentication failed. Reason: %s", $messages), E_USER_NOTICE); } } # Redirect user to its interface level if($action != 'logout') redirectToUiLevel(); $tpl = new iMSCP_pTemplate(); $tpl->define_dynamic( array( 'layout' => 'shared/layouts/simple.tpl', 'page_message' => 'layout', 'lostpwd_button' => 'page' ) ); $tpl->assign( array( 'productLongName' => tr('internet Multi Server Control Panel'), 'productLink' => 'http://www.i-mscp.net', 'productCopyright' => tr('© 2010-2013 i-MSCP Team
Any help is apreciated
Victor