guixap 60 Postado Junho 2, 2011 Share Postado Junho 2, 2011 Não sei o porque do erro... Mas antes dele eu adicionei o sistema VIP do Kidray. Segue o ERRO: Fatal error: Uncaught exception 'E_OTS_NotLoaded' in C:\xampp\htdocs\pot\OTS_Account.php:413 Stack trace: #0 C:\xampp\htdocs\accountmanagement.php(11): OTS_Account->getRecoveryKey() #1 C:\xampp\htdocs\index.php(165): include('C:\xampp\htdocs...') #2 {main} thrown in C:\xampp\htdocs\pot\OTS_Account.php on line 413 Link para o comentário Compartilhar em outros sites More sharing options...
decosiqueira 24 Postado Junho 2, 2011 Share Postado Junho 2, 2011 CAra volta o arquivo anterior com certeza tem coisa errada onde vc mexeu, caso não consiga instalar seu sistema de vip avise aqui que posso te ajudar. Link para o comentário Compartilhar em outros sites More sharing options...
guixap 60 Postado Junho 2, 2011 Autor Share Postado Junho 2, 2011 Então o problema deve ser por eu não estar achando as seguintes tags no OTS_Account... private $data = array('email' => '', 'blocked' => false, 'rlname' => '','location' => '','page_access' => 0,'lastday' => 0,'premdays' => 0, 'created' => 0); $this->data = $this->db->query('SELECT ' . $this->db->fieldName('id') . ', ' . $this->db->fieldName('name') . ', ' . $this->db->fieldName('password') . ', ' . $this->db->fieldName('email') . ', ' . $this->db->fieldName('blocked') . ', ' . $this->db->fieldName('rlname') . ', ' . $this->db->fieldName('location') . ', ' . $this->db->fieldName('page_access') . ', ' . $this->db->fieldName('premdays') . ', ' . $this->db->fieldName('lastday') . ', ' . $this->db->fieldName('created') . ' FROM ' . $this->db->tableName('accounts') . ' WHERE ' . $this->db->fieldName('id') . ' = ' . (int) $id)->fetch(); $this->db->query('UPDATE ' . $this->db->tableName('accounts') . ' SET ' . $this->db->fieldName('password') . ' = ' . $this->db->quote($this->data['password']) . ', ' . $this->db->fieldName('email') . ' = ' . $this->db->quote($this->data['email']) . ', ' . $this->db->fieldName('blocked') . ' = ' . (int) $this->data['blocked'] . ', ' . $this->db->fieldName('rlname') . ' = ' . $this->db->quote($this->data['rlname']) . ', ' . $this->db->fieldName('location') . ' = ' . $this->db->quote($this->data['location']) . ', ' . $this->db->fieldName('page_access') . ' = ' . (int) $this->data['page_access'] . ', ' . $this->db->fieldName('premdays') . ' = ' . (int) $this->data['premdays'] . ', ' . $this->db->fieldName('lastday') . ' = ' . (int) $this->data['lastday'] . ' WHERE ' . $this->db->fieldName('id') . ' = ' . $this->data['id']); Link para o comentário Compartilhar em outros sites More sharing options...
decosiqueira 24 Postado Junho 3, 2011 Share Postado Junho 3, 2011 cola aqui a estrutura da sua tabela accounts, ta faltando campo nela. Link para o comentário Compartilhar em outros sites More sharing options...
Posts Recomendados