• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved Help me !!!

Muciz

New Member
Joined
Mar 27, 2011
Messages
60
Reaction score
1
Hello everyone!

I got a bug with my website, i was removed my hellfire data base and created it again and now my website doesnt work how to fix it?

V
V


A Database Error Occurred
Error Number: 1146

Table 'hellfire.news' doesn't exist

SELECT * FROM (`news`) ORDER BY `id` desc LIMIT 10
 
Hmmm not.. simple you remove table news.. need use this query:
SQL:
CREATE TABLE IF NOT EXISTS `news` (
  `id` INT(11) NOT NULL AUTO_INCREMENT,
  `title` VARCHAR(150) DEFAULT '',
  `body` text,
  `time` INT(11) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
 
you know the document there is tables to add in sql in database cannot find the document in my xampp map :S, its to much maps + documents, so need help with find them if anyone got server then he/she maybe know where is it :P
 
re install your server website
open your htdocs folder and goto config
then edit config.ini so you can install again
and re install the website
 
where i can found
SQL Code:??

- - - Updated - - -

here
C:\xampp\htdocs\system\database?

- - - Updated - - -

DB_driver??
sorry this is my first time i made modern acc
 
i go to phpMyAdmin
and where i found a table ? :D
thanks for help

- - - Updated - - -

Structure
SQL
Search
Query
Export
Import
Designer
Operations
Privileges
Drop

Run SQL query/queries on database xanteria:

- - - Updated - - -

SQL??
 
Click on your server database and the SQL button next to "Structure".

b[Bx5r.png
 
yes
i do this but see

A Database Error Occurred

Error Number: 1146

Table 'xanteria.poll' doesn't exist

SELECT p.id, p.question, GROUP_CONCAT(a.answer SEPARATOR ';') AS answers, GROUP_CONCAT(a.id SEPARATOR ';') AS answers_id FROM poll p JOIN poll_answer a ON p.id = a.poll_id WHERE p.status = 1 AND date_start <= NOW() AND date_end >= NOW()
 
Back
Top