| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/icd/administrator/components/com_mobilejoomla/scientia/ |
Upload File : |
<?php
/**
* Mobile Joomla!
* http://www.mobilejoomla.com
*
* @version 1.2.5.1
* @license GNU/GPL v2 - http://www.gnu.org/licenses/gpl-2.0.html
* @copyright (C) 2008-2013 Kuneri Ltd.
* @date March 2013
*/
defined('_JEXEC') or die('Restricted access');
global $mootools;
$app = JFactory::getApplication();
$app->setUserState( "com_mobilejoomla.scientiainstall", false );
// get current configuration
$db = JFactory::getDBO();
if(version_compare(JVERSION, '1.7', '<'))
{
$query = "SELECT element FROM #__plugins WHERE published=1 AND folder='mobile' AND element IN ('amdd', 'scientia')";
$db->setQuery($query);
$plugins = $db->loadResultArray();
}
else
{
$query = "SELECT element FROM #__extensions WHERE enabled=1 AND type='plugin' AND folder='mobile' AND element IN ('amdd', 'scientia')";
$db->setQuery($query);
$plugins = $db->loadColumn();
}
if(count($plugins) && in_array('amdd', $plugins) && !in_array('scientia', $plugins))
{
$default_amdd = ' checked="checked"';
$default_scientia = '';
}
else
{
$default_amdd = '';
$default_scientia = ' checked="checked"';
}
if(!$isJoomla15)
$query = "UPDATE #__extensions SET enabled=0 WHERE element='scientia' AND folder='mobile' AND type='plugin'";
else
$query = "UPDATE #__plugins SET published=0 WHERE element='scientia' AND folder='mobile'";
$db->setQuery($query);
$db->query();
if(!$isJoomla15)
$query = "UPDATE #__extensions SET enabled=1 WHERE element='amdd' AND folder='mobile' AND type='plugin'";
else
$query = "UPDATE #__plugins SET published=1 WHERE element='amdd' AND folder='mobile'";
$db->setQuery($query);
$db->query();
?><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link href="style.css" rel="stylesheet" type="text/css" />
<script src="<?php echo $mootools; ?>" type="text/javascript"></script>
<script src="main.js" type="text/javascript"></script>
</head>
<body>
<h1>Upgrade your mobile device database</h1>
<p>Mobile Joomla! uses an offline device detection mechanism to display your mobile website to your visitors. Your current device repository may be outdated, therefore we <strong>highly recommend</strong> you to upgrade your repository with Scientia Mobile DB-API, which includes up-to-date device information.</p>
<p>DB-API is provided by courtesy of <a href="http://scientiamobile.com/" target="_blank">Scientia Mobile</a> under <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank">AGPL license</a>. For more information, please visit <a href="http://scientiamobile.com/" target="_blank">Scientia Mobile website</a>.</p>
<p>
<label><input type="radio" name="database" value="scientia"<?php echo $default_scientia; ?> /> I'd like to install Scientia Mobile DB API. I read and accept <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank">AGPL license</a></label><br/>
<label><input type="radio" name="database" value="amdd"<?php echo $default_amdd; ?> /> I'd like to install default Mobile Joomla! device database</label>
</p>
<div>
<div class="floatleft"><a href="index.php?action=install" class="button enabled" onclick="return onDatabaseInstall();">Next</a></div>
</div>
<div class="clear"></div>
</body>
</html>