Jump to content

Famous

Members
  • Posts

    455
  • Joined

  • Last visited

Everything posted by Famous

  1. If I use firefox my flux will just become all white and blank cannot enter the website
  2. $showExceptions = true; // Whether or not to show exceptions (only applies to error.php) I still have the same error I already set this to true Header.php <?php if (!defined('FLUX_ROOT')) exit; require_once(FLUX_ROOT.'/'.FLUX_ADDON_DIR.'/support/modules/support/function.php') ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <?php if (isset($metaRefresh)): ?> <meta http-equiv="refresh" content="<?php echo $metaRefresh['seconds'] ?>; URL=<?php echo $metaRefresh['location'] ?>" /> <?php endif ?> <title><?php echo Flux::config('SiteTitle'); if (isset($title)) echo ": $title" ?></title> <link rel="stylesheet" href="<?php echo $this->themePath('css/flux.css') ?>" type="text/css" media="screen" title="" charset="utf-8" /> <link href="<?php echo $this->themePath('css/flux/unitip.css') ?>" rel="stylesheet" type="text/css" media="screen" title="" charset="utf-8" /> <?php if (Flux::config('EnableReCaptcha')): ?> <link href="<?php echo $this->themePath('css/flux/recaptcha.css') ?>" rel="stylesheet" type="text/css" media="screen" title="" charset="utf-8" /> <?php endif ?> <script type="text/javascript" src="<?php echo $this->themePath('js/jquery-1.8.3.min.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->themePath('js/flux.datefields.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->themePath('js/flux.unitip.js') ?>"></script> <script type="text/javascript" src="<?php echo $this->themePath('js/drawmove.js') ?>"></script> <!--[if lt IE 9]> <link rel="stylesheet" href="<?php echo $this->themePath('css/flux/ie.css') ?>" type="text/css" media="screen" title="" charset="utf-8" /> <![endif]--> <!--[if lt IE 9]> <script src="<?php echo $this->themePath('js/ie9.js') ?>" type="text/javascript"></script> <![endif]--> <!--[if lt IE 6]> <script type="text/javascript" src="<?php echo $this->themePath('js/flux.unitpngfix.js') ?>"></script> <![endif]--> <script type="text/javascript"> $(document).ready(function(){ var inputs = 'input[type=text],input[type=password],input[type=file]'; $(inputs).focus(function(){ $(this).css({ 'background-color': '#f9f5e7', 'border-color': '#dcd7c7', 'color': '#726c58' }); }); $(inputs).blur(function(){ $(this).css({ 'backgroundColor': '#ffffff', 'borderColor': '#dddddd', 'color': '#444444' }, 500); }); $('.menuitem a').hover( function(){ $(this).fadeTo(200, 0.85); $(this).css('cursor', 'pointer'); }, function(){ $(this).fadeTo(150, 1.00); $(this).css('cursor', 'normal'); } ); $('.money-input').keyup(function() { var creditValue = parseInt($(this).val() / <?php echo Flux::config('CreditExchangeRate') ?>, 10); if (isNaN(creditValue)) $('.credit-input').val('?'); else $('.credit-input').val(creditValue); }).keyup(); $('.credit-input').keyup(function() { var moneyValue = parseFloat($(this).val() * <?php echo Flux::config('CreditExchangeRate') ?>); if (isNaN(moneyValue)) $('.money-input').val('?'); else $('.money-input').val(moneyValue.toFixed(2)); }).keyup(); // In: js/flux.datefields.js processDateFields(); }); function reload(){ window.location.href = '<?php echo $this->url ?>'; } </script> <script type="text/javascript"> function updatePreferredServer(sel){ var preferred = sel.options[sel.selectedIndex].value; document.preferred_server_form.preferred_server.value = preferred; document.preferred_server_form.submit(); } // Preload spinner image. var spinner = new Image(); spinner.src = '<?php echo $this->themePath('img/spinner.gif') ?>'; function refreshSecurityCode(imgSelector){ $(imgSelector).attr('src', spinner.src); // Load image, spinner will be active until loading is complete. var clean = <?php echo Flux::config('UseCleanUrls') ? 'true' : 'false' ?>; var image = new Image(); image.src = "<?php echo $this->url('captcha') ?>"+(clean ? '?nocache=' : '&nocache=')+Math.random(); $(imgSelector).attr('src', image.src); } function toggleSearchForm() { //$('.search-form').toggle(); $('.search-form').slideToggle('fast'); } </script> <?php if (Flux::config('EnableReCaptcha') && Flux::config('ReCaptchaTheme')): ?> <script type="text/javascript"> var RecaptchaOptions = { theme : '<?php echo Flux::config('ReCaptchaTheme') ?>' }; </script> <?php endif ?> </head> <body> <div id="wrapper"> <div id="header" style="background-image: url('<?php echo $this->themePath('img/bg.jpg'); ?>');"> <div id="topbar"> <div id="toppanel"> <div style='float:left;'>Server:<span id="server" class="<?php echo $serverOnline; ?>"><?php echo $serverOnline; ?></span></div> <div style='float:right;'>Players:<span id="players"><?php echo $onlinePlayersCount; ?></span> </div> </div> <!-- toppanel --> </div> <!-- topbar --> <div class="colwidth"> <div id="logo"> <a href="<?php echo $this->basePath ?>"> <img src='<?php echo $this->themePath('img/logo.png') ?>' /> </a> </div> <!-- logo --> <div id="drawmoveCanvasContainer"> </div> <!-- drawmove canvas --> </div> <!-- colwidth --> </div> <!-- header --> <div id="menu" style="background-image: url('<?php echo $this->themePath('img/menufond.png'); ?>');"> <div class="colwidth"> <ul> <li><a href='?module=news&action=view'><b>News</b></a></li> <li><a href='https://www.facebook.com/pages/Zhen-RO/387748977957774?id=387748977957774&sk=info'>Informations</a></li> <li><a href='?module=donate'>Donation</a></li> <li><a href='http://www.mediafire.com/?nal5wcft18kx67l/?module=pages&action=content&path=downloads'>Download Lite</a></li> <li><a href='?module=pages&action=content&path=boards'>Boards</a></li> </ul> <div id="loginbox"> <?php if ($session->isLoggedIn()): ?> <?php include ('main/loginbox.php'); ?> <?php else:?> <?php include ('main/loginsmall.php'); ?> <?php endif?> </div> <!-- login box --> </div> <!-- col width menu --> </div> <!-- menu --> <div id="content" style="background-image: url('<?php echo $this->themePath('img/deggreysite.png'); ?>');"> <div class="colwidth"> <div id="sidebar"> <a href='http://ratemyserver.net/index.php?page=detailedlistserver&serid=15554&url_sname=ZhenRO'><img src='<?php echo $this->themePath('img/rms.png') ?>'/></a> <a href='?module=pages&action=content&path=download'><img src='<?php echo $this->themePath('img/donate.png') ?>'/></a> <a href='?module=voteforpoints'><img src='<?php echo $this->themePath('img/vote.png') ?>'/></a> <a href='#'><img src='<?php echo $this->themePath('img/guildpack.png') ?>'/></a> <a href='#'><img src='<?php echo $this->themePath('img/gettingstarted.png') ?>'/></a> <a href='#'><img src='<?php echo $this->themePath('img/wiki.png') ?>'/></a> <?php include 'main/sidebar.php' ?> <br> <!-- Drawmove Logo, you can remove it =) --> <center> <a href='http://www.drawmove.net'><img src='<?php echo $this->themePath('img/drawmove.png') ?>' /></a> </center> <!-- End drawmove logo part --> </div> <!-- sidebar --> <div id="wrapperMain"> <!-- admin menu --> <?php include 'main/adminmenu.php' ?> <div id="main"> <?php if (Flux::config('DebugMode') && @gethostbyname(Flux::config('ServerAddress')) == '127.0.0.1'): ?> <p class="notice">Please change your <strong>ServerAddress</strong> directive in your application config to your server's real address (e.g., myserver.com).</p> <?php endif ?> <!-- Messages --> <?php if ($message=$session->getMessage()): ?> <p class="message"><?php echo htmlspecialchars($message) ?></p> <?php endif ?> <!-- Sub menu --> <?php include 'main/submenu.php' ?> <!-- Page menu --> <?php include 'main/pagemenu.php' ?> <!-- Credit balance --> <?php if (in_array($params->get('module'), array('donate', 'purchase'))) include 'main/balance.php' ?>
  3. <?php if (!defined('FLUX_ROOT')) exit; require_once(FLUX_ROOT.'/'.FLUX_ADDON_DIR.'/support/modules/support/function.php'); I got error on this part? my flux doesn't show if I input this do header
  4. thanks for this working properly but problem this is not secured on hack.. if your admin account gets hacked.. how about to put an security code that one owner only can use the addons?
  5. great its working properly...can I suggest? admin can view the players vote's? who are the players active in voting site's..
  6. download file is still not available?
  7. @Feefty Thanks man for updating it..
  8. aa see okay thanks for that info.. @ Feefty how about for cash points?
  9. can you provide npc script for credit points?
  10. @nanakiwurtz its sounds great to make it waitingroom.. thanks Skorm and Capuche
  11. every 5 minute's there will be auto announcer that will broadcast the status online of the server in all maps..
  12. Can I request Script every 5min log in BC online status?
  13. How do this things work? after putting to data>texture>À¯ÀúÀÎÅÍÆäÀ̽º
  14. thanks you very much! kenpachi Problem solve
  15. can I request script GUILD online member check and Guild Alliance/antagonist Check.
  16. thanks but this is for EARTHSPIKE not for Earthquake skill I'm using NPC_EARTHQUAKE,Earthquake
  17. how to make earthquake skill base on neutral attack? when using any kind of elements is disable...
×
×
  • Create New...