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
-
caspe reacted to an answer to a question: Error compiling hercules in centOS
-
Kido reacted to an answer to a question: Error compiling hercules in centOS
-
chmod +x sysinfogen.sh
-
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.
- 206 replies
-
- control panel
- flux
-
(and 1 more)
Tagged with:
-
Jamaeeeeecah reacted to an answer to a question: Vote por pontos FluxCP
-
Manda o link de onde baixou para eu ler o código fonte.
-
Ativa o depuramento de erros (config/error.php) para ver se exibe algo mais detalhado. $showException = true;
-
Screenshot?
-
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".
-
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).
-
At your form, you need to generate a token stored in session to avoid CSRF. <?php echo Flux_Security::csrfGenerate('IPBanAdd', true); ?>
- 206 replies
-
- control panel
- flux
-
(and 1 more)
Tagged with:
-
The longest line has exactly 120 characters.
-
Nice job, i just think it needs some tweaking in alignments.
-
SUBSTRING(774485511697, -6) = 511697
-
Kernel Style.. with up to 120 characters per line!
-
dudemelo reacted to a post in a topic: Scripting Standards
-
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');}
- 206 replies
-
- control panel
- flux
-
(and 1 more)
Tagged with:
-
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;
- 206 replies
-
- control panel
- flux
-
(and 1 more)
Tagged with:
-
dudemelo reacted to a post in a topic: Scripting Standards
-
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]) ) {