• 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!

PHP page_acces SQL code needed!

vikkevikz

New Member
Joined
Nov 14, 2011
Messages
51
Reaction score
0
Hello! I erased my last database were all tables in the PHP exist for a website. Now I got a problem, my new database dont have the table "page_acces"

A Database Error Occurred
Error Number: 1054

Unknown column 'page_access' in 'field list'

SELECT `id`, page_access, nickname FROM

but if i go like this examplewebsite.no-ip.org//index.php/p/v/donate it goes direclty in to the website.

But the problem is i cant log in to my website, since i need to change the page_acces at the database, but there page_access section is not here. So i need the SQL code to put it in! Please help:)
Im using Xampp if you needed to know that!


Cheers / vokamas!
 
Last edited:
SQL:
CREATE TABLE IF NOT EXISTS `news` (
     `id` INT NOT NULL AUTO_INCREMENT,
     `title` VARCHAR(50) DEFAULT '',
     `body` TEXT,
     `time` INT(10) DEFAULT 0,
     PRIMARY KEY (`id`)
);
 
Another thing! On my database i cant find the page_access at account section or player sections, its not there. I need to create table? Chris got the table SQL code? Or someone else? Please :)
 
Back
Top