Ir para conteúdo

Featured Replies

Postado

Opá gente, tudo bem com vocês ?
então, esse é o meu primeiro servidor e estou um pouco perdido na questão do website e gostaria da ajuda de vocês, meu poblema é esse, Segue as imagens

Fatal error: Uncaught Error: Call to undefined method Cache::save() in C:\xampp\htdocs\layout\sub\index.php:30 Stack trace: #0 C:\xampp\htdocs\index.php(9): include() #1 {main} thrown in C:\xampp\htdocs\layout\sub\index.php on line 30
image.thumb.png.9e798582b0d5f1d394d4c7f12fc79845.png

Notice: Undefined index: type in C:\xampp\htdocs\powergamers.php on line 18
string(435) "SELECT `a`.`id`, `b`.`player_id`, `a`.`name`, `a`.`vocation`, `a`.`level`, `a`.`group_id`, `a`.`experience`, `b`.`exphist_lastexp`, `b`.`exphist1`, `b`.`exphist2`, `b`.`exphist3`, `b`.`exphist4`, `b`.`exphist5`, `b`.`exphist6`, `b`.`exphist7`, (`a`.`experience` - `b`.`exphist_lastexp`) AS `expdiff` FROM `players` `a` JOIN `znote_players` `b` ON `a`.`id` = `b`.`player_id` WHERE `a`.`group_id` < 2 ORDER BY `expdiff` DESC LIMIT 25"
(query - SQL error)
Type: select_multi (select multiple rows from database)

Unknown column 'b.exphist_lastexp' in 'field list'

image.thumb.png.b137a02eec8a15d5e44a91332851753a.png

Fatal error: Uncaught Error: Call to undefined method Cache::save() in C:\xampp\htdocs\highscores.php:59 Stack trace: #0 {main} thrown in C:\xampp\htdocs\highscores.php on line 59

 

image.thumb.png.d0167eb342c886ba5a1f67705f1538d6.png

  • Respostas 7
  • Visualizações 516
  • Created
  • Última resposta

Top Posters In This Topic

Posted Images

Postado
4 horas atrás, Brum disse:

Opá gente, tudo bem com vocês ?
então, esse é o meu primeiro servidor e estou um pouco perdido na questão do website e gostaria da ajuda de vocês, meu poblema é esse, Segue as imagens

Fatal error: Uncaught Error: Call to undefined method Cache::save() in C:\xampp\htdocs\layout\sub\index.php:30 Stack trace: #0 C:\xampp\htdocs\index.php(9): include() #1 {main} thrown in C:\xampp\htdocs\layout\sub\index.php on line 30
image.thumb.png.9e798582b0d5f1d394d4c7f12fc79845.png

Notice: Undefined index: type in C:\xampp\htdocs\powergamers.php on line 18
string(435) "SELECT `a`.`id`, `b`.`player_id`, `a`.`name`, `a`.`vocation`, `a`.`level`, `a`.`group_id`, `a`.`experience`, `b`.`exphist_lastexp`, `b`.`exphist1`, `b`.`exphist2`, `b`.`exphist3`, `b`.`exphist4`, `b`.`exphist5`, `b`.`exphist6`, `b`.`exphist7`, (`a`.`experience` - `b`.`exphist_lastexp`) AS `expdiff` FROM `players` `a` JOIN `znote_players` `b` ON `a`.`id` = `b`.`player_id` WHERE `a`.`group_id` < 2 ORDER BY `expdiff` DESC LIMIT 25"
(query - SQL error)
Type: select_multi (select multiple rows from database)

Unknown column 'b.exphist_lastexp' in 'field list'

image.thumb.png.b137a02eec8a15d5e44a91332851753a.png

Fatal error: Uncaught Error: Call to undefined method Cache::save() in C:\xampp\htdocs\highscores.php:59 Stack trace: #0 {main} thrown in C:\xampp\htdocs\highscores.php on line 59

 

image.thumb.png.d0167eb342c886ba5a1f67705f1538d6.png

Usando o Gesior ACC Maker ou Znote Acc?

 

Testa ae, se nao funciona me avise.

Execute o código SQL no phpmyadmin para o banco de dados:
 

ALTER TABLE `znote_players`
ADD `exphist_lastexp` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist1` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist2` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist3` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist4` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist5` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist6` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist7` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `onlinetimetoday` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime1` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime2` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime3` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime4` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime5` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime6` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime7` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetimeall` BIGINT( 20 ) NOT NULL DEFAULT '0';

 

UPDATE `znote_players` AS `z` INNER JOIN  `players` AS `p` ON `p`.`id`=`z`.`player_id` SET `z`.`exphist_lastexp`=`p`.`experience`

 

Editado por Mask Ghoul (veja o histórico de edições)

Postado
  • Autor
19 horas atrás, Mask Ghoul disse:

Usando o Gesior ACC Maker ou Znote Acc?

 

Testa ae, se nao funciona me avise.

Execute o código SQL no phpmyadmin para o banco de dados:
 


ALTER TABLE `znote_players`
ADD `exphist_lastexp` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist1` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist2` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist3` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist4` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist5` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist6` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist7` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `onlinetimetoday` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime1` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime2` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime3` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime4` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime5` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime6` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime7` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetimeall` BIGINT( 20 ) NOT NULL DEFAULT '0';

 


UPDATE `znote_players` AS `z` INNER JOIN  `players` AS `p` ON `p`.`id`=`z`.`player_id` SET `z`.`exphist_lastexp`=`p`.`experience`

 

Tá, ja volto

19 horas atrás, Mask Ghoul disse:

Usando o Gesior ACC Maker ou Znote Acc?

 

Testa ae, se nao funciona me avise.

Execute o código SQL no phpmyadmin para o banco de dados:
 


ALTER TABLE `znote_players`
ADD `exphist_lastexp` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist1` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist2` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist3` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist4` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist5` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist6` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `exphist7` BIGINT( 255 ) NOT NULL DEFAULT '0',
ADD `onlinetimetoday` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime1` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime2` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime3` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime4` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime5` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime6` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetime7` BIGINT( 20 ) NOT NULL DEFAULT '0',
ADD `onlinetimeall` BIGINT( 20 ) NOT NULL DEFAULT '0';

 


UPDATE `znote_players` AS `z` INNER JOIN  `players` AS `p` ON `p`.`id`=`z`.`player_id` SET `z`.`exphist_lastexp`=`p`.`experience`

 

mask, o Codigo entrou, certinho, mas e agora?

Agora, Brum disse:

Tá, ja volto

mask, o Codigo entrou, certinho, mas e agora?

acredito que seja Znote Acc

 

queria tirar pelomenos essa da Home

Fatal error: Uncaught Error: Call to undefined method Cache::save() in C:\xampp\htdocs\layout\sub\index.php:30 Stack trace: #0 C:\xampp\htdocs\index.php(9): include() #1 {main} thrown in C:\xampp\htdocs\layout\sub\index.php on line 30

 

e se caso as outros erros não dece pra arrumar eu queri Retirar a TAG

tipo

Highscores

Latest Deaths

Postado
25 minutos atrás, Brum disse:

Tá, ja volto

mask, o Codigo entrou, certinho, mas e agora?

 

queria tirar pelomenos essa da Home

Fatal error: Uncaught Error: Call to undefined method Cache::save() in C:\xampp\htdocs\layout\sub\index.php:30 Stack trace: #0 C:\xampp\htdocs\index.php(9): include() #1 {main} thrown in C:\xampp\htdocs\layout\sub\index.php on line 30

 

e se caso as outros erros não dece pra arrumar eu queri Retirar a TAG

tipo

Highscores

Latest Deaths

Por favor poste a seu codigo em highscores.php , Lastest Deaths.php e index.php

Editado por Mask Ghoul (veja o histórico de edições)

Participe da conversa

Você pode postar agora e se cadastrar mais tarde. Se você tem uma conta, faça o login para postar com sua conta.

Visitante
Responder

Quem Está Navegando 0

  • Nenhum usuário registrado visualizando esta página.

Estatísticas dos Fóruns

  • Tópicos 96.9k
  • Posts 519.7k

Informação Importante

Confirmação de Termo