Evaluating bids

Flynax Classificados erro na instalação

Published on the May 22, 2017 in IT & Programming

About this project

Open

Tenho o classificados Flynax Nulled em php porem na hora que eu vou instalar ele aparece o erro abaixo:

MySQL server
4.1.x, 5.1.x or above
mysqlnd 5.0.11-dev - 20120503 - $Id: 76b08b24596e12d4553bd41fc93cccd5bac2fe7a $

Procuro alguem que possa instalar o sistema pra mim. Sei que o erro esta na pagina index do install segue abaixo o codigo.

Install.php

<?php

/******************************************************************************
*
*    PROJECT: Flynax Classifieds Software
*    VERSION: 4.0
*    LISENSE: http://www.flynax.com/license-agreement.html
*    PRODUCT: General Classifieds
*    
*    file: index.PHP
*
*    This script is a commercial software and any kind of using it must be
*    coordinate with Flynax Owners Team and be agree to Flynax License Agreement
*
*    This block may not be removed from this file or any other files with out
*    permission of Flynax respective owners.
*
*    Copyrights Flynax Classifieds Software | 2012
*    http://www.flynax.com/
*
******************************************************************************/

/* load system config */
require_once( 'includes'.DIRECTORY_SEPARATOR.'Config.inc.php' );

/* www prefix detecting */
$redirect_host = explode('/', RL_URL_HOME);
$redirect_host = 'http://'.$Redirect_host[2].'/';

If ( false === strpos($_SERVER['HTTP_HOST'], 'www') && false != strpos(RL_URL_HOME, 'www') )
{
    $request_url = ltrim($_SERVER['REQUEST_URI'], '/');
    header("Location: ". $Redirect_host . $Request_url);
}
elseif ( false !== strpos($_SERVER['HTTP_HOST'], 'www') && false === strpos(RL_URL_HOME, 'www') )
{
    $request_url = ltrim($_SERVER['REQUEST_URI'], '/');
    header("Location: ".
$Redirect_host . $Request_url);
}

/* system controller */
require_once( RL_INC . 'Control.inc.php' );

$rlHook -> load('init');

/* load cache control */
$reefless -> loadClass('Cache');

/* load template settings */
$ts_path = RL_ROOT .
'Templates' . RL_DS . $Config['template'] .
RL_DS . 'Settings.tpl.php';
if ( is_readable( $ts_path ) )
{
    require_once( $ts_path );
}

/* check user login */
$reefless -> loadClass( 'Account' );

if ( $rlAccount -> isLogin() )
{
    $rlSmarty -> assign( 'isLogin', $_SESSION['account']['Username'] );
    define( 'IS_LOGIN', true );
    
    $account_info = $_SESSION['account'];
    $rlSmarty -> assign_by_ref('account_info', $account_info);
}

/* rewrite GET method vareables */
$reefless -> loadClass( 'Navigator' );
$rlNavigator -> rewriteGet( $_GET['rlVareables'], $_GET['page'], $_GET['language'] );

/* define site languages */
$rlDb -> setTable( 'languages' );
$rlLang -> defineLanguage( $rlNavigator -> cLang );

/* load all fronEnd phrases */
$lang = $rlLang -> getLangBySide( 'frontEnd', RL_LANG_CODE );
$GLOBALS['lang'] = &$lang;
$rlSmarty -> assign_by_ref( 'lang', $lang );

/* load system libs */
require_once( RL_LIBS . 'System.lib.php' );

/* account abilities handler */
$reefless -> loadClass('ListingTypes', null, false, true);
foreach ( $rlListingTypes -> types as $listingType )
{
    if ( !in_array($listingType['Key'], $account_info['Abilities']) )
    {
        $deny_pages[] = 'my_'.
$ListingType['Key'];
    }
    
    /* count admin only types */
    $admin_only_types += $listingType['Admin_only'] ? 1 : 0;
}
unset($listingType);

$rlSmarty -> assign_by_ref('admin_only_types', $admin_only_types);

if ( empty($account_info['Abilities']) || empty($rlListingTypes -> types) || $admin_only_types == count($rlListingTypes -> types) )
{
    $deny_pages[] = 'add_listing';
    $deny_pages[] = 'payment_history';
    $deny_pages[] = 'my_packages';
}

/* assign base path */
$bPath = RL_URL_HOME;
if ($config['lang'] != RL_LANG_CODE && $config['mod_rewrite'])
{
    $bPath .= RL_LANG_CODE . '/';
}
If (!$config['mod_rewrite'])
{
    $bPath .= 'Index.php';
}

define( 'SEO_BASE', $bPath );

$rlSmarty -> assign( 'rlBase',  $bPath);
define('RL_TPL_BASE', RL_URL_HOME . 'Templates/' . $Config['template'] .
'/');
$RlSmarty -> assign( 'rlTplBase', RL_TPL_BASE );

/* get all pages keys/paths */
$pages = $rlNavigator -> getAllPages();
$rlSmarty -> assign_by_ref( 'pages', $pages );

/* define system page */
$page_info = $rlNavigator -> definePage();

/* save previous visited page key */
if ($_SERVER['REDIRECT_REDIRECT_STATUS'] != 404)
{
    $page_info['prev'] = $_SESSION['page_info']['current'] ? $_SESSION['page_info']['current'] : false;
    $_SESSION['page_info']['current'] = $page_info['Key'];
}

$rlHook -> load('pageinfoArea');

/* load mobile class */
$reefless -> loadClass('Mobile');
                
if ( $rlMobile -> isMobile )
{
    $config['featured_per_page'] = $config['mobile_featured_number'];
    $config['messages_module'] = 1;
    $rlSmarty -> register_function('paging_mobile', array( 'rlMobile', 'paging' ));
}

$rlSmarty -> assign_by_ref( 'pageInfo', $page_info );

/* redirect link handler */
$currentPage = trim($_SERVER['REQUEST_URI'], '/');

if ( $config['lang'] != $rlNavigator -> cLang )
{
    $currentPage = substr($currentPage, 3, strlen($currentPage));
    $currentPage = !(bool)preg_match('/\.html$/', $currentPage) ? $currentPage .'/' : $CurrentPage;
}
elseif ( strlen($currentPage) == 2 )
{
    $currentPage = '';
}

$rlSmarty -> assign_by_ref( 'pageLink', $currentPage );

$linkPage = $rlNavigator -> cPage == 'index' ? "" : $rlNavigator -> cPage;
$rlSmarty -> assign_by_ref( 'page', $linkPage );

/* load page controller */
if ( $page_info['Tpl'] )
{
    require_once( RL_CONTROL . 'Common.inc.php' );
    
    /* assign available hooks */
    $rlCommon -> getHooks();
}

/* load page controller */
if ( $page_info['Controller'] != '404' )
{
    if ( $page_info['Plugin'] )
    {
        require_once( RL_PLUGINS . $Page_info['Plugin'] .
RL_DS . $Page_info['Controller'] . '.Inc.php' );
    }
    else
    {
        require_once( RL_CONTROL . $Page_info['Controller'] . '.Inc.php' );
    }
    
    /* load 404 page */
    if ( $sError === true )
    {
        $rlSmarty -> assign_by_ref( 'errors', $GLOBALS['lang']['error_404'] );
        unset($page_info['Controller']);
    }
}
else
{
    $rlSmarty -> assign_by_ref( 'errors', $GLOBALS['lang']['error_404'] );
}

/* get notice */
if (isset( $_SESSION['notice'] ))
{
    $reefless -> loadClass( 'Notice' );
    
    $pNotice = $_SESSION['notice'];
    $rlSmarty -> assign_by_ref( 'pNotice', $pNotice );
    $rlNotice -> resetNotice();
}

/* assign errors */
if ( !empty($errors) )
{
    $rlSmarty -> assign_by_ref( 'errors', $errors );
    $rlSmarty -> assign('error_fields', $error_fields);
}

/* ajax process request / get javascripts */
$rlXajax -> processRequest();

ob_start();
$rlXajax -> printJavascript();
$ajax_javascripts = ob_get_contents();
ob_end_clean();

/* assign ajax javascripts */
$rlSmarty -> assign_by_ref( 'ajaxJavascripts', $ajax_javascripts );

/* load boot hooks */
$rlHook -> load('boot');

/* exit in ajax mode */
if ( $_REQUEST['xjxfun'] )
{
    exit;
}

/* load templates */
if ( $page_info['Tpl'] )
{
    $rlSmarty -> assign_by_ref( 'bread_crumbs', $bread_crumbs );
    $rlCommon -> pageTitle($bread_crumbs);

    $page_info['Login'] = !empty($page_info['Deny']) ? 1 : $page_info['Login'];
    
    $rlSmarty -> display( 'header.tpl' );

    if ( $page_info['Login'] && !defined('IS_LOGIN') )
    {
        $page_info['Controller'] = 'login';
        $page_info['Plugin'] = '';
        $page_info['Page_type'] = 'system';
        $rlSmarty -> assign( 'request_page', $page_info['Path'] );
        $rlSmarty -> assign( 'errors', $lang['notice_should_login'] );
    }
    elseif ( (isset($account_info['Type']) && in_array($account_info['Type_ID'], explode(',', $page_info['Deny']))) || (isset($account_info['Abilities'][$page_info['Key']]) && $account_info['Abilities'][$page_info['Key']] === false) )
    {
        $page_info['Controller'] = '404';
        $page_info['Page_type'] = 'system';
        $rlSmarty -> assign( 'request_page', $page_info['Path'] );
        $rlSmarty -> assign( 'errors', $lang['notice_account_access_deny'] );
    }
    
    if ( $page_info['Plugin'] )
    {
        $rlSmarty -> assign( 'content', RL_PLUGINS . $Page_info['Plugin'] . RL_DS .
$Page_info['Controller'] . '.Tpl' );
    }
    else
    {
        $rlSmarty -> assign( 'content', 'controllers' . RL_DS . $Page_info['Controller'] .
'.Tpl' );
    }

    $rlSmarty -> display( 'content.tpl' );
    $rlSmarty -> display( 'footer.tpl' );
}
else
{
    if ( $page_info['Login'] && !defined('IS_LOGIN') )
    {
        $page_info['Controller'] = 'login';
        $page_info['Page_type'] = 'system';
        $rlSmarty -> assign( 'request_page', $page_info['Path'] );
        $rlSmarty -> assign( 'errors', $lang['notice_should_login'] );
    }
    
    if ( $page_info['Page_type'] == 'system' )
    {
        $rlSmarty -> display( 'controllers' . RL_DS . $Page_info['Controller'] .
'.Tpl' );
    }
    else
    {
        require_once( RL_CONTROL . $Page_info['Controller'] . '.Inc.php' );
        echo $content['Value'];
    }
}

Category IT & Programming
Subcategory Web development
What is the scope of the project? Small change or bug
Is this a project or a position? Project
I currently have I have an idea
Required availability As needed
Experience in this type of projects Yes (I have managed this kind of project before)
API Integrations Social media (Facebook, Twitter, etc.), Payment Processor (Paypal, Stripe, etc.)
Roles needed Developer

Delivery term: Not specified

Skills needed