Jump to content

dudemelo

Members
  • Content Count

    16
  • Joined

  • Last visited

About dudemelo

  • Rank
    Member
  • Birthday 01/24/1990

Profile Information

  • Gender
    Male
  • Location:
    Brazil - Recife / PE
  • Github
    DudeMelo
  • Emulator
    Hercules
  1. config/application.php 'ThemeName' => array('default', 'emphaino'), // Names of the themes you would like to use. Themes are in FLUX_ROOT/themes. First theme listed will be default theme.
  2. Manda o link de onde baixou para eu ler o código fonte.
  3. Ativa o depuramento de erros (config/error.php) para ver se exibe algo mais detalhado. $showException = true;
  4. dudemelo

    FluxCP

    Esse erro do SQL não está relacionado com o erro citado no tópico. O erro do tópico informa que por falta de permissão o arquivo "data/tmp/ConfigServers.cache.php" não pôde ser manipulado. Se o erro deste tópico ainda continua, tenta: 1º Em "config/error.php" ativa o depuramento de erros. // Alterar false para true$showExceptions = true; 2º Cria um arquivo "ConfigServers.cache.php" em branco manualmente na pasta "data/tmp".
  5. dudemelo

    FluxCP

    O ruWindows não tem o controle de permissão do Unix, logo o chmod não existe. Clicando com o botão direito sobre a pasta "data/tmp" e em seguida no menu "Propriedades", desmarca a opção "Apenas Leitura". Caso não resolva, aplique esse processo nas pastas: data data/session data/logs data/itemshop data/tmp PS: Se persistir em não funcionar, posta uma nova screenshot, pois certamente o erro será outro (acredito que será no lib/Flux.php).
  6. At your form, you need to generate a token stored in session to avoid CSRF. <?php echo Flux_Security::csrfGenerate('IPBanAdd', true); ?>
  7. The longest line has exactly 120 characters.
  8. Nice job, i just think it needs some tweaking in alignments.
  9. SUBSTRING(774485511697, -6) = 511697
  10. Kernel Style.. with up to 120 characters per line!
  11. You may remove/comment these lines, the properties values has been set at the preceding lines. if (!self::$errLog) { self::$errLog = new Flux_LogFile(FLUX_DATA_DIR.'/logs/errors/mail/'.date('Ymd').'.log');}if (!self::$log) { self::$log = new Flux_LogFile(FLUX_DATA_DIR.'/logs/mail/'.date('Ymd').'.log');}
  12. It's trying to access the static properties $errLog and $log, when isn't on a static function. $this->errLog = self::$errLog;$this->log = self::$log;
  13. Try editing the line 1231 in "lib/Flux/Template.php" file.. // Fromelse if (count($jobs) === count($equipJobs) - 1 && !in_array($equipJobs[0], $jobs)) {// Toelse if( count($jobs) === (count($equipJobs) - 1) && !isset($equipJobs[0]) ) {
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.